.service-content {
    margin-top: 50px;
    padding-bottom: 20px;
}

.service-banner {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-text {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 100%);
    color: #fff;
}

.banner-text h2 {
    font-size: 20px;
    margin-bottom: 5px;
}

.banner-text p {
    font-size: 13px;
    opacity: 0.9;
}

.service-list {
    padding: 20px 15px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 15px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.service-icon {
    width: 48px;
    height: 48px;
    background-color: #fff5e6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    color: #97652B;
}

.service-info h3 {
    font-size: 16px;
    color: #333;
    margin-bottom: 5px;
}

.service-info p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.contact-section {
    margin: 20px 15px;
    padding: 25px;
    background: linear-gradient(135deg, #97652B 0%, #c49965 100%);
    border-radius: 12px;
    text-align: center;
    color: #fff;
}

.contact-section h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-section p {
    font-size: 13px;
    opacity: 0.9;
    margin-bottom: 20px;
}

.contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background-color: #fff;
    color: #97652B;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: transform 0.2s;
}

.contact-btn:active {
    transform: scale(0.95);
}

.contact-btn svg {
    width: 18px;
    height: 18px;
}
