.legal-section {
    padding: 80px 0;
}

.legal-content {
    background-color: #fff;
    color: #333;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.legal-content h1 {
    color: #0F172A;
    margin-bottom: 20px;
    font-size: 2.5rem;
    text-align: center;
}

.legal-updated {
    text-align: center;
    margin-bottom: 30px;
    color: #666;
    font-style: italic;
}

.legal-content h2 {
    color: #0F172A;
    margin: 30px 0 15px;
    font-size: 1.5rem;
    border-bottom: 2px solid #FACC15;
    padding-bottom: 10px;
}

.legal-content h3 {
    color: #0F172A;
    margin: 25px 0 10px;
    font-size: 1.2rem;
}

.legal-content p,
.legal-content ul {
    margin-bottom: 15px;
    line-height: 1.7;
}

.legal-content ul {
    padding-left: 20px;
}

.legal-content ul li {
    margin-bottom: 10px;
}

.legal-content a {
    color: #38BDF8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #F472B6;
}

/* Cookie Table Styles */
.cookie-table {
    margin: 20px 0;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
}

.table-header,
.table-row {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr 1fr;
    padding: 12px;
}

.table-header {
    background-color: #f5f5f5;
    font-weight: bold;
    border-bottom: 1px solid #ddd;
}

.table-row {
    border-bottom: 1px solid #ddd;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:nth-child(even) {
    background-color: #f9f9f9;
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px 20px;
        margin: 0 20px;
    }
    
    .legal-content h1 {
        font-size: 2rem;
    }
    
    .table-header,
    .table-row {
        grid-template-columns: 1fr;
    }
    
    .table-header div,
    .table-row div {
        padding: 5px 0;
    }
    
    .table-header div:not(:last-child),
    .table-row div:not(:last-child) {
        border-bottom: 1px solid #eee;
    }
} 