/* ASF Medicare Content — Frontend Styles */
:root {
    --asf-blue: #1a73e8;
    --asf-blue-dark: #1557b0;
    --asf-blue-light: #e8f0fe;
    --asf-text: #333;
    --asf-text-light: #666;
    --asf-bg-gray: #f8f9fa;
    --asf-white: #fff;
    --asf-green: #0d904f;
    --asf-radius: 8px;
    --asf-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.asf-cta-banner {
    background: linear-gradient(135deg, var(--asf-blue) 0%, var(--asf-blue-dark) 100%);
    color: var(--asf-white); padding: 32px; border-radius: var(--asf-radius);
    text-align: center; margin: 32px 0;
}
.asf-cta-text { font-size: 18px; margin-bottom: 16px; font-weight: 500; }
.asf-cta-button {
    display: inline-block; background: var(--asf-white); color: var(--asf-blue);
    padding: 14px 36px; border-radius: 50px; font-size: 20px; font-weight: 700;
    text-decoration: none; transition: all 0.3s ease; box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.asf-cta-button:hover { background: var(--asf-blue-light); transform: translateY(-2px); color: var(--asf-blue-dark); }
.asf-cta-icon { margin-right: 8px; }
.asf-cta-subtext { font-size: 13px; margin-top: 12px; opacity: 0.85; }
.asf-cta-urgency {
    display: inline-block; background: #e8710a; color: var(--asf-white);
    padding: 6px 16px; border-radius: 4px; font-size: 14px; font-weight: 600;
    margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.5px;
}
.asf-cta-inline {
    display: block; background: var(--asf-blue-light); border-left: 4px solid var(--asf-blue);
    padding: 16px 20px; margin: 24px 0; border-radius: 0 var(--asf-radius) var(--asf-radius) 0; font-size: 16px;
}
.asf-cta-inline .asf-cta-phone-link { color: var(--asf-blue); font-weight: 700; text-decoration: none; }
.asf-cta-inline .asf-cta-phone-link:hover { text-decoration: underline; }
.asf-phone-link { color: var(--asf-blue); font-weight: 700; text-decoration: none; white-space: nowrap; }
.asf-phone-link:hover { text-decoration: underline; }

.asf-faq-item { border: 1px solid #e0e0e0; border-radius: var(--asf-radius); margin-bottom: 8px; overflow: hidden; }
.asf-faq-question {
    padding: 16px 20px; cursor: pointer; font-weight: 600; font-size: 16px; color: var(--asf-text);
    background: var(--asf-white); display: flex; justify-content: space-between; align-items: center;
}
.asf-faq-question:hover { background: var(--asf-bg-gray); }
.asf-faq-question::after { content: '+'; font-size: 20px; color: var(--asf-blue); }
.asf-faq-item.open .asf-faq-question::after { content: '−'; }
.asf-faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; color: var(--asf-text-light); line-height: 1.7; }
.asf-faq-item.open .asf-faq-answer { padding: 0 20px 20px; max-height: 500px; }
