
        :root {
            --dusty-blue: #5D8AA8;
            --light-gray: #F5F5F5;
            --dark-gray: #333333;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--dark-gray);
        }
        
        .navbar {
            padding: 15px 0;
            transition: all 0.3s ease;
        }

        .nav-item{
            margin-left:35px !important;
        }
        
        .navbar-brand {
            font-weight: bold;
            color: var(--dusty-blue) !important;
            font-size: 1.5rem;
        }
        
        .navbar-nav .nav-link {
            color: var(--dark-gray) !important;
            margin: 0 10px;
            font-weight: 500;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--dusty-blue) !important;
        }
        
        .btn-cta {
            background-color: var(--dusty-blue);
            color: white;
            padding: 8px 20px;
            border-radius: 4px;
            font-weight: 600;
            transition: all 0.3s ease;
        }
        
        .btn-cta:hover {
            background-color: #4A7A96;
            color: white;
            transform: translateY(-2px);
        }
        
        .hero-section {
            background: linear-gradient(rgba(93, 138, 168, 0.7), rgba(93, 138, 168, 0.7)), url('https://media.istockphoto.com/id/2021524839/photo/business-finance-and-investment-analyze-economic-growth-charts-for-informed-business-finance.jpg?s=612x612&w=0&k=20&c=hcYK8iRAZyklc0gQUpUDf3TJX2EBqLvwp3yZmZP5lEA=');
            background-size: cover;
            background-position: center;
            padding: 120px 0;
            color: white;
            text-align: center;
        }
        
        .hero-section h1 {
            font-size:6rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dusty-blue);
            margin-bottom: 15px;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: var(--dusty-blue);
        }
        
        .about-img {
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--dusty-blue);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--dusty-blue);
        }
        
        .counter-box p {
            font-size: 1.1rem;
            color: var(--dark-gray);
        }
        
        .vision-mission-box {
            background-color: var(--light-gray);
            padding: 30px;
            border-radius: 8px;
            height: 100%;
        }
        
        .vision-mission-box i {
            font-size: 2rem;
            color: var(--dusty-blue);
            margin-bottom: 15px;
        }
        
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            transition: all 0.3s ease;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
        }
        
        .feature-box i {
            font-size: 3rem;
            color: var(--dusty-blue);
            margin-bottom: 20px;
        }
        
        .process-step {
            text-align: center;
            padding: 20px;
            position: relative;
        }
        
        .process-step:not(:last-child):after {
            content: '';
            position: absolute;
            top: 50px;
            right: -15px;
            width: 30px;
            height: 2px;
            background-color: var(--dusty-blue);
        }
        
        .process-step i {
            font-size: 2.5rem;
            color: var(--dusty-blue);
            margin-bottom: 15px;
        }
        
        .service-card {
            background-color: var(--light-gray);
            border-radius: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .service-card img {
            height: 300px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-card h3 {
            font-weight: bold;
            color: var(--dusty-blue);
            margin-bottom: 15px;
        }
        
        .service-card p {
            flex-grow: 1;
            margin-bottom: 20px;
        }
        
        .review-card {
            background-color: white;
            border-radius: 8px;
            padding: 25px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 20px;
        }
        
        .review-card .stars {
            color: #FFC107;
            margin-bottom: 15px;
        }
        
        .review-card img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .faq-item {
            background-color: white;
            border-radius: 8px;
            margin-bottom: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-question:hover {
            background-color: var(--light-gray);
        }
        
        .faq-answer {
            padding: 0 20px 20px;
            display: none;
        }
        
        .cta-section {
            background-color: var(--dusty-blue);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .contact-section {
            background-color: var(--light-gray);
            padding: 80px 0;
        }
        
        .contact-info {
            margin-bottom: 30px;
        }
        
        .contact-info i {
            font-size: 1.5rem;
            color: var(--dusty-blue);
            margin-right: 15px;
        }
        
        .contact-form {
            background-color: white;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        footer {
            background-color: #333;
            color: white;
            padding: 60px 0 20px;
        }
        
        footer h4 {
            color: white;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        footer h4:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 2px;
            background-color: var(--dusty-blue);
        }
        
        footer ul {
            list-style: none;
            padding: 0;
        }
        
        footer ul li {
            margin-bottom: 10px;
        }
        
        footer ul li a {
            color: #bbb;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        footer ul li a:hover {
            color: var(--dusty-blue);
        }
        
        .newsletter-form {
            display: flex;
        }
        
        .newsletter-form input {
            flex-grow: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 4px 0 0 4px;
        }
        
        .newsletter-form button {
            padding: 10px 20px;
            background-color: var(--dusty-blue);
            color: white;
            border: none;
            border-radius: 0 4px 4px 0;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background-color: #4A7A96;
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            margin-top: 30px;
            border-top: 1px solid #555;
            color: #bbb;
        }
        
        .copyright a {
            color: #bbb;
            text-decoration: none;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .copyright a:hover {
            color: var(--dusty-blue);
        }
        
        @media (max-width: 768px) {
            .hero-section h1 {
                font-size: 2rem;
            }
            
            .section-title h2 {
                font-size: 1.8rem;
            }
            
            .process-step:not(:last-child):after {
                display: none;
            }
        }
