/* Service Page Specific Styles */
.service-page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
    margin-top: 70px; /* To account for fixed header */
}

.service-page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.service-page-hero p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.service-content {
    padding: 80px 0;
    background: var(--white);
}

.service-content .container {
    max-width: 900px;
}

.service-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.service-content p {
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.service-content ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.service-content ol {
    list-style: decimal;
    margin-left: 20px;
    margin-bottom: 1.5rem;
}

.service-content li {
    margin-bottom: 0.5rem;
}

.service-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.cta-section {
    background: var(--light-gray);
    padding: 60px 0;
    text-align: center;
}

.cta-section h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .service-page-hero {
        padding: 80px 0 40px;
    }

    .service-page-hero h1 {
        font-size: 2.2rem;
    }

    .service-page-hero p {
        font-size: 1rem;
    }

    .service-content {
        padding: 60px 0;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .cta-section h3 {
        font-size: 1.8rem;
    }

    .cta-section p {
        font-size: 1rem;
    }

    .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

