        /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            line-height: 1.6;
            color: #333;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .btn {
            display: inline-block;
            padding: 10px 20px;
            border-radius: 4px;
            font-weight: 500;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .btn-primary {
            background-color: #2563eb;
            color: white;
            border: none;
        }

        .btn-primary:hover {
            background-color: #1d4ed8;
        }

        .btn-outline {
            background-color: transparent;
            color: white;
            border: 1px solid white;
        }

        .btn-outline:hover {
            background-color: white;
            color: #1e3a8a;
        }

        /* Top Bar */
        .top-bar {
            background-color: #1e3a8a;
            color: white;
            padding: 8px 0;
        }

        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .contact-info, .social-info {
            display: flex;
            align-items: center;
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin-right: 20px;
            font-size: 14px;
        }

        .contact-item i {
            margin-right: 8px;
        }

        .social-icons {
            display: flex;
            gap: 10px;
        }

        /* Navigation */
        /* .navbar {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            padding: 15px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 24px;
            font-weight: 700;
            color: #1e3a8a;
        }

        .menu {
            display: flex;
            gap: 30px;
        }

        .menu-item {
            position: relative;
            font-weight: 500;
        }

        .menu-item.active {
            color: #2563eb;
        }

        .menu-item.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: #2563eb;
        }

        .menu-item:hover {
            color: #2563eb;
        }

        .action-buttons {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .search-box {
            position: relative;
        }

        .search-box input {
            padding: 8px 35px 8px 15px;
            border-radius: 50px;
            border: 1px solid #ddd;
            font-size: 14px;
        }

        .search-box i {
            position: absolute;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #777;
        } */

        /* Page Header */
        .page-header {
            background-color: #1e3a8a;
            color: white;
            padding: 150px 0;
            text-align: center;
        }

        .page-title {
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .page-subtitle {
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
        }

        /* Solution Overview */
        .solution-overview {
            padding: 80px 0;
            background-color: #f9fafb;
        }

        .solution-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .solution-image {
            flex: 1;
        }

        .solution-image img {
            width: 100%;
            border-radius: 20px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
        }

        .solution-text {
            flex: 1;
        }

        .solution-text a {
            margin-bottom: 15px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .section-description {
            color: #4b5563;
            margin-bottom: 30px;
        }

        /* Features Section */
        .features-section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-subtitle {
            color: #4b5563;
            max-width: 600px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .feature-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            background-color: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            color: #2563eb;
            font-size: 24px;
        }

        .feature-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .feature-description {
            color: #4b5563;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 80px 0;
            background-color: #f9fafb;
        }

        .benefits-list {
            margin-top: 30px;
        }

        .benefit-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            padding: 20px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
        }

        .benefit-icon {
            width: 40px;
            height: 40px;
            background-color: #dbeafe;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            color: #2563eb;
            flex-shrink: 0;
        }

        .benefit-content h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: #1f2937;
        }

        .benefit-content p {
            color: #4b5563;
        }

        /* CTA Section */
        .cta-section {
            background-color: #1e3a8a;
            color: white;
            padding: 80px 0;
            text-align: center;
        }

        .cta-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .cta-description {
            max-width: 600px;
            margin: 0 auto 30px;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {

            .page-header {
                padding: 100px 0 50px;
            }

            .contact-info {
                display: none;
            }

            .solution-content {
                flex-direction: column;
            }

            .solution-image {
                margin-bottom: 40px;
            }

            .top-bar-content {
                justify-content: center;
            }
        }

        @media (max-width: 768px) {

            .page-header {
                padding: 80px 0 50px;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .footer-content {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .action-buttons {
                display: none;
            }
        }