        :root {
            --navy-blue: #1a365d;
            --light-navy: #2c5282;
            --grey: #718096;
            --light-grey: #e2e8f0;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: #2d3748;
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* Navbar Styles */
        .navbar {
            background: var(--white) !important;
            box-shadow: 0 2px 15px rgba(0,0,0,0.1);
            padding: 2rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--navy-blue) !important;
            letter-spacing: -0.5px;
        }

        .navbar-nav .nav-link {
            color: var(--grey) !important;
            font-weight: 500;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
            position: relative;
        }

        .navbar-nav .nav-link:hover,
        .navbar-nav .nav-link.active {
            color: var(--navy-blue) !important;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--navy-blue);
            transition: width 0.3s ease;
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link.active::after {
            width: 80%;
        }

        .btn-primary {
            background: var(--navy-blue);
            border: none;
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background: var(--light-navy);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(26, 54, 93, 0.3);
        }

        .btn-outline-primary {
            border: 2px solid var(--navy-blue);
            color: var(--navy-blue);
            padding: 0.6rem 1.8rem;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-outline-primary:hover {
            background: var(--navy-blue);
            color: var(--white);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
            color: var(--white);
            padding: 100px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
            background-size: 50px 50px;
            opacity: 0.3;
        }

        /* Section Styles */
        section {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--navy-blue);
            margin-bottom: 1rem;
            position: relative;
        }

        .section-subtitle {
            font-size: 1.1rem;
            color: var(--grey);
            margin-bottom: 3rem;
        }

        /* Card Styles */
        .service-card {
            background: var(--white);
            border-radius: 15px;
            padding: 2rem;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
            border: 1px solid var(--light-grey);
        }

        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
        }

        .service-icon {
            font-size: 3rem;
            color: var(--navy-blue);
            margin-bottom: 1.5rem;
        }

        /* Footer */
        footer {
            background: var(--navy-blue);
            color: var(--white);
            padding: 50px 0 20px;
        }

        footer a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer a:hover {
            color: var(--light-grey);
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .social-icons a {
            display: inline-block;
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            border-radius: 50%;
            background: rgba(255,255,255,0.1);
            margin-right: 10px;
            transition: all 0.3s ease;
        }

        .social-icons a:hover {
            background: var(--white);
            color: var(--navy-blue);
            transform: translateY(-3px);
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s ease-out;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .section-title {
                font-size: 2rem;
            }

            .hero-section {
                padding: 60px 0 40px;
            }

            section {
                padding: 50px 0;
            }
        }
.team-member {
        text-align: center;
        padding: 20px;
    }

    .team-avatar {
        width: 150px;
        height: 150px;
        border-radius: 50%;
        background: var(--navy-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 3rem;
        font-weight: bold;
        margin: 0 auto 20px;
        transition: all 0.3s ease;
    }

    .team-member:hover .team-avatar {
        transform: scale(1.1);
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.3);
    }

    .stat-box {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
    }

    .stat-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.2);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--navy-blue);
        margin-bottom: 0.5rem;
    }

    .page-header {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        color: white;
        padding: 100px 0 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
        background-size: 50px 50px;
        opacity: 0.3;
    }

    .social-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 35px;
        height: 35px;
        border-radius: 50%;
        background: var(--light-grey);
        color: var(--navy-blue);
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .social-link:hover {
        background: var(--navy-blue);
        color: white;
        transform: translateY(-3px);
    }
 .page-header {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        color: white;
        padding: 100px 0 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
        background-size: 50px 50px;
        opacity: 0.3;
    }

    .service-detail-card {
        background: white;
        border-radius: 15px;
        padding: 2.5rem;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid var(--light-grey);
        position: relative;
        overflow: hidden;
    }

    .service-detail-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 5px;
        height: 100%;
        background: var(--navy-blue);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .service-detail-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
    }

    .service-detail-card:hover::before {
        transform: scaleY(1);
    }

    .check-icon {
        color: var(--navy-blue);
        font-size: 1.2rem;
    }

    .process-step {
        text-align: center;
        position: relative;
        padding: 20px;
    }

    .step-number {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: var(--navy-blue);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        font-weight: bold;
        margin: 0 auto 20px;
        position: relative;
        z-index: 2;
    }

    @media (min-width: 768px) {
        .process-step:not(:last-child)::after {
            content: '';
            position: absolute;
            top: 50px;
            left: 60%;
            width: 80%;
            height: 2px;
            background: var(--light-grey);
            z-index: 1;
        }
    }
