/* ---- Service Page Banner ---- */
.service-page-banner {
    max-width: 1200px;
    margin: 50px auto 40px auto;
    padding: 50px 35px;
    background: rgba(252, 252, 252, 0.75);
    border: 1.2px solid var(--border-light);
    border-radius: 20px;
}

.banner-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.banner-text {
    flex: 1;
    min-width: 300px;
}

.banner-text h1 {
    font-size: 2.7rem;
    font-weight: bold;
    color: var(--pepper-dark);
    margin-bottom: 12px;
    line-height: 1.2;
}

.service-subtitle {
    font-size: 1.3rem;
    color: var(--accent-blue);
    font-weight: 600;
    margin-bottom: 9px;
    font-style: italic;
}

.service-description {
    font-size: 1.09rem;
    color: var(--pepper-steel);
    margin-bottom: 18px;
    line-height: 1.7;
}

.service-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 22px;
}

.service-highlights span {
    background: rgba(22, 102, 228, 0.1);
    color: var(--accent-blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.93rem;
    font-weight: 500;
    border: 1px solid rgba(22, 102, 228, 0.2);
    display: flex;
    align-items: center;
}

.service-highlights i {
    margin-right: 6px;
}

.cta-button {
    display: inline-block;
    background: var(--accent-blue);
    color: white;
    padding: 14px 27px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: background 0.19s;
    box-shadow: 0 3px 10px rgba(22, 102, 228, 0.11);
}

.cta-button:hover {
    background: var(--pepper-charcoal);
    color: var(--salt-white);
}

.banner-image {
    flex: 1;
    min-width: 270px;
}

.banner-image img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(43, 43, 43, 0.1);
}

/* ---- Service Details Section ---- */
.service-details {
    max-width: 1100px;
    margin: 40px auto;
    padding: 45px 35px;
    background: rgba(252, 252, 252, 0.75);
    border-radius: 20px;
    border: 1.2px solid var(--border-light);
}

.service-details h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--pepper-dark);
    margin: 34px 0 17px 0;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--salt-silver);
}

.service-details h2:first-child {
    margin-top: 0;
    border-bottom: none;
}

.service-details p {
    font-size: 1.09rem;
    line-height: 1.7;
    color: var(--pepper-dark);
    margin-bottom: 18px;
}

.service-details ul {
    margin: 18px 0 24px 0;
    padding-left: 0;
    list-style: none;
}

.service-details ul li {
    font-size: 1.03rem;
    line-height: 1.6;
    color: var(--pepper-dark);
    margin-bottom: 9px;
    padding-left: 25px;
    position: relative;
}

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
    font-size: 1.09rem;
}

/* --- Process Steps --- */
.process-steps {
    margin: 28px 0 36px 0;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 25px;
    background: rgba(255, 255, 255, 0.56);
    border-radius: 15px;
    padding: 16px 19px;
    border-left: 4px solid var(--accent-blue);
}

.step-number {
    background: var(--accent-blue);
    color: white;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.13rem;
    color: var(--pepper-dark);
    margin-bottom: 6px;
}

.step-content p {
    font-size: 1.02rem;
    color: var(--pepper-steel);
}

/* --- FAQ Section --- */
.faq-section {
    max-width: 900px;
    margin: 45px auto;
    padding: 32px 23px;
    background: rgba(252, 252, 252, 0.72);
    border-radius: 20px;
    border: 1.2px solid var(--border-light);
}

.faq-section h2 {
    font-size: 1.4rem;
    color: var(--pepper-dark);
    text-align: center;
    margin-bottom: 25px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 19px;
}

.faq-item {
    background: rgba(255, 255, 255, 0.74);
    padding: 17px 16px;
    border-radius: 12px;
    border: 1px solid var(--border-light);
}

.faq-item h3 {
    font-size: 1.09rem;
    color: var(--pepper-dark);
    margin-bottom: 6px;
}

.faq-item p {
    font-size: 1rem;
    color: var(--pepper-steel);
    margin: 0;
    line-height: 1.5;
}

/* --- Responsive --- */
@media (max-width: 700px) {

    .service-page-banner,
    .service-details,
    .faq-section {
        margin: 19px 2vw 25px 2vw;
        padding: 22px 9vw;
        max-width: 96vw;
    }

    .banner-content {
        flex-direction: column;
        gap: 20px;
    }

    .banner-text h1 {
        font-size: 2.0rem;
    }

    .service-subtitle {
        font-size: 1.05rem;
    }

    .banner-image img {
        height: 200px;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .step {
        flex-direction: column;
    }
}
