        /* 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;
        }

        /* Company Overview */
        .company-overview {
            padding: 80px 0;
            background-color: #f9fafb;
        }

        .company-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .company-image {
            flex: 1;
        }

        .company-image img {
            width: 100%;
            border-radius: 8px;
            padding: 30px;
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); */
        }

        .company-text {
            flex: 1;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #1f2937;
            margin-bottom: 20px;
        }

        .section-description {
            color: #4b5563;
            margin-bottom: 30px;
        }

        /* Services Section */
        .services-section {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-subtitle {
            color: #4b5563;
            max-width: 600px;
            margin: 0 auto;
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .service-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;
        }

        .service-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .service-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;
        }

        .service-title {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            color: #1f2937;
        }

        .service-description {
            color: #4b5563;
        }

        /* Stats Section */
        .stats-section {
            padding: 80px 0;
            background-color: #1e3a8a;
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            text-align: center;
        }

        .stat-item {
            padding: 20px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .stat-label {
            font-size: 18px;
            opacity: 0.9;
        }

        /* Team Section */
        .team-section {
            padding: 80px 0;
            background-color: #f9fafb;
        }

        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-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;
            text-align: center;
        }

        .team-card:hover {
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
            transform: translateY(-5px);
        }

        .team-image {
            width: 100%;
            height: 250px;
            object-fit: cover;
        }

        .team-info {
            padding: 20px;
        }

        .team-name {
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 5px;
            color: #1f2937;
        }

        .team-position {
            color: #4b5563;
            margin-bottom: 15px;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .team-social a {
            width: 32px;
            height: 32px;
            background-color: #f3f4f6;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #4b5563;
            transition: all 0.3s ease;
        }

        .team-social a:hover {
            background-color: #2563eb;
            color: white;
        }

        /* Timeline Section */
        .timeline-section {
            padding: 80px 0;
        }

        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }

        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background-color: #e5e7eb;
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
        }

        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }

        .timeline-item::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: #2563eb;
            border: 4px solid white;
            border-radius: 50%;
            top: 15px;
            z-index: 1;
        }

        .timeline-item.left {
            left: 0;
        }

        .timeline-item.right {
            left: 50%;
        }

        .timeline-item.right::after {
            left: -10px;
        }

        .timeline-content {
            padding: 20px;
            background-color: white;
            position: relative;
            border-radius: 8px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        }

        .timeline-year {
            font-weight: 700;
            color: #2563eb;
            margin-bottom: 10px;
        }

        /* 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;
            }

            .company-content {
                flex-direction: column;
            }

            .company-image {
                margin-bottom: 40px;
            }

            .top-bar-content {
                justify-content: center;
            }

            .timeline::after {
                left: 31px;
            }

            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }

            .timeline-item.right {
                left: 0;
            }

            .timeline-item::after {
                left: 21px;
            }
        }

        @media (max-width: 768px) {

            .page-header {
                padding: 80px 0 50px;
            }

            .services-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .cta-buttons {
                flex-direction: column;
                gap: 10px;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .action-buttons {
                display: none;
            }
        }