body {
    background: #ffff;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #222;
}

.faq-hero {
    background: #1E5359;
    color: #fff;
    padding: 3rem 0 2rem 0;
    text-align: center;
    position: relative;
    margin-top: 3.5rem;
}
.faq-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #1E5359 url('/static/images/focus.jpeg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}
.faq-hero-content {
    position: relative;
    z-index: 2;
}
.faq-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.faq-hero p {
    font-size: 1.2rem;
    margin: 0 auto;
    max-width: 600px;
}

.faq-how-steps {
    background: #fff;
    padding: 2.5rem 0 2rem 0;
    text-align: center;
}
.faq-section-title {
    color: #1E5359;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.faq-steps-row {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.faq-step {
    background: #f4f8f6;
    border-radius: 16px;
    box-shadow: 0 2px 8px rgba(33,147,106,0.07);
    padding: 2rem 1.5rem 1.5rem 1.5rem;
    width: 220px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.2s;
}
.faq-step:hover {
    box-shadow: 0 4px 16px rgba(33,147,106,0.13);
}
.faq-step-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.faq-step h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1E5359;
}
.faq-step p {
    font-size: 1rem;
    color: #444;
}

.faq-section {
    background: #fff;
    margin: 2rem auto 3rem auto;
    max-width: 800px;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(33,147,106,0.07);
    padding: 2.5rem 2rem 2rem 2rem;
}
.faq-list {
    margin-top: 1.5rem;
}
.faq-item {
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
}
.faq-item:last-child {
    border-bottom: none;
}
.faq-q {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1E5359;
    margin-bottom: 0.5rem;
}
.faq-a {
    font-size: 1rem;
    color: #333;
    margin-left: 0.5rem;
}

@media (max-width: 900px) {

    .faq-hero-content {
        margin-top: 1rem;
    }
    .faq-steps-row {
        flex-direction: column;
        align-items: center;
    }
    .faq-step {
        width: 90%;
    }
    .faq-section {
        padding: 1.5rem 0.5rem;
    }
}
