/* Global Styles */
body {
    scroll-behavior: smooth;
    font-family: sans-serif;
    background-color: white;
    color: #374151;
}

/* Navigation - Index Page Styles */
nav {
    background-color: white;
    color: #374151;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    position: fixed;
    width: 100%;
    z-index: 50;
}

.container {
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.nav-container {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 3rem;
    width: 12rem;
}

.nav-logo span {
    margin-left: 0.75rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
}

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}

@media (min-width: 768px) {
    .nav-desktop {
        display: flex;
    }
}

.nav-desktop a {
    color: #374151;
    transition: color 0.3s;
}

.nav-desktop a:hover {
    color: #d4a017;
}

.dropdown {
    position: relative;
}

.dropdown button {
    display: flex;
    align-items: center;
    color: #374151;
    transition: color 0.3s;
    cursor: pointer;
}

.dropdown button:hover {
    color: #d4a017;
}

.dropdown-menu {
    position: absolute;
    display: none;
    background-color: white;
    color: #374151;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.375rem;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 12rem;
    z-index: 50;
    max-height: 400px;
    overflow-y: auto;
    top: 100%;
    left: 0;
}

/* Scrollbar styling */
.dropdown-menu::-webkit-scrollbar {
    width: 6px;
}

.dropdown-menu::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.dropdown-menu::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Keep dropdown open on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu a {
    display: block;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.dropdown-menu a:hover {
    background-color: #f3f4f6;
    text-decoration: none;
}

/* Submenu styles for nested dropdowns */
.dropdown-menu .group {
    position: relative;
}

.dropdown-menu .group:hover > div {
    display: block;
}

.dropdown-submenu {
    position: absolute;
    left: 100%;
    top: 0;
    display: none;
    background-color: white;
    color: #374151;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border-radius: 0.375rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    width: 12rem;
    margin-left: 0.25rem;
    max-height: 400px;
    overflow-y: auto;
}

.btn-secondary {
    background-color: #DBC305;
    color: white;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
}

.btn-secondary:hover {
    background-color: #92400e;
}

.nav-login {
    display: flex;
    align-items: center;
    color: #374151;
    transition: color 0.3s;
}

.nav-login:hover {
    color: #d4a017;
}

.nav-login span {
    margin-left: 0.5rem;
}

.mobile-menu-btn {
    display: block;
}

@media (min-width: 768px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu {
    display: none;
    background-color: white;
    width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
    .mobile-menu {
        display: none !important;
    }
}

.mobile-menu a {
    display: block;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    color: #374151;
    transition: color 0.3s;
}

.mobile-menu a:hover {
    color: #1e3a8a;
}

/* Mobile menu backdrop for better visibility */
@media (max-width: 767px) {
    body.menu-open {
        overflow: hidden;
    }

    .mobile-menu {
        position: absolute;
        top: 100%;
        left: 0;
    }
}


/* Hero Section (Improved Responsiveness) */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(rgba(219, 195, 5, 0.85), rgba(22, 51, 78, 0.9)),
        url('http://static.photos/home/1200x630/10') no-repeat center center/cover;
    display: flex;
    align-items: center;
    color: white;
    padding: 6rem 1.5rem 4rem;
    position: relative;
    overflow: hidden;
}

.hero-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .hero-section .container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 4rem;
    }
}

.hero-section h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.hero-section p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-section .text-content {
    flex: 1;
    text-align: center;
}

@media (min-width: 1024px) {
    .hero-section .text-content {
        text-align: left;
    }
}

.hero-section .hero-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

@media (min-width: 640px) {
    .hero-section .hero-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

.hero-section .hero-image {
    flex: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-section .hero-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    transition: transform 0.4s ease;
}

.hero-section .hero-image img:hover {
    transform: scale(1.03);
}

.hero-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 500px;
    margin: 2rem auto 0;
}

@media (min-width: 768px) {
    .hero-section .stats-grid {
        grid-template-columns: repeat(4, 1fr);
        margin: 3rem 0 0;
    }
}