.page-header {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        color: white;
        padding: 100px 0 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
        background-size: 50px 50px;
        opacity: 0.3;
    }

    .industry-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid var(--light-grey);
        position: relative;
    }

    .industry-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
    }

    .industry-image {
        height: 200px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .industry-image::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.3) 100%);
    }

    .industry-icon {
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 60px;
        height: 60px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.8rem;
        color: var(--navy-blue);
        z-index: 2;
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .industry-content {
        padding: 25px;
    }

    .expertise-badge {
        display: inline-block;
        padding: 5px 12px;
        background: rgba(26, 54, 93, 0.1);
        color: var(--navy-blue);
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        margin-right: 8px;
        margin-bottom: 8px;
    }

    .stats-box {
        background: var(--light-grey);
        padding: 20px;
        border-radius: 10px;
        text-align: center;
        transition: all 0.3s ease;
    }

    .stats-box:hover {
        background: var(--navy-blue);
        color: white;
        transform: translateY(-5px);
    }

    .stats-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--navy-blue);
    }

    .stats-box:hover .stats-number {
        color: white;
    }

    .case-study-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        border-left: 5px solid var(--navy-blue);
        transition: all 0.3s ease;
    }

    .case-study-card:hover {
        transform: translateX(5px);
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
    }

    .result-highlight {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
        color: white;
        padding: 15px 20px;
        border-radius: 10px;
        font-size: 1.1rem;
        font-weight: 600;
        display: inline-block;
        margin-top: 15px;
    }
