.service-section {
    padding: 80px 0;
    font-family: 'Inter', sans-serif;
}

.service-title {
    font-family: 'Pattaya', sans-serif;
    font-size: 48px;
    color: #145a44;
    margin-bottom: 30px;
    text-align: center;
}

.service-desc {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.service-image-wrap {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-image-wrap:hover {
    transform: scale(1.02);
}

.service-image {
    width: 100%;
    height: auto;
    display: block;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 12px 16px;
    margin-bottom: 12px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    font-size: 17px;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s;
}

.service-list li:hover {
    transform: translateX(10px);
    background: #f8fafc;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.service-feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0;
}

.btn-service-cta {
    background: #145a44;
    color: #fff;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.btn-service-cta:hover {
    background: #1e8564;
    color: #fff;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(20, 90, 68, 0.2);
}

@media (max-width: 991px) {
    .service-title {
        font-size: 36px;
    }

    .service-desc {
        font-size: 16px;
    }

    .service-list li {
        font-size: 15px;
    }
}