        :root {
            --color-1: #FAEDCD;
            --color-2: #D4A373;
            --color-3: #CCD5AE;
            --color-4: #E9EDC9;
            --color-5: #FEFAE0;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            color: #333;
            line-height: 1.6;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
            transition: all 0.3s ease;
        }
        
        .navbar.scrolled {
            background-color: var(--color-5) !important;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        
        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: var(--color-2) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 1.8rem;
        }
        
        .navbar-nav .nav-link {
            color: #333 !important;
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--color-2) !important;
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--color-2), var(--color-3));
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            display: inline-block;
        }
        
        .btn-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(212, 163, 115, 0.4);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            background: linear-gradient(135deg, var(--color-1), var(--color-4));
            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/20230722/pngtree-financial-transaction-tools-on-blue-background-3d-render-for-accountancy-image_3780303.jpg') center/cover;
            opacity: 0.1;
            z-index: 0;
        }
        
        .hero-content {
            position: relative;
            z-index: 1;
        }
        
        .hero-title {
            font-size: 6rem;
            text-transform:uppercase;
            font-weight: 700;
            color: var(--color-2);
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
            color: #555;
            margin-bottom: 30px;
        }
        
        .btn-hero {
            background: var(--color-2);
            color: white;
            padding: 15px 40px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        
        .btn-hero:hover {
            background: var(--color-3);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(212, 163, 115, 0.3);
            color: white;
        }
        
        /* Section Styles */
        .section-padding {
            padding: 80px 0;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-2);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: var(--color-2);
        }
        
        /* About Section */
        .about-image {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Counter Section */
        .counter-section {
            background: linear-gradient(135deg, var(--color-3), var(--color-4));
            padding: 60px 0;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--color-2);
            margin-bottom: 15px;
        }
        
        .counter-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--color-2);
            margin-bottom: 10px;
        }
        
        .counter-label {
            font-size: 1.1rem;
            color: #555;
            font-weight: 500;
        }
        
        /* Vision & Mission */
        .vm-card {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            height: 100%;
            transition: transform 0.3s ease;
        }
        
        .vm-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .vm-card i {
            font-size: 3rem;
            color: var(--color-2);
            margin-bottom: 20px;
        }
        
        .vm-card h3 {
            color: var(--color-2);
            margin-bottom: 15px;
        }
        
        /* Features */
        .feature-item {
            margin-bottom: 30px;
            padding: 20px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 3px 15px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
        }
        
        .feature-item:hover {
            transform: translateX(5px);
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        }
        
        .feature-icon {
            background: var(--color-1);
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            flex-shrink: 0;
        }
        
        .feature-icon i {
            font-size: 1.5rem;
            color: var(--color-2);
        }
        
        .feature-item h4 {
            color: var(--color-2);
            margin-bottom: 10px;
        }
        
        /* Booking Form */
        .booking-form {
            background: white;
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        }
        
        .booking-form h3 {
            color: var(--color-2);
            margin-bottom: 30px;
        }

        .nav-item{
            margin-left:30px;
        }
        
        /* Service Cards */
        .service-card {
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            height: 100%;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        }
        
        .service-card img {
            width: 100%;
            height: 350px;
            object-fit: cover;
        }
        
        .service-card-body {
            padding: 25px;
        }
        
        .service-card-title {
            font-weight: 700;
            color: var(--color-2);
            margin-bottom: 15px;
        }
        
        .service-card-text {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        /* Reviews */
        .review-card {
            background: white;
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.08);
            margin-bottom: 20px;
            transition: all 0.3s ease;
        }
        
        .review-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        }
        
        .review-stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-author {
            font-weight: 600;
            color: var(--color-2);
            margin-top: 15px;
        }
        
        /* FAQ */
        .accordion-button {
            background: var(--color-1);
            color: var(--color-2);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background: var(--color-2);
            color: white;
        }
        
        .accordion-item {
            border: none;
            margin-bottom: 10px;
            border-radius: 10px !important;
            overflow: hidden;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--color-2), var(--color-3));
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .cta-section .lead {
            font-size: 1.2rem;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        /* Contact Section */
        .contact-info {
            background: var(--color-5);
            padding: 30px;
            border-radius: 15px;
            height: 100%;
        }
        
        .contact-info-item {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
        }
        
        .contact-info-item i {
            background: var(--color-2);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 1.2rem;
        }
        
        .contact-info-item h5 {
            color: var(--color-2);
            margin-bottom: 5px;
        }
        
        /* Footer */
        footer {
            background: var(--color-2);
            color: white;
            padding: 60px 0 20px;
        }
        
        .footer-title {
            color: white;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-links {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 10px;
        }
        
        .footer-links a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
        }
        
        .newsletter-form {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            border-radius: 50px;
        }
        
        .newsletter-form button {
            padding: 10px 25px;
            border: none;
            border-radius: 50px;
            background: var(--color-3);
            color: white;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-form button:hover {
            background: var(--color-4);
            color: var(--color-2);
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: rgba(255,255,255,0.8);
        }
        
        .copyright a {
            color: white;
            text-decoration: none;
            margin: 0 10px;
        }
        
        .copyright a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }
