
        :root {
            --primary-red: #D32F2F;
            --dark-gray: #333333;
            --light-gray: #EEEEEE;
            --white: #FFFFFF;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
            line-height: 1.6;
        }

        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-size: 1.5rem;
            font-weight: bold;
            color: var(--primary-red) !important;
            display: flex;
            align-items: center;
        }

        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }

        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary-red) !important;
        }

        .btn-cta {
            background: var(--primary-red);
            color: var(--white);
            padding: 10px 25px;
            border: none;
            border-radius: 5px;
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .btn-cta:hover {
            background: #B71C1C;
            color: var(--white);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
        }

        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--dark-gray) 0%, #555555 100%);
            color: var(--white);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://png.pngtree.com/thumb_back/fh260/background/20210902/pngtree-technology-and-finance-analysis-and-synthesis-image_785333.jpg') center/cover;
            opacity: 0.2;
            z-index: 0;
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-title {
            font-size:5rem;
            font-weight: bold;
            margin-bottom: 20px;
            animation: fadeInUp 1s ease;
        }

        .hero-subtitle {
            font-size: 1.3rem;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease 0.2s;
            animation-fill-mode: both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dark-gray);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: var(--primary-red);
        }

        /* About Section */
        .about-content {
            font-size: 1.1rem;
            line-height: 1.8;
        }

        .about-image {
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            width: 100%;
            height: auto;
        }

        /* Counter Section */
        .counter-section {
            background: var(--primary-red);
            color: var(--white);
            padding: 60px 0;
        }

        .counter-box {
            text-align: center;
        }

        .counter-number {
            font-size: 3rem;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .counter-label {
            font-size: 1.2rem;
            text-transform: uppercase;
        }

        /* Vision Mission */
        .vision-mission-card {
            background: var(--light-gray);
            padding: 30px;
            border-radius: 10px;
            height: 100%;
            transition: transform 0.3s ease;
        }

        .vision-mission-card:hover {
            transform: translateY(-5px);
        }

        .vision-mission-card i {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        /* Work Process */
        .process-step {
            text-align: center;
            padding: 30px 20px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .process-step:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .process-icon {
            width: 80px;
            height: 80px;
            background: var(--primary-red);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 2rem;
        }

        /* Why Choose Us */
        .feature-box {
            text-align: center;
            padding: 30px;
            background: var(--white);
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            height: 100%;
        }

        .feature-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .feature-box i {
            font-size: 3rem;
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        /* Services */
        .service-card {
            background: var(--light-gray);
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }

        .service-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }

        .service-card-body h3 {
            color: var(--dark-gray);
            font-weight: bold;
            margin-bottom: 15px;
        }

        .service-card-body p {
            flex-grow: 1;
            margin-bottom: 20px;
        }

        /* Reviews */
        .review-card {
            background: var(--white);
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            height: 100%;
        }

        .stars {
            color: #FFD700;
            margin-bottom: 15px;
        }

        .reviewer-info {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }

        .reviewer-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
            object-fit: cover;
        }

        /* FAQ */
        .accordion-button {
            background: var(--light-gray);
            color: var(--dark-gray);
            font-weight: 600;
        }

        .accordion-button:not(.collapsed) {
            background: var(--primary-red);
            color: var(--white);
        }

        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 5px !important;
            overflow: hidden;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #FFD700 0%, #000000 100%);
            color: var(--white);
            padding: 80px 0;
            text-align: center;
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        /* Contact Section */
        .contact-info {
            background: var(--white);
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 20px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }

        .contact-info h5 {
            color: var(--primary-red);
            margin-bottom: 10px;
        }

        .contact-info a {
            color: var(--dark-gray);
            text-decoration: none;
        }

        .contact-info a:hover {
            color: var(--primary-red);
        }

        /* Footer */
        footer {
            background: var(--dark-gray);
            color: var(--white);
            padding: 60px 0 20px;
        }

        footer h5 {
            color: var(--primary-red);
            margin-bottom: 20px;
        }

        footer ul {
            list-style: none;
            padding: 0;
        }

        footer ul li {
            margin-bottom: 10px;
        }

        footer ul li a {
            color: var(--white);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        footer ul li a:hover {
            color: var(--primary-red);
        }

        .footer-bottom {
            border-top: 1px solid #555;
            margin-top: 40px;
            padding-top: 20px;
            text-align: center;
        }

        .footer-bottom a {
            color: var(--primary-red);
            text-decoration: none;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
        }
