/* Astra Child - Custom styles for brochure look */

/* Typography */
h1, h2, h3, .has-primary-blue-color { color: #163B65; }
body { font-family: 'Lato', Arial, sans-serif; color: #5C6B80; }

/* Hero Band */
.hero-band {
    background: #F4B532;
    padding: 60px 50px;
    border-radius: 8px;
}

/* Primary Button */
.btn-primary {
    background: #00ADEE;
    color: white;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}
.btn-primary:hover { filter: brightness(0.95); }

/* Secondary Button */
.btn-secondary {
    background: white;
    color: #163B65;
    border: 2px solid #163B65;
    padding: 14px 22px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
}

/* Service Cards */
.service-card {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    padding: 30px;
    text-align: center;
}

/* FAQ */
.faq-item__title {
    background: #163B65;
    color: white;
    padding: 14px 20px;
    font-weight: 700;
    border-radius: 6px 6px 0 0;
}
.faq-item__body {
    background: white;
    padding: 20px;
    border: 1px solid #E4EAF1;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

/* CTA Strip */
.cta-strip {
    background: #F4B532;
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Responsive helpers */
@media (max-width: 768px) {
    .hero-band { padding: 32px 20px; }
    .cta-strip { padding: 24px; flex-direction: column; gap: 16px; text-align: center; }
}
