/* Legal Pages Styles */

.legal-page {
    padding: 60px 0;
    background-color: #F9FAFB;
    min-height: 70vh;
}

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: #6B7280;
    margin-bottom: 40px;
    font-style: italic;
}

.legal-section {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
    margin-bottom: 25px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 20px;
    border-bottom: 3px solid #000000;
    padding-bottom: 10px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: #374151;
    margin-top: 25px;
    margin-bottom: 12px;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 25px;
    margin-bottom: 15px;
}

.legal-section li {
    font-size: 15px;
    line-height: 1.8;
    color: #4B5563;
    margin-bottom: 8px;
}

.legal-section strong {
    color: #1F2937;
    font-weight: 600;
}

.legal-section a {
    color: #000000;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #374151;
}

/* GDPR Specific Styles */
.gdpr-notice {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
    padding: 30px;
    border-radius: 12px;
    border-left: 5px solid #F59E0B;
    margin-bottom: 30px;
}

.gdpr-notice h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1F2937;
    margin-bottom: 10px;
}

.gdpr-notice p {
    font-size: 16px;
    color: #4B5563;
    margin: 0;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 25px;
}

.right-card {
    background: #F9FAFB;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #000000;
    transition: transform 0.3s, box-shadow 0.3s;
}

.right-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.right-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1F2937;
    margin: 0 0 10px 0;
}

.right-card p {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
    line-height: 1.6;
}

.contact-box {
    background: #F3F4F6;
    padding: 25px;
    border-radius: 10px;
    border: 2px solid #E5E7EB;
    margin: 20px 0;
}

.contact-box p {
    margin-bottom: 10px;
    font-size: 15px;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

/* Cookie Policy Specific */
.cookie-actions {
    text-align: center;
    margin-top: 40px;
}

.btn-delete-cookies,
.delete-btn {
    display: inline-block;
    padding: 14px 30px;
    background-color: #EF4444;
    color: white;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-delete-cookies:hover,
.delete-btn:hover {
    background-color: #DC2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 68, 68, 0.4);
}

.delete-btn {
    padding: 8px 16px;
    font-size: 14px;
}

/* WhatsApp Button Inline */
.whatsapp-btn-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #25D366;
    color: white;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 15px;
}

.whatsapp-btn-inline:hover {
    background-color: #1da851;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 40px 0;
    }

    .legal-page h1 {
        font-size: 32px;
    }

    .legal-section {
        padding: 25px 20px;
    }

    .legal-section h2 {
        font-size: 24px;
    }

    .legal-section h3 {
        font-size: 18px;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .legal-page h1 {
        font-size: 28px;
    }

    .legal-section {
        padding: 20px 15px;
    }

    .legal-section h2 {
        font-size: 22px;
    }

    .legal-section p,
    .legal-section li {
        font-size: 14px;
    }

    .gdpr-notice {
        padding: 20px;
    }

    .contact-box {
        padding: 20px;
    }
}
