.service-detail-container {
    padding: 4rem 0;
}

.service-image {
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.service-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 168, 255, 0.2);
}

.service-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: white;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.benefits-list {
    list-style: none;
    padding-left: 0;
}

.benefit-item {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: flex-start;
}

.benefit-icon {
    color: var(--accent);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
}

@media (max-width: 768px) {
    .service-detail-container {
        padding: 2rem 0;
    }
    
    .service-title {
        font-size: 2rem;
    }
    
    .service-description {
        font-size: 1rem;
    }
}
