        :root {
            --navy-blue: #1e3a8a;
            --navy-blue-dark: #1e40af;
            --navy-blue-light: #3b82f6;
            --white: #ffffff;
            --light-gray: #f8fafc;
            --gray: #64748b;
            --shadow: rgba(30, 58, 138, 0.1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--gray);
            background-color: var(--white);
        }

        /* Navigation */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 20px var(--shadow);
            padding: 1rem 0;
        }

        .navbar-brand {
            color: var(--navy-blue) !important;
            font-weight: 700;
            font-size: 1.5rem;
        }

        /* Hero Section */

        .hero-section {
            position: relative;
            color: var(--white);
            padding: 100px 0;
            text-align: center;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="80" cy="40" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="40" cy="80" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
            opacity: 0.3;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: var(--white);
            text-align: center;
        }

        .hero-content h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            line-height: 1.2;
        }

        .hero-content h2 {
            font-size: 1.5rem;
            font-weight: 400;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 2.5rem;
            opacity: 0.8;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .btn-pill {
            border-radius: 50px;
            padding: 12px 30px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            border: 2px solid;
        }

        .btn-outline-light:hover {
            background-color: var(--white);
            color: var(--navy-blue);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
        }

        .btn-primary {
            background-color: var(--navy-blue);
            border-color: var(--navy-blue);
        }

        .btn-primary:hover {
            background-color: var(--navy-blue-dark);
            border-color: var(--navy-blue-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 30px var(--shadow);
        }

        /* Section Styling */
        .section {
            padding: 80px 0;
        }

        .section-light {
            background-color: var(--light-gray);
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            color: var(--navy-blue);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title h3 {
            color: var(--gray);
            font-size: 1.3rem;
            font-weight: 400;
        }

        /* Cards */
        .card {
            border: none;
            border-radius: 15px;
            box-shadow: 0 5px 25px var(--shadow);
            transition: all 0.3s ease;
            height: 100%;
            background-color: var(--white);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
        }

        .card-body {
            padding: 2rem;
        }

        .card-title {
            color: var(--navy-blue);
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .card-text {
            color: var(--gray);
            font-size: 1rem;
            line-height: 1.6;
        }

        /* About Section */
        .about-content {
            display: flex;
            align-items: center;
            min-height: 500px;
        }

        .about-text h2 {
            color: var(--navy-blue);
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .about-text h3 {
            color: var(--gray);
            font-size: 1.3rem;
            font-weight: 400;
            margin-bottom: 1.5rem;
        }

        .about-text .lead {
            font-size: 1.1rem;
            color: var(--gray);
            margin-bottom: 2rem;
            line-height: 1.7;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            margin-top: 2rem;
        }

        .process-step {
            text-align: center;
            flex: 1;
            padding: 1rem;
            background-color: var(--navy-blue);
            color: var(--white);
            margin: 0 5px;
            border-radius: 10px;
            font-weight: 600;
        }

        /* Highlight Cards */
        .highlight-card {
            background: linear-gradient(135deg, var(--navy-blue) 0%, var(--navy-blue-light) 100%);
            color: var(--white);
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            height: 100%;
        }

        .highlight-card .card-title {
            color: var(--white);
            font-size: 1.4rem;
            margin-bottom: 1rem;
        }

        /* Process Flow */
        .process-flow {
            background-color: var(--navy-blue);
            color: var(--white);
            padding: 3rem 0;
            text-align: center;
            border-radius: 15px;
            margin: 2rem 0;
        }

        .process-flow h3 {
            margin-bottom: 2rem;
            font-weight: 700;
        }

        .flow-text {
            font-size: 1.3rem;
            font-weight: 500;
        }

        .flow-arrow {
            color: var(--white);
            margin: 0 1rem;
            font-size: 1.5rem;
        }

        /* Benefits Grid */
        .benefits-card {
            background-color: var(--white);
            text-align: center;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px var(--shadow);
            transition: all 0.3s ease;
            border-left: 4px solid var(--navy-blue);
        }

        .benefits-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(30, 58, 138, 0.2);
        }

        /* Why Section */
        .why-section {
            background: linear-gradient(135deg, var(--light-gray) 0%, var(--white) 100%);
            padding: 80px 0;
        }

        .why-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }

        .why-content .lead {
            font-size: 1.2rem;
            line-height: 1.8;
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .why-highlight {
            background-color: var(--navy-blue);
            color: var(--white);
            padding: 1rem 2rem;
            border-radius: 10px;
            margin: 1rem 0;
            font-weight: 600;
            display: inline-block;
        }

        .not-points {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin: 2rem 0;
            flex-wrap: wrap;
        }

        .not-point {
            background-color: var(--white);
            padding: 1rem 2rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px var(--shadow);
            font-weight: 600;
            color: var(--navy-blue);
        }

        /* CTA Section */
        .cta-section {
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta-section h3 {
            font-size: 1.3rem;
            margin-bottom: 2rem;
            opacity: 0.9;
        }

        .card-wrapper {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
        }

        .card-container {
            margin: 10px;
        }

        /* Default for large screens: 3 cards in the first row and 2 in the second row */
        .card-wrapper>.card-container {
            flex: 1 1 30%;
            /* 3 cards per row for large screens */
        }

        /* Make sure the last 2 cards go to the second row for large screens */
        @media (min-width: 1200px) {

            .card-wrapper>.card-container:nth-child(4),
            .card-wrapper>.card-container:nth-child(5) {
                flex: 1 1 45%;
                /* 2 cards in the second row, centered */
            }
        }

        /* For medium screens (tablets) -> 2 cards per row */
        @media (max-width: 1200px) {
            .card-wrapper>.card-container {
                flex: 1 1 45%;
                /* 2 cards per row */
            }
        }

        /* For small screens -> 1 card per row */
        @media (max-width: 768px) {
            .card-wrapper>.card-container {
                flex: 1 1 100%;
                /* 1 card per row */
            }
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }

            .hero-content h2 {
                font-size: 1.2rem;
            }

            .process-steps {
                flex-direction: column;
                gap: 1rem;
            }

            .not-points {
                flex-direction: column;
                align-items: center;
            }
        }

        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.8s ease forwards;
        }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .card,
        .benefits-card {
            animation: fadeInUp 0.8s ease forwards;
        }