.page-header {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        color: white;
        padding: 100px 0 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
        background-size: 50px 50px;
        opacity: 0.3;
    }

    .testimonial-card {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid var(--light-grey);
        position: relative;
    }

    .testimonial-card::before {
        content: '"';
        position: absolute;
        top: 20px;
        left: 20px;
        font-size: 5rem;
        color: rgba(26, 54, 93, 0.1);
        font-family: Georgia, serif;
        line-height: 0.8;
    }

    .testimonial-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
    }

    .rating-stars {
        color: #ffc107;
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .client-avatar {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        background: var(--navy-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 1.8rem;
        font-weight: bold;
        margin-right: 15px;
    }

    .video-testimonial {
        position: relative;
        border-radius: 15px;
        overflow: hidden;
        height: 300px;
        background: var(--light-grey);
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .video-testimonial:hover {
        transform: scale(1.02);
    }

    .video-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(26, 54, 93, 0.7);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }

    .video-testimonial:hover .video-overlay {
        background: rgba(26, 54, 93, 0.85);
    }

    .play-button {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: white;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        color: var(--navy-blue);
        transition: all 0.3s ease;
    }

    .video-testimonial:hover .play-button {
        transform: scale(1.1);
    }

    .metric-box {
        text-align: center;
        padding: 30px;
        background: white;
        border-radius: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }

    .metric-number {
        font-size: 3rem;
        font-weight: 700;
        color: var(--navy-blue);
        margin-bottom: 0.5rem;
    }

    .company-logo {
        height: 60px;
        opacity: 0.6;
        transition: opacity 0.3s ease;
        filter: grayscale(100%);
    }

    .company-logo:hover {
        opacity: 1;
        filter: grayscale(0%);
    }

    .filter-buttons {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 40px;
    }

    .filter-btn {
        padding: 10px 25px;
        border: 2px solid var(--light-grey);
        background: white;
        border-radius: 50px;
        color: var(--grey);
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .filter-btn:hover,
    .filter-btn.active {
        background: var(--navy-blue);
        color: white;
        border-color: var(--navy-blue);
    }
 .page-header {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        color: white;
        padding: 100px 0 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
        background-size: 50px 50px;
        opacity: 0.3;
    }

    .search-box {
        max-width: 600px;
        margin: 0 auto;
    }

    .search-input {
        border-radius: 50px;
        padding: 15px 25px;
        border: none;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }

    .search-btn {
        position: absolute;
        right: 5px;
        top: 5px;
        border-radius: 50px;
        padding: 10px 25px;
    }

    .blog-card {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        height: 100%;
        border: 1px solid var(--light-grey);
    }

    .blog-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(26, 54, 93, 0.15);
    }

    .blog-image {
        height: 220px;
        background-size: cover;
        background-position: center;
        position: relative;
    }

    .blog-category {
        position: absolute;
        top: 15px;
        left: 15px;
        padding: 8px 20px;
        background: var(--navy-blue);
        color: white;
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
    }

    .blog-content {
        padding: 25px;
    }

    .blog-meta {
        display: flex;
        align-items: center;
        gap: 15px;
        color: var(--grey);
        font-size: 0.9rem;
        margin-bottom: 15px;
    }

    .blog-meta i {
        color: var(--navy-blue);
    }

    .featured-post {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        margin-bottom: 40px;
    }

    .featured-image {
        height: 400px;
        background-size: cover;
        background-position: center;
    }

    .featured-content {
        padding: 40px;
    }

    .category-filter {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 40px;
    }

    .category-btn {
        padding: 10px 25px;
        border: 2px solid var(--light-grey);
        background: white;
        border-radius: 50px;
        color: var(--grey);
        font-weight: 600;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .category-btn:hover,
    .category-btn.active {
        background: var(--navy-blue);
        color: white;
        border-color: var(--navy-blue);
    }

    .sidebar-widget {
        background: white;
        border-radius: 15px;
        padding: 25px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-bottom: 30px;
    }

    .recent-post-item {
        display: flex;
        gap: 15px;
        padding: 15px 0;
        border-bottom: 1px solid var(--light-grey);
        transition: all 0.3s ease;
    }

    .recent-post-item:last-child {
        border-bottom: none;
    }

    .recent-post-item:hover {
        background: var(--light-grey);
        padding-left: 10px;
        border-radius: 10px;
    }

    .recent-post-thumb {
        width: 80px;
        height: 80px;
        border-radius: 10px;
        background-size: cover;
        background-position: center;
        flex-shrink: 0;
    }

    .tag-cloud {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .tag {
        padding: 8px 18px;
        background: var(--light-grey);
        color: var(--navy-blue);
        border-radius: 50px;
        font-size: 0.85rem;
        font-weight: 600;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .tag:hover {
        background: var(--navy-blue);
        color: white;
        transform: translateY(-2px);
    }

    .pagination {
        margin-top: 40px;
    }

    .page-link {
        border-radius: 10px;
        margin: 0 5px;
        color: var(--navy-blue);
        border: 2px solid var(--light-grey);
    }

    .page-link:hover {
        background: var(--navy-blue);
        color: white;
        border-color: var(--navy-blue);
    }

    .page-item.active .page-link {
        background: var(--navy-blue);
        border-color: var(--navy-blue);
    }
 .post-header {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        color: white;
        padding: 60px 0 40px;
    }

    .breadcrumb {
        background: transparent;
        padding: 0;
        margin-bottom: 20px;
    }

    .breadcrumb-item a {
        color: rgba(255,255,255,0.8);
        text-decoration: none;
    }

    .breadcrumb-item.active {
        color: white;
    }

    .post-meta {
        display: flex;
        align-items: center;
        gap: 20px;
        flex-wrap: wrap;
        margin: 20px 0;
        padding: 20px 0;
        border-top: 1px solid rgba(255,255,255,0.2);
        border-bottom: 1px solid rgba(255,255,255,0.2);
    }

    .post-meta-item {
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .featured-image {
        border-radius: 15px;
        overflow: hidden;
        margin: 40px 0;
        box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    }

    .post-content {
        font-size: 1.1rem;
        line-height: 1.8;
        color: #2d3748;
    }

    .post-content h2 {
        color: var(--navy-blue);
        font-weight: 700;
        margin: 40px 0 20px;
    }

    .post-content h3 {
        color: var(--navy-blue);
        font-weight: 600;
        margin: 30px 0 15px;
    }

    .post-content p {
        margin-bottom: 20px;
    }

    .post-content ul, .post-content ol {
        margin: 20px 0;
        padding-left: 30px;
    }

    .post-content li {
        margin-bottom: 10px;
    }

    .callout-box {
        background: #e3f2fd;
        border-left: 5px solid #2196f3;
        padding: 25px;
        border-radius: 10px;
        margin: 30px 0;
    }

    .quote-box {
        background: var(--light-grey);
        border-left: 5px solid var(--navy-blue);
        padding: 30px;
        border-radius: 10px;
        margin: 40px 0;
        font-size: 1.3rem;
        font-style: italic;
        color: var(--grey);
    }

    .author-box {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin: 40px 0;
    }

    .author-avatar {
        width: 100px;
        height: 100px;
        border-radius: 50%;
        background: var(--navy-blue);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2.5rem;
        font-weight: bold;
    }

    .social-share {
        display: flex;
        gap: 10px;
        margin: 30px 0;
    }

    .share-btn {
        width: 45px;
        height: 45px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        text-decoration: none;
        transition: all 0.3s ease;
    }

    .share-btn:hover {
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    }

    .share-btn.facebook { background: #1877f2; }
    .share-btn.twitter { background: #1da1f2; }
    .share-btn.linkedin { background: #0a66c2; }
    .share-btn.email { background: #718096; }

    .related-post {
        background: white;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        transition: all 0.3s ease;
        text-decoration: none;
        display: block;
    }

    .related-post:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(26, 54, 93, 0.15);
    }

    .related-thumb {
        height: 180px;
        background-size: cover;
        background-position: center;
    }

    .related-content {
        padding: 20px;
    }

    .comment-section {
        background: white;
        border-radius: 15px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.08);
        margin-top: 40px;
    }

    .table-of-contents {
        background: var(--light-grey);
        border-radius: 10px;
        padding: 25px;
        margin: 30px 0;
    }

    .table-of-contents ul {
        list-style: none;
        padding-left: 0;
    }

    .table-of-contents li {
        padding: 8px 0;
    }

    .table-of-contents a {
        color: var(--navy-blue);
        text-decoration: none;
        font-weight: 500;
    }

    .table-of-contents a:hover {
        text-decoration: underline;
    }
 .page-header {
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        color: white;
        padding: 100px 0 60px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }

    .page-header::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></svg>');
        background-size: 50px 50px;
        opacity: 0.3;
    }

    .booking-icon {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        background: linear-gradient(135deg, var(--navy-blue) 0%, var(--light-navy) 100%);
        display: flex;
        align-items: center;
        justify-content: center;
        color: white;
        font-size: 2.5rem;
        margin: 0 auto 20px;
        animation: pulse 2s infinite;
    }

    @keyframes pulse {
        0%, 100% {
            transform: scale(1);
            box-shadow: 0 0 0 0 rgba(26, 54, 93, 0.7);
        }
        50% {
            transform: scale(1.05);
            box-shadow: 0 0 0 20px rgba(26, 54, 93, 0);
        }
    }

    .step-indicator {
        display: flex;
        justify-content: center;
        margin-bottom: 40px;
        position: relative;
    }

    .step {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: relative;
        flex: 1;
        max-width: 150px;
    }

    .step-number {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--light-grey);
        color: var(--grey);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: bold;
        margin-bottom: 10px;
        position: relative;
        z-index: 2;
    }

    .step.active .step-number {
        background: var(--navy-blue);
        color: white;
    }

    .step.completed .step-number {
        background: #28a745;
        color: white;
    }

    .step-label {
        font-size: 0.85rem;
        text-align: center;
        color: var(--grey);
    }

    .step.active .step-label {
        color: var(--navy-blue);
        font-weight: 600;
    }

    .benefit-item {
        display: flex;
        align-items: start;
        padding: 15px;
        background: white;
        border-radius: 10px;
        margin-bottom: 15px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }

    .benefit-item:hover {
        transform: translateX(5px);
        box-shadow: 0 5px 15px rgba(26, 54, 93, 0.1);
    }

    .benefit-icon {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--navy-blue);
        color: white;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        flex-shrink: 0;
    }

    .time-slot {
        padding: 12px;
        border: 2px solid var(--light-grey);
        border-radius: 8px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
        background: white;
    }

    .time-slot:hover {
        border-color: var(--navy-blue);
        background: rgba(26, 54, 93, 0.05);
    }

    .time-slot.selected {
        border-color: var(--navy-blue);
        background: var(--navy-blue);
        color: white;
    }

    .alert-success {
        background-color: #d4edda;
        border-color: #c3e6cb;
        color: #155724;
        border-radius: 10px;
    }

    .alert-danger {
        background-color: #f8d7da;
        border-color: #f5c6cb;
        color: #721c24;
        border-radius: 10px;
    }

    .info-box {
        background: #e3f2fd;
        border-left: 4px solid #2196f3;
        padding: 20px;
        border-radius: 10px;
    }
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 50px;
    height: 50px;
    background-color: var(--navy-blue);
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 999;
}

.scroll-top i {
    color: #fff;
    font-size: 22px;
}
.scroll-top:hover {
    background-color: #0a3cff;
}
.scroll-top {
    transition: all 0.3s ease;
}
