/* css/service-details.css */
.service-page {
    padding-top: 40px;
    padding-bottom: 80px;
    min-height: 60vh;
    background-color: var(--color-bg);
}

.service-header {
    text-align: center;
    margin-bottom: 60px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    padding: 60px 20px;
    border-radius: var(--radius-lg);
    color: white;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.service-header h1 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

@media (min-width: 768px) {
    .service-header h1 {
        font-size: 3.5rem;
    }
}

.service-content {
    position: relative;
    z-index: 2;
}

.service-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-bottom: 20px;
}

.back-button-container {
    margin-top: 60px;
    text-align: center;
}

/* Responsive adjustments for inner content */
.service-content > div {
    margin-bottom: 40px;
}
