/* Legal Pages Styles */

.sf-legal-page {
    overflow-x: hidden;
}

/* Hero Section */
.sf-legal-hero {
    background: linear-gradient(135deg, #0066cc 0%, #004999 100%);
    padding: 4rem 0 3rem;
    text-align: center;
    color: white;
}

.sf-legal-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.sf-legal-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease-out;
}

.sf-legal-subtitle {
    font-size: 1rem;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Content Section */
.sf-legal-content {
    padding: 90rem 0;
    background-color: #fff;
}

.sf-legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.sf-legal-section {
    margin-bottom: 3rem;
}

.sf-legal-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #0066cc;
}

.sf-legal-section h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #333;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.sf-legal-section p {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 1rem;
}

.sf-legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.sf-legal-section ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
}

.sf-legal-section ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.sf-legal-section a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sf-legal-section a:hover {
    color: #004999;
    text-decoration: underline;
}

/* Contact Info Box */
.sf-legal-contact {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #0066cc;
}

.sf-contact-info {
    margin-top: 1rem;
}

.sf-contact-info p {
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.sf-contact-info strong {
    color: #0066cc;
    font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .sf-legal-hero {
        padding: 3rem 0 2rem;
    }

    .sf-legal-title {
        font-size: 1.75rem;
    }

    .sf-legal-subtitle {
        font-size: 0.9rem;
    }

    .sf-legal-content {
        padding: 2.5rem 0;
    }

    .sf-legal-section {
        margin-bottom: 2rem;
    }

    .sf-legal-section h2 {
        font-size: 1.5rem;
    }

    .sf-legal-section h3 {
        font-size: 1.2rem;
    }

    .sf-legal-section p,
    .sf-legal-section ul li {
        font-size: 0.95rem;
    }

    .sf-legal-contact {
        padding: 1.5rem;
    }
}