.hero-section .stat-item {
    text-align: center;
}

.hero-section .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #ffd700;
    margin-bottom: 0.25rem;
}

.hero-section .stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Small screens adjustments */
@media (max-width: 480px) {
    .hero-section {
        padding-top: 5rem;
    }

    .hero-section h1 {
        font-size: 1.8rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .hero-section .hero-image img {
        max-width: 90%;
    }

    .hero-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}


.stats-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
}







@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn-primary {
    background-color: #DBC305;
    color: white;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #92400e;
}

.btn-outline {
    background-color: white;
    color: #1e3a8a;
    padding-left: 2rem;
    padding-right: 2rem;
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn-outline:hover {
    background-color: #f9fafb;
}

/* Sections */
.section {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.section-title {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 4rem;
}

.section-subtitle {
    color: #6b7280;
    text-align: center;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 3rem;
}

/* Services Section */
.services-section {
    background-color: #f9fafb;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.service-card {
    transition: all 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card img {
    width: 100%;
    height: 12rem;
    object-fit: cover;
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-content p {
    color: #6b7280;
    margin-bottom: 1rem;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-price {
    color: #DBC305;
    font-weight: 700;
}

/* About Section */
.about-section {
    background-color: white;
}

.about-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .about-container {
        flex-direction: row;
    }
}

.about-image {
    width: 100%;
}

@media (min-width: 1024px) {
    .about-image {
        width: 50%;
    }
}

.about-image img {
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    width: 100%;
}

.about-content {
    width: 100%;
}

@media (min-width: 1024px) {
    .about-content {
        width: 50%;
    }
}

.about-content h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about-content p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
}

.feature-icon {
    background-color: rgba(30, 58, 138, 0.1);
    padding: 0.5rem;
    border-radius: 9999px;
    margin-right: 1rem;
}

.feature-text h4 {
    font-weight: 700;
    font-size: 1.125rem;
    line-height: 1.75rem;
    margin-bottom: 0.25rem;
}

.feature-text p {
    color: #6b7280;
    margin-bottom: 0;
}

/* Professionals Section */
.professionals-section {
    background-color: #f9fafb;
}

.professionals-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 640px) {
    .professionals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .professionals-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.professional-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.professional-card img {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.professional-info {
    padding: 1.5rem;
}

.professional-info h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
}

.professional-info p {
    color: #d4a017;
    margin-bottom: 0.5rem;
}

.rating {
    display: flex;
    align-items: center;
}

.stars {
    display: flex;
    color: #fbbf24;
}

.rating-count {
    margin-left: 0.5rem;
    color: #6b7280;
}

/* Testimonials Section */
.testimonials-section {
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.testimonial-header img {
    width: 3rem;
    height: 3rem;
    border-radius: 9999px;
    margin-right: 1rem;
}

.testimonial-header h4 {
    font-weight: 700;
}

.testimonial-text {
    color: #6b7280;
}

/* Provider Section */
.provider-section {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.provider-section h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.provider-section p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* Footer */
footer {
    background-color: #111827;
    color: white;
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 2.5rem;
    width: 5rem;
    border-radius: 10px;
}

.footer-logo span {
    margin-left: 0.5rem;
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
}

.footer-description {
    color: #9ca3af;
}

.footer-column h3 {
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: white;
}

.footer-contact li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.footer-contact span {
    color: #9ca3af;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    color: #9ca3af;
    transition: color 0.3s;
}

.social-links a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    margin-top: 3rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.copyright {
    color: #9ca3af;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .copyright {
        margin-bottom: 0;
    }
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: #9ca3af;
    transition: color 0.3s;
}

.footer-bottom-links a:hover {
    color: white;
}

/* Service Page Specific Styles */
.service-hero {
    background: linear-gradient(rgba(30, 58, 138, 0.9), rgba(30, 58, 138, 0.8)), url('http://static.photos/home/1200x630/15') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.service-hero h1 {
    font-size: 3rem;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.service-hero p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

@media (min-width: 1024px) {
    .service-details {
        flex-direction: row;
    }
}

.service-info {
    width: 100%;
}

@media (min-width: 1024px) {
    .service-info {
        width: 50%;
    }
}

.service-info h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1e3a8a;
}

.service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .service-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

.service-feature {
    background-color: white;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.service-feature-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.service-feature-icon {
    background-color: rgba(30, 58, 138, 0.1);
    padding: 0.5rem;
    border-radius: 9999px;
    margin-right: 1rem;
}

.service-feature h3 {
    font-weight: 700;
    color: #1e3a8a;
}

.service-image {
    width: 100%;
}

@media (min-width: 1024px) {
    .service-image {
        width: 50%;
    }
}

.service-image img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.service-packages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .service-packages {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-package {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.service-package.featured {
    border: 2px solid #1e3a8a;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    transform: scale(1.05);
}

.package-header {
    background-color: #1e3a8a;
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.package-header h3 {
    font-size: 1.25rem;
    line-height: 1.75rem;
    font-weight: 700;
}

.package-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.5rem;
}

.package-content {
    padding: 1.5rem;
}

.package-price {
    text-align: center;
    margin-bottom: 1.5rem;
}

.package-price span {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    color: #1e3a8a;
}

.package-price .unit {
    color: #6b7280;
    display: block;
}

.package-features {
    margin-bottom: 1.5rem;
}

.package-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
}

.package-btn {
    display: block;
    text-align: center;
    background-color: #f3f4f6;
    color: #1e3a8a;
    padding: 0.75rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.package-btn:hover {
    background-color: #e5e7eb;
}

.package-btn.featured {
    background-color: #1e3a8a;
    color: white;
}

.package-btn.featured:hover {
    background-color: #1e40af;
}

/* Booking Form */
.booking-form-container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.booking-form {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.booking-header {
    background-color: #1e3a8a;
    color: white;
    padding: 2rem;
    text-align: center;
}

.booking-header h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: rgba(255, 255, 255, 0.9);
}

.booking-body {
    padding: 2rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group label {
    display: block;
    color: #374151;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.375rem;
    outline: none;
}

.form-control:focus {
    border-color: #1e3a8a;
    box-shadow: 0 0 0 2px rgba(30, 58, 138, 0.2);
}

.address-group {
    margin-bottom: 1.5rem;
}

.address-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.address-input input {
    flex-grow: 1;
}

.location-btn {
    background-color: #1e3a8a;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

.location-btn:hover {
    background-color: #1e40af;
}

.map-container {
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-top: 10px;
}

.map {
    height: 100%;
    width: 100%;
}

.submit-btn {
    width: 100%;
    background-color: #d4a017;
    color: white;
    padding: 0.75rem;
    border-radius: 0.375rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 500;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #92400e;
}

/* FAQ Styles */
.faq-container {
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

.faq-question {
    background: white;
    padding: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: #1e3a8a;
}

.faq-question:hover {
    background-color: #f9fafb;
}

.faq-answer {
    padding: 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    background-color: #f9fafb;
    color: #6b7280;
}

.faq-answer.open {
    padding: 16px;
    max-height: 500px;
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-icon.rotate {
    transform: rotate(180deg);
}

/* CTA Section */
.cta-section {
    background-color: #1e3a8a;
    color: white;
    text-align: center;
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.cta-section h2 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.25rem;
    line-height: 1.75rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

/* Utility Classes */
.text-primary {
    color: #1e3a8a;
}

.text-secondary {
    color: #d4a017;
}

.bg-primary {
    background-color: #1e3a8a;
}

.bg-secondary {
    background-color: #d4a017;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-white {
    background-color: white;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.pt-16 {
    padding-top: 4rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-32 {
    padding-top: 8rem;
    padding-bottom: 8rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.hidden {
    display: none;
}

/* Mobile menu transitions */
#mobile-menu {
    transition: all 0.3s ease-out;
}

/* Vanta Background */
#vanta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    opacity: 0.3;
}

/* Benefit Items */
.benefit-item {
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-3px);
}