.services-page-bg {
    background-color: #10222C;
    background-image: repeating-linear-gradient(45deg, rgba(255,255,255,0.02) 0px, rgba(255,255,255,0.02) 2px, transparent 2px, transparent 14px);
    min-height: 100vh;
    padding-top: 60px;
}
.services-wrap {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px 80px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}
.services-wrap .page-header { text-align: center; margin-bottom: 50px; }
.services-wrap .title-line-wrap { display: flex; align-items: center; justify-content: center; gap: 20px; margin-bottom: 16px; }
.services-wrap .title-line { width: 100px; max-width: 20vw; height: 1px; background: rgba(255,255,255,0.4); }
.services-wrap .page-header h1 { color: #FFFFFF; font-size: 32px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 0; white-space: nowrap; }
.services-wrap .page-header p { color: #A9C2CE; font-size: 16px; }

.faq-list { display: flex; flex-direction: column; gap: 14px; }

.faq-item {
    background: #1B3A4B;
    border-left: 3px solid #2E8B7A;
    border-radius: 8px;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    padding: 18px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-icon {
    color: #4FB3A0;
    font-size: 20px;
    transition: transform 0.2s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}
.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}
.faq-answer p {
    color: #C9D9DE;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* CONTACT + IMAGE SECTION */
.faq-extra {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 50px;
}
.faq-image-box img {
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.faq-contact-box {
    background: #1B3A4B;
    border-top: 3px solid #2E8B7A;
    border-radius: 12px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}
.faq-contact-box h3 {
    color: #4FB3A0;
    font-size: 20px;
    margin-bottom: 10px;
}
.faq-contact-box p {
    color: #C9D9DE;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
}
.faq-contact-btn {
    display: inline-block;
    background: #F4F8FA;
    color: #1B3A4B;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 4px;
    text-decoration: none;
    width: fit-content;
}
.faq-contact-btn:hover { background: #4FB3A0; color: #FFFFFF; }

@media (max-width: 600px) {
    .services-wrap .title-line { width: 30px; }
    .services-wrap .page-header h1 { font-size: 22px; white-space: normal; }
    .faq-extra { grid-template-columns: 1fr; }
}