* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #f0f8ed;
    color: #333;
    line-height: 1.6;
}

.header-service {
    background-color: white;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0 40px;
    height: 80px;
    gap: 30px;
}

.logo-box {
    flex-shrink: 0;
}

.header-logo {
    height: 60px;
    width: auto;
}

.page-title {
    font-size: 2rem;
    font-weight: 700;
    color: #558B2F;
    margin: 0;
    flex: 1;
}

.icon-btn {
    height: 50px;
    width: auto;
    transition: transform 0.2s;
    cursor: pointer;
    flex-shrink: 0;
}

.icon-btn:hover {
    transform: scale(1.1);
}

.service-main {
    min-height: 100vh;
}

.service-hero {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
    position: relative;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-hero:hover .service-image {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(58, 107, 53, 0.2) 0%, rgba(122, 173, 87, 0.15) 100%);
    pointer-events: none;
    z-index: 1;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px 60px;
}

.content-wrapper h2 {
    font-size: 2.5rem;
    color: #558B2F;
    margin-bottom: 20px;
    font-weight: 800;
}

.content-wrapper > p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.service-item {
    background: white;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid #7ead57;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.service-item h3 {
    color: #3a6b35;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.service-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-section {
    background: linear-gradient(135deg, #3a6b35 0%, #558B2F 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin-bottom: 50px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.btn-contact {
    display: inline-block;
    background-color: #7ead57;
    color: white;
    padding: 14px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 700;
    transition: transform 0.2s, background-color 0.3s;
}

.btn-contact:hover {
    background-color: #6a9543;
    transform: scale(1.05);
}

.back-to-services {
    text-align: center;
    padding: 30px 40px;
}

.back-link {
    color: #558B2F;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.back-link:hover {
    color: #7ead57;
    text-decoration: underline;
}

.footer-service {
    background-color: #f5f5f5;
    border-top: 1px solid #eee;
    padding: 30px 0;
    margin-top: 60px;
}

.footer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer-content p {
    color: #666;
    margin-bottom: 15px;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #558B2F;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #7ead57;
}

@media (max-width: 768px) {
    .header-container {
        padding: 0 20px;
        height: 70px;
    }

    .header-logo {
        height: 45px;
    }

    .page-title {
        font-size: 1.5rem;
    }

    .icon-btn {
        height: 40px;
    }

    .service-hero {
        height: 300px;
    }

    .service-content {
        padding: 0 20px 40px;
    }

    .content-wrapper h2 {
        font-size: 1.8rem;
    }

    .content-wrapper > p {
        font-size: 1rem;
    }

    .services-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .cta-section {
        padding: 30px 20px;
    }

    .footer-content {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .header-container {
        padding: 0 15px;
        flex-wrap: wrap;
        gap: 10px;
    }

    .header-logo {
        height: 40px;
    }

    .page-title {
        font-size: 1.2rem;
        width: 100%;
        order: -1;
    }

    .icon-btn {
        height: 35px;
    }

    .service-hero {
        height: 200px;
    }

    .service-content {
        padding: 0 15px 30px;
    }

    .content-wrapper h2 {
        font-size: 1.5rem;
    }

    .content-wrapper > p {
        font-size: 0.95rem;
    }

    .service-item {
        padding: 20px;
    }

    .service-item h3 {
        font-size: 1.1rem;
    }

    .cta-section {
        padding: 25px 15px;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .btn-contact {
        padding: 12px 30px;
        font-size: 1rem;
    }
}
