
        :root {
            --primary-color: #222222;
            --secondary-color: #E0E0E0;
            --accent-color: #009688;
            --highlight-color: #FFB300;
        }
        
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            color: #333;
        }
        
        /* Navbar Styles */
        .navbar {
            padding: 1rem 0;
        }
        
        .navbar-nav {
            text-align: center;
        }
        
        .navbar-nav .nav-link {
            color: var(--primary-color);
            font-weight: 500;
            margin: 0 10px;
            transition: color 0.3s;
        }
        
        .navbar-nav .nav-link:hover {
            color: var(--accent-color);
        }
        
        .navbar-nav .nav-link.active {
            color: var(--accent-color);
        }
        
        .btn-cta {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .btn-cta:hover {
            background-color: var(--highlight-color);
            color: white;
        }
        
        /* Hero Section */
        .hero-section {
            padding: 80px 0;
            background-color: var(--secondary-color);
        }
        
        .hero-content h1 {
            font-size: 5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .hero-content p {
            font-size: 1.2rem;
            margin-bottom: 30px;
        }
        
        .btn-hero {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 500;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-hero:hover {
            background-color: var(--highlight-color);
            color: white;
        }
        
        /* Section Styles */
        .section-padding {
            padding-top: 80px;
            padding-bottom: 80px;
        }
        
        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        
        .section-title:after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background-color: var(--accent-color);
            bottom: -10px;
            left: 0;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: #666;
            margin-bottom: 40px;
        }
        
        /* About Section */
        .about-image {
            border-radius: 10px;
            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.5s;
        }
        
        .about-image:hover img {
            transform: scale(1.05);
        }
        
        /* Vision & Mission */
        .vm-box {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .vm-box:hover {
            transform: translateY(-10px);
        }
        
        .vm-icon {
            font-size: 2.5rem;
            color: var(--accent-color);
            margin-bottom: 20px;
        }
        
        .vm-box h3 {
            font-size: 1.5rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        /* Counter Section */
        .counter-section {
            background-color: var(--primary-color);
            color: white;
        }
        
        .counter-box {
            text-align: center;
            padding: 20px;
        }
        
        .counter-box i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: var(--highlight-color);
        }
        
        .counter {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .counter-text {
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        /* Why Choose Us */
        .wcu-point {
            display: flex;
            margin-bottom: 20px;
        }
        
        .wcu-icon {
            background-color: var(--accent-color);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .wcu-content h4 {
            font-size: 1.2rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        /* Services */
        .service-card {
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: all 0.3s;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        
        .service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }
        
        .service-img {
            height: 200px;
            overflow: hidden;
        }
        
        .service-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .service-card:hover .service-img img {
            transform: scale(1.1);
        }
        
        .service-content {
            padding: 25px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        
        .service-content h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .service-content p {
            margin-bottom: 20px;
            flex-grow: 1;
        }
        
        .btn-service {
            background-color: var(--accent-color);
            color: white;
            border: none;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 500;
            align-self: flex-start;
            transition: all 0.3s;
        }
        
        .btn-service:hover {
            background-color: var(--highlight-color);
            color: white;
        }
        
        /* CTA Section */
        .cta-section {
            background-color: var(--accent-color);
            color: white;
            text-align: center;
        }
        
        .cta-section h2 {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        .cta-section p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .btn-cta-large {
            background-color: var(--highlight-color);
            color: white;
            border: none;
            padding: 12px 30px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s;
        }
        
        .btn-cta-large:hover {
            background-color: var(--primary-color);
            color: white;
        }
        
        /* FAQ Section */
        .accordion-button {
            background-color: var(--secondary-color);
            color: var(--primary-color);
            font-weight: 600;
        }
        
        .accordion-button:not(.collapsed) {
            background-color: var(--accent-color);
            color: white;
        }
        
        .accordion-button:focus {
            box-shadow: none;
        }
        
        .accordion-body {
            background-color: #fff;
        }
        
        /* Client Reviews */
        .review-card {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 25px;
            height: 100%;
            transition: transform 0.3s;
        }
        
        .review-card:hover {
            transform: translateY(-10px);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }
        
        .review-img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .review-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-info h4 {
            font-size: 1.1rem;
            color: var(--primary-color);
            margin-bottom: 5px;
        }
        
        .review-rating {
            color: var(--highlight-color);
        }
        
        .review-text {
            font-style: italic;
            color: #555;
        }
        
        /* Newsletter */
        .newsletter-section {
            background-color: var(--primary-color);
            color: white;
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            border: none;
            border-radius: 30px 0 0 30px;
            padding: 12px 20px;
            width: 70%;
        }
        
        .newsletter-btn {
            background-color: var(--accent-color);
            border: none;
            border-radius: 0 30px 30px 0;
            padding: 12px 25px;
            color: white;
            font-weight: 500;
            transition: all 0.3s;
        }
        
        .newsletter-btn:hover {
            background-color: var(--highlight-color);
        }
        
        /* Contact Section */
        .contact-info-box {
            background-color: var(--secondary-color);
            border-radius: 10px;
            padding: 30px;
            height: 100%;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background-color: var(--accent-color);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 20px;
        }
        
        .contact-info h3 {
            font-size: 1.3rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }
        
        .contact-info p {
            margin-bottom: 5px;
        }
        
        /* Footer */
        footer {
            background-color: var(--primary-color);
            color: white;
            padding-top: 60px;
            padding-bottom: 30px;
        }
        
        .footer-col h4 {
            font-size: 1.3rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-col h4:after {
            content: '';
            position: absolute;
            width: 40px;
            height: 3px;
            background-color: var(--accent-color);
            bottom: 0;
            left: 0;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-col ul li {
            margin-bottom: 12px;
        }
        
        .footer-col ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col ul li a:hover {
            color: var(--highlight-color);
        }
        
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255,255,255,0.1);
            text-align: center;
        }
        
        .footer-bottom p {
            margin-bottom: 0;
            color: rgba(255,255,255,0.7);
        }
        
        .footer-bottom a {
            color: var(--highlight-color);
            text-decoration: none;
            margin: 0 5px;
        }
        
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-section h2 {
                font-size: 1.8rem;
            }
            
            .newsletter-input {
                width: 60%;
            }
        }
