
        :root {
            --teal: #2C3E50;
            --soft-blue: #34495E;
            --off-white: #4A4A4A;
            --warm-orange: #7F8C8D;
            --light-bg: #f8f9fa;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: var(--off-white);
            line-height: 1.6;
        }
        
        h1, h2, h3, h4, h5, h6 {
            color: var(--teal);
            font-weight: 700;
        }
        
        .navbar {
            padding: 20px 0;
            background-color: transparent !important;
        }
        
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-link {
            color: var(--teal) !important;
            font-weight: 600;
            margin: 0 15px;
            transition: all 0.3s ease;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--warm-orange) !important;
        }
        
        .btn-primary {
            background-color: var(--teal);
            border-color: var(--teal);
            color: white;
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-primary:hover {
            background-color: var(--soft-blue);
            border-color: var(--soft-blue);
            transform: translateY(-2px);
        }
        
        .btn-outline-primary {
            color: var(--teal);
            border-color: var(--teal);
            font-weight: 600;
            padding: 10px 25px;
            border-radius: 30px;
            transition: all 0.3s ease;
        }
        
        .btn-outline-primary:hover {
            background-color: var(--teal);
            border-color: var(--teal);
            transform: translateY(-2px);
        }
        
        .section-padding {
            padding: 80px 0;
        }
        
        .bg-light {
            background-color: var(--light-bg) !important;
        }
        
        .hero-section {
            padding: 120px 0;
            background: linear-gradient(rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.9)), url('https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcQ32YuEt-B_cTOTCM0BrSTLS8-Qp3XpN89x_ifrf1bShCwgENGfrKNooIms2KS2KFK7JgA&usqp=CAU');
            background-size: cover;
            background-position: center;
        }
        
        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--teal);
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: var(--off-white);
        }
        
        .service-card {
            border: none;
            border-radius: 10px;
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }
        
        .service-card img {
            height: 200px;
            object-fit: cover;
        }
        
        .service-card .card-body {
            padding: 25px;
        }
        
        .service-card h5 {
            color: var(--teal);
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            color: var(--teal);
            margin-bottom: 15px;
        }
        
        .counter-box h3 {
            font-size: 2.5rem;
            color: var(--teal);
            font-weight: 700;
        }
        
        .counter-box p {
            color: var(--off-white);
            font-weight: 600;
        }
        
        .feature-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .feature-item i {
            font-size: 1.5rem;
            color: var(--teal);
            margin-right: 15px;
            margin-top: 5px;
        }
        
        .feature-item h5 {
            color: var(--teal);
            margin-bottom: 10px;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--teal);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .review-card {
            border: none;
            border-radius: 10px;
            padding: 25px;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            height: 100%;
        }
        
        .review-card .stars {
            color: #ffc107;
            margin-bottom: 15px;
        }
        
        .review-card .reviewer {
            display: flex;
            align-items: center;
            margin-top: 20px;
        }
        
        .reviewer img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }
        
        .reviewer h6 {
            margin: 0;
            color: var(--teal);
        }
        
        .reviewer small {
            color: var(--warm-orange);
        }
        
        .cta-section {
            background: linear-gradient(rgba(44, 62, 80, 0.9), rgba(44, 62, 80, 0.9)), url('https://images.pexels.com/photos/714699/pexels-photo-714699.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 0;
        }
        
        .cta-section h2 {
            color: white;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .footer {
            background-color: var(--teal);
            color: white;
            padding: 80px 0 20px;
        }
        
        .footer h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer h5:after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 3px;
            background-color: var(--warm-orange);
        }
        
        .footer ul {
            list-style: none;
            padding: 0;
        }
        
        .footer ul li {
            margin-bottom: 12px;
        }
        
        .footer ul li a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: all 0.3s ease;
        }
        
        .footer ul li a:hover {
            color: white;
            padding-left: 5px;
        }
        
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 50px;
            padding-top: 20px;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            margin: 0 10px;
        }
        
        .footer-bottom a:hover {
            color: white;
        }
        
        .contact-form input, .contact-form textarea {
            border-radius: 5px;
            border: 1px solid #ddd;
            padding: 12px 15px;
            margin-bottom: 20px;
        }
        
        .contact-form input:focus, .contact-form textarea:focus {
            box-shadow: none;
            border-color: var(--teal);
        }
        
        .newsletter-form input {
            border-radius: 30px;
            border: none;
            padding: 12px 20px;
        }
        
        .newsletter-form button {
            border-radius: 30px;
            padding: 12px 25px;
        }
        
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .section-padding {
                padding: 60px 0;
            }
        }
