        /* 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;
        }

        /* 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;
        }

        /* Services Overview */
        .services-overview {
            padding: 80px 0;
            background-color: #f9fafb;
        }

        .services-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .services-image {
            flex: 1;
        }

        .services-image img {
            width: 100%;
            border-radius: 8px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
        }

        .services-text {
            flex: 1;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .section-description {
            color: #4b5563;
            margin-bottom: 30px;
        }

        /* Service Cards Section */
        .service-cards-section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-subtitle {
            color: #4b5563;
            max-width: 600px;
            margin: 0 auto;
        }

        .service-cards-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
        }

        .service-card {
            background-color: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .service-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .service-card-image {
            height: 200px;
            overflow: hidden;
        }

        .service-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .service-card:hover .service-card-image img {
            transform: scale(1.05);
        }

        .service-card-content {
            padding: 25px;
        }

        .service-card-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .service-card-description {
            color: #4b5563;
            margin-bottom: 20px;
        }

        .service-card-link {
            display: inline-block;
            color: #2563eb;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .service-card-link:hover {
            color: #1d4ed8;
        }

        .service-card-link i {
            margin-left: 5px;
            transition: transform 0.3s ease;
        }

        .service-card-link:hover i {
            transform: translateX(5px);
        }

        /* Service List Items */
        .service-list {
            list-style: none;
            margin-bottom: 20px;
        }

        .service-list li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 8px;
            color: #4b5563;
        }

        .service-list li:before {
            content: '✓';
            color: #2563eb;
            position: absolute;
            left: 0;
            top: 0;
            font-weight: bold;
        }

        /* Approach Section */
        .approach-section {
            padding: 80px 0;
            background-color: #f9fafb;
        }

        .approach-steps {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .approach-step {
            position: relative;
            padding: 30px;
            background-color: white;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            text-align: center;
        }

        .step-number {
            position: absolute;
            top: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 40px;
            background-color: #2563eb;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
        }

        .step-icon {
            font-size: 40px;
            color: #2563eb;
            margin-bottom: 20px;
        }

        .step-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .step-description {
            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;
            }

            .services-content {
                flex-direction: column;
            }

            .services-image {
                margin-bottom: 40px;
            }

            .top-bar-content {
                justify-content: center;
            }

            .service-cards-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 768px) {
            .page-header {
                padding: 80px 0 50px;
            }
            .approach-steps {
                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;
            }
        }