      /* Global Styles */
      :root {
        --primary-color: #2c3e50;
        --secondary-color: #aac231;
        --light-color: #f8f9fa;
        --dark-color: #343a40;
        --gray-color: #6c757d;
        --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: 'Roboto', Arial, sans-serif;
    }
    
    body {
        line-height: 1.6;
        color: var(--dark-color);
        background-color: #fff;
    }
    
    a {
        text-decoration: none;
        color: var(--primary-color);
        transition: all 0.3s ease;
    }
    
    a:hover {
        color: var(--secondary-color);
    }
    
    img {
        max-width: 100%;
        height: auto;
    }
    
    .container {
        width: 100%;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .btn {
        display: inline-block;
        padding: 12px 24px;
        border-radius: 4px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        text-align: center;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .btn-primary {
        background-color: var(--primary-color);
        color: #fff;
        border: 2px solid var(--primary-color);
    }
    
    .btn-primary:hover {
        background-color: transparent;
        color: var(--primary-color);
    }
    
    .btn-secondary {
        background-color: var(--secondary-color);
        color: #fff;
        border: 2px solid var(--secondary-color);
    }
    
    .btn-secondary:hover {
        background-color: transparent;
        color: var(--secondary-color);
    }
    
    .section {
        padding: 80px 0;
    }
    
    .section-title {
        margin-bottom: 50px;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }
    
    .section-title p {
        max-width: 700px;
        margin: 0 auto;
        color: var(--gray-color);
    }
    
    /* Header Styles */
    .header {
        background-color: #fff;
        box-shadow: var(--box-shadow);
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        z-index: 1000;
    }
    
    .header-content {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }
    
    .logo {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--primary-color) !important;
    }
    
    .logo span {
        color: var(--secondary-color) !important;
    }
    
    /* Additional specific rules to ensure logo colors */
    .header .logo {
        color: var(--primary-color) !important;
    }
    
    .header .logo span {
        color: var(--secondary-color) !important;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
    }
    
    .nav-item {
        margin-left: 30px;
    }
    
    .nav-link {
        font-weight: 600;
        position: relative;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background-color: var(--secondary-color);
        transition: width 0.3s ease;
    }
    
    .nav-link:hover::after {
        width: 100%;
    }
    
    .mobile-menu {
        display: none;
        font-size: 1.5rem;
        cursor: pointer;
    }
    
    .contact-info {
        display: flex;
        align-items: center;
    }
    
    .phone {
        margin-right: 20px;
    }
    
    .phone a {
        font-weight: 700;
        color: var(--secondary-color);
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .hero {
        height: 100vh;
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/IMG_9974.jpg') center/cover no-repeat;
        display: flex;
        align-items: center;
        text-align: center;
        padding-top: 80px;
    }
    
    .hero-content {
        color: #fff;
        max-width: 800px;
        margin: 0 auto;
    }
    
    .hero-content h1 {
        font-size: 3.5rem;
        margin-bottom: 20px;
    }
    
    .hero-content p {
        font-size: 1.2rem;
        margin-bottom: 30px;
    }
    
    .hero-btns .btn {
        margin: 0 10px;
    }
    
    /* Services Section */
    .services {
        background-color: var(--light-color);
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .service-card {
        background-color: #fff;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: var(--box-shadow);
        transition: transform 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-10px);
    }
    
    .service-img {
        height: 200px;
        overflow: hidden;
    }
    
    .service-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
    }
    
    .service-card:hover .service-img img {
        transform: scale(1.1);
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 1.5rem;
        margin-bottom: 10px;
        color: var(--primary-color);
    }
    
    .service-content p {
        margin-bottom: 15px;
        color: var(--gray-color);
    }
    
    /* About Section */
    .about-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 50px;
        align-items: center;
    }
    
    .about-img {
        overflow: hidden;
        border-radius: 5px;
    }
    
    .about-text h3 {
        font-size: 2rem;
        margin-bottom: 20px;
        color: var(--primary-color);
    }
    
    .about-text p {
        margin-bottom: 20px;
        color: var(--gray-color);
    }
    
    /* Testimonials Section */
    .testimonials {
        background-color: var(--light-color);
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .testimonial-card {
        background-color: #fff;
        border-radius: 5px;
        padding: 30px;
        box-shadow: var(--box-shadow);
    }
    
    .testimonial-text {
        font-style: italic;
        margin-bottom: 20px;
        color: var(--gray-color);
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .author-img {
        width: 60px;
        height: 60px;
        border-radius: 50%;
        overflow: hidden;
        margin-right: 15px;
    }
    
    .author-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .author-info h4 {
        font-size: 1.1rem;
        color: var(--primary-color);
    }
    
    .author-info p {
        font-size: 0.9rem;
        color: var(--gray-color);
    }
    
    /* Contact Section */
    .contact-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 50px;
    }
    
    .contact-info-box {
        margin-bottom: 30px;
    }
    
    .contact-info-box h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
        color: var(--primary-color);
    }
    
    .contact-info-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
    }
    
    .contact-info-item i {
        width: 30px;
        color: var(--secondary-color);
        font-size: 1.2rem;
    }
    
    .contact-form {
        background-color: #fff;
        padding: 30px;
        border-radius: 5px;
        box-shadow: var(--box-shadow);
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }
    
    .form-control:focus {
        outline: none;
        border-color: var(--secondary-color);
    }
    
    textarea.form-control {
        resize: vertical;
        min-height: 150px;
    }
    
    /* Footer */
    .footer {
        background-color: var(--primary-color);
        color: #fff;
        padding: 60px 0 20px;
    }
    
    .footer-content {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
        margin-bottom: 40px;
    }
    
    .footer-column h3 {
        font-size: 1.3rem;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-column h3::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 50px;
        height: 2px;
        background-color: var(--secondary-color);
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #ddd;
    }
    
    .footer-links a:hover {
        color: var(--secondary-color);
        padding-left: 5px;
    }
    
    .footer-social {
        display: flex;
        margin-top: 20px;
    }
    
    .footer-social a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background-color: rgba(255, 255, 255, 0.1);
        margin-right: 10px;
        color: #fff;
        transition: all 0.3s ease;
    }
    
    .footer-social a:hover {
        background-color: var(--secondary-color);
        transform: translateY(-5px);
    }
    
    .footer-bottom {
        text-align: center;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Responsive Styles */
    @media screen and (max-width: 992px) {
        .header-content {
            padding: 15px 0;
            flex-wrap: wrap;
        }
        
        .nav-menu {
            position: fixed;
            top: 80px;
            left: -100%;
            width: 250px;
            height: 100vh;
            background-color: #fff;
            flex-direction: column;
            align-items: center;
            padding-top: 50px;
            transition: left 0.3s ease;
            box-shadow: 2px 0 5px rgba(0, 0, 0, 0.1);
        }
        
        .nav-menu.active {
            left: 0;
        }
        
        .nav-item {
            margin: 0 0 20px 0;
        }
        
        .mobile-menu {
            display: block;
        }
        
        .contact-info {
            flex-direction: column;
            align-items: flex-start;
            gap: 10px;
        }
        
        .phone {
            margin-right: 0;
            margin-bottom: 10px;
        }
        
        .hero-content h1 {
            font-size: 2.5rem;
        }
        
        .about-content {
            grid-template-columns: 1fr;
        }
        
        .about-img {
            margin-bottom: 30px;
        }
    }
    
    @media screen and (max-width: 768px) {
        .header-content {
            flex-direction: column;
            align-items: flex-start;
            gap: 15px;
        }
        
        .logo {
            font-size: 1.5rem;
        }
        
        .contact-info {
            width: 100%;
            flex-direction: row;
            justify-content: space-between;
            align-items: center;
        }
        
        .phone {
            margin-bottom: 0;
            order: 1;
        }
        
        .contact-info .btn {
            order: 2;
            margin-right: 15px;
        }
        
        .mobile-menu {
            order: 3;
        }
        
        .section {
            padding: 60px 0;
        }
        
        .section-title h2 {
            font-size: 2rem;
        }
        
        .hero-content h1 {
            font-size: 2rem;
        }
        
        .hero-content p {
            font-size: 1rem;
        }
        
        .contact-content {
            grid-template-columns: 1fr;
        }
        
        .contact-form {
            margin-top: 30px;
        }
    }
    
    /* Service Template Styles */
    .service-hero {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('/images/IMG_9974.jpg') center/cover no-repeat;
        height: 60vh;
        padding-top: 120px;
    }
    
    .service-details-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
        align-items: start;
    }
    
    .service-details-text h2 {
        color: var(--primary-color);
        margin-bottom: 20px;
        font-size: 2.2rem;
    }
    
    .service-details-text h3 {
        color: var(--primary-color);
        margin: 30px 0 15px 0;
        font-size: 1.5rem;
    }
    
    .service-details-text p {
        margin-bottom: 20px;
        line-height: 1.8;
        color: var(--gray-color);
    }
    
    .service-features {
        list-style: none;
        margin: 20px 0;
    }
    
    .service-features li {
        margin-bottom: 12px;
        display: flex;
        align-items: center;
    }
    
    .service-features li i {
        color: var(--secondary-color);
        margin-right: 15px;
        font-size: 1.1rem;
    }
    
    .service-cta {
        margin-top: 40px;
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .service-details-image img {
        width: 100%;
        border-radius: 8px;
        box-shadow: var(--box-shadow);
    }
    
    .related-services {
        background-color: var(--light-color);
    }
    
    /* Responsive design for service template */
    @media screen and (max-width: 768px) {
        .service-details-content {
            grid-template-columns: 1fr;
            gap: 30px;
        }
        
        .service-hero {
            height: 50vh;
            padding-top: 100px;
        }
        
        .service-cta {
            flex-direction: column;
        }
        
        .service-cta .btn {
            width: 100%;
        }
    }