/* Legal Pages Styles */

.legal-hero {
    background: linear-gradient(135deg, #EB8F63 0%, #D47D52 100%);
    color: white;
    text-align: center;
    padding: 120px 0 60px;
    margin-top: 0;
}

.legal-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.legal-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    font-weight: 300;
}

.legal-content {
    padding: 80px 0;
    background: #fff;
}

.legal-wrapper {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
    color: #333;
}

.legal-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #2D3047;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #EB8F63;
}

.legal-wrapper h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: #2D3047;
    margin: 30px 0 15px;
    font-weight: 600;
}

.legal-wrapper p {
    margin-bottom: 20px;
    color: #555;
    text-align: justify;
}

.legal-wrapper ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-wrapper li {
    margin-bottom: 10px;
    color: #555;
}

.legal-wrapper strong {
    color: #2D3047;
    font-weight: 600;
}

.contact-info {
    background: #EDDDC0;
    padding: 25px;
    border-radius: 10px;
    margin: 30px 0;
    border-left: 4px solid #EB8F63;
}

.contact-info p {
    margin-bottom: 10px;
    font-weight: 500;
}

.legal-wrapper a {
    color: #EB8F63;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-wrapper a:hover {
    color: #D47D52;
    text-decoration: underline;
}

.legal-footer {
    background: #F7F9FB;
    padding: 30px;
    border-radius: 10px;
    margin-top: 50px;
    text-align: center;
    border: 1px solid #EDDDC0;
}

.legal-footer em {
    color: #666;
    font-style: italic;
}

.cookie-preferences-section {
    background: #F7F9FB;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
    border: 1px solid #EDDDC0;
}

.cookie-preferences-section h2 {
    border: none;
    margin-bottom: 15px;
    color: #2D3047;
}

.cookie-preferences-section p {
    margin-bottom: 25px;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 100px 0 40px;
        margin-top: 0;
    }
    
    .legal-title {
        font-size: 2.2rem;
    }
    
    .legal-subtitle {
        font-size: 1rem;
    }
    
    .legal-content {
        padding: 40px 0;
    }
    
    .legal-wrapper {
        padding: 0 20px;
    }
    
    .legal-wrapper h2 {
        font-size: 1.6rem;
    }
    
    .legal-wrapper h3 {
        font-size: 1.1rem;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .legal-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .legal-title {
        font-size: 1.8rem;
    }
    
    .legal-wrapper ul {
        padding-left: 20px;
    }
    
    .legal-wrapper {
        line-height: 1.6;
    }
} 