/* Service Pages Specific Styling */
.service-detail-header {
    position: relative;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    margin-bottom: 60px;
    color: #fff;
}

.service-detail-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-icon-large {
    font-size: 5rem;
    margin-bottom: 30px;
}

.service-section {
    padding: 50px 0;
}

.service-image {
    border-radius: 6px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.benefit-card {
    padding: 25px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    position: relative;
    margin-top: 40px;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: -40px;
    left: 30px;
    border: 4px solid #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.service-cta {
    background-color: #f1f5f9;
    padding: 60px 0;
    border-radius: 8px;
    margin: 60px 0;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    padding: 15px 20px;
    background-color: #f8f9fa;
    border-radius: 6px;
    position: relative;
}

.faq-answer {
    padding: 15px 20px;
    display: none;
}

/* Related services section */
.related-services {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.related-service-card {
    padding: 20px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    background-color: #fff;
    height: 100%;
    transition: all 0.3s ease;
}

.related-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.white-text {
    color: #fff !important;
}

