:root {
    --primary-blue: #0066cc;
    --primary-blue-hover: #0052a3;
    --dark-navy: #1a2332;
    --text-color: #2c3e50;
    --cyan-green: #11edd5;
    --cta-yellow: #FFD700;
    --cta-yellow-dark: #F4C430;
    --cta-text: #1a2332;
}

* {
    box-sizing: border-box;
}

html {
    font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
}

.btn {
    cursor: pointer;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
    border-radius: 5px;
    line-height: 50px;
    padding: .375rem .75rem;
}

#zip,
.cta-form-1,
.cta-form,
.cta-form-2 {
    margin-top: 30px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-left: 0;
    text-align: center;
    border-right: 0;
    padding: 30px 0 40px 0;
}

#zip label,
.cta-form-1 label,
.cta-form label,
.cta-form-2 label,
#zip .cta,
.cta-form-1 .cta,
.cta-form .cta,
.cta-form-2 .cta {
    font-size: 20px;
    font-weight: bold;
    letter-spacing: 0;
    line-height: 22px;
}

#zip input,
.cta-form-1 input,
.cta-form input,
.cta-form-2 input,
#zip .btn,
.cta-form-1 .btn,
.cta-form .btn,
.cta-form-2 .btn {
    height: 60px;
    text-align: center;
    width: 100%;
}

#zip input,
.cta-form-1 input,
.cta-form input,
.cta-form-2 input {
    height: 62px;
    border: 1px solid #D8D8D8;
    border-radius: 5px;
    background-color: #F7F7F7;
    font-size: 16px;
    letter-spacing: 1.33px;
    line-height: 14px;
    text-align: center;
    display: block;
    margin: 0 15px;
    margin: 15px auto;
    width: 100%;
}

#zip input:focus,
.cta-form-1 input:focus,
.cta-form input:focus,
.cta-form-2 input:focus {
    outline: none;
}

#zip .btn,
.cta-form-1 .btn,
.cta-form .btn,
.cta-form-2 .btn {
    display: block;
    text-align: center;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    line-height: 50px;
    border: 3px solid var(--cta-text);
    border-radius: 6px;
    background-color: var(--cta-yellow);
    color: var(--cta-text);
    vertical-align: middle;
    white-space: nowrap;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

#zip .btn:hover,
.cta-form-1 .btn:hover,
.cta-form .btn:hover,
.cta-form-2 .btn:hover {
    background-color: var(--cta-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.25);
}

@media (min-width:768px) {

    #zip,
    .cta-form-1,
    .cta-form,
    .cta-form-2 {
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: left;
        padding: 35px 0;
    }

    #zip input,
    .cta-form-1 input,
    .cta-form input,
    .cta-form-2 input {
        margin: 0 20px;
        max-width: 215px;
    }

    #zip .btn,
    .cta-form-1 .btn,
    .cta-form .btn,
    .cta-form-2 .btn {
        max-width: 220px;
    }
}

p {
    margin-bottom: 20px;
}

html,
body {
    overflow-x: hidden;
}

a {
    color: var(--primary-blue);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.inline-link {
    color: var(--primary-blue);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.2s ease;
}

.inline-link:hover {
    color: var(--cta-yellow-dark);
    text-decoration: underline;
}

.footer {
    text-align: center;
    margin-top: 70px;
    padding: 20px 0;
    padding-top: 40px;
    font-size: 12px;
}

.footer .links {
    margin-bottom: 10px;
    font-size: 18px;
}

.footer .links a {
    margin-left: 10px;
    text-decoration: none;
}

.footer .links a:hover {
    text-decoration: underline;
}

.footer .copy {
    margin-bottom: 15px;
}

html,
body,
#root,
.page-wrapper {
    height: 100%;
    margin: 0;
    background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
    margin: 0;
}

* {
    box-sizing: border-box !important;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    padding: 0 15px;
    margin: 0 auto;
}

.main {
    padding-bottom: 15px;
}

.button_container {
    margin: 30px 0 0 0;
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 10px;
}

.button_container p {
    margin: 0 !important;
}

.green_button {
    background: var(--cta-yellow);
    color: var(--cta-text);
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    min-height: 60px;
    cursor: pointer;
    border: 3px solid var(--cta-text);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.green_button:hover {
    background: var(--cta-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.4);
}

/* Header */
.header-container {
    position: relative;
    background-color: var(--dark-navy);
    padding: 7px 15px;
}

@media (min-width:768px) {
    .header-container {
        padding: 20px 30px;
    }
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-wrap {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
}

@media (min-width:768px) {
    .logo-wrap {
        justify-content: space-between;
    }
}

.logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    letter-spacing: -1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    background: #fff;
    color: var(--primary-blue);
    padding: 8px 12px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 20px;
    letter-spacing: 1px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-text {
    display: none;
}

@media (min-width:768px) {
    .logo {
        font-size: 28px;
    }

    .logo-text {
        display: inline;
    }
}

.logo img {
    display: block;
    height: 35px;
}

@media (min-width:768px) {
    .logo img {
        height: 60px;
    }
}

.header-ad {
    display: none;
}

@media (min-width:768px) {
    .header-ad {
        display: block;
    }

    .header-ad p {
        display: flex;
        flex-direction: column;
        font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
        text-align: right;
        color: #fff;
        font-size: 20px;
        letter-spacing: 0;
        line-height: 22px;
        margin-bottom: 0;
    }

    .header-ad p .punch {
        font-size: 16px;
    }

    .header-ad a.header-cta-link {
        color: var(--cta-yellow);
        text-decoration: underline;
        font-weight: 700;
        transition: color 0.2s ease;
    }

    .header-ad a.header-cta-link:hover {
        color: var(--cta-yellow-dark);
        text-decoration: underline;
    }
}

/* Container */
.page-container {
    padding: 0 15px;
    max-width: 975px;
    margin: 0 auto;
}

@media (min-width:600px) {
    .page-container {
        padding: 0 30px;
    }
}

/* Headline */
.headline {
    text-align: center;
    padding-top: 20px;
}

.headline h1 {
    font-weight: 400;
    color: rgba(30, 30, 30, 0.9);
    font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
    font-size: 24px;
    letter-spacing: 0;
    line-height: 30px;
    margin-bottom: 10px;
}

.headline h2 {
    font-weight: 400;
    color: rgba(30, 30, 30, 0.9);
    font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
    font-size: 16px;
    letter-spacing: 0;
    line-height: 20px;
    margin-bottom: 0;
}

@media (min-width:768px) {
    .headline {
        padding-top: 40px;
    }

    .headline h1 {
        font-size: 58px;
        letter-spacing: 0;
        line-height: 64px;
        margin-bottom: 20px;
    }

    .headline h2 {
        font-size: 28px;
        letter-spacing: 0;
        line-height: 28px;
    }
}

/* Content */
.content {
    padding-top: 20px;
}

@media (min-width:960px) {
    .content {
        padding-top: 30px;
    }
}

.headline-sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.author {
    color: rgba(0, 0, 0, 0.6);
    height: 32px;
    display: flex;
    align-items: center;
    font-size: 10px;
    font-weight: 300;
    white-space: nowrap;
}

.author .line {
    height: 70%;
    width: 1px;
    margin: 0 10px;
    background-color: rgba(0, 0, 0, 0.2);
}

@media (min-width:768px) {
    .author {
        font-size: 12px;
    }
}

/* Article */
.article {
    font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
    color: #1E1E1E;
    font-size: 15px;
    letter-spacing: 0;
    line-height: 25px;
    margin-top: -10px;
}

@media (min-width:768px) {
    .article {
        font-size: 20px;
        letter-spacing: 0;
        line-height: 36px;
    }
}

.article ul {
    padding-left: 40px;
    margin: 20px 0;
}

.article h1,
.article h2,
.article h3,
.article h4 {
    margin-top: 75px;
    margin-bottom: 20px;
}

.article h1 {
    font-family: 'Baskerville', 'Baskerville Old Face', 'Hoefler Text', 'Times New Roman', serif;
    color: rgba(30, 30, 30, 0.9);
    font-size: 22px;
    line-height: 28px;
}

@media (min-width:768px) {
    .article h1 {
        font-size: 32px;
        letter-spacing: 0;
        line-height: 30px;
    }
}

.article h2 {
    font-size: 20px;
    line-height: 28px;
}

@media (min-width:768px) {
    .article h2 {
        font-size: 30px;
        letter-spacing: 0;
        line-height: 30px;
    }
}

.article p {
    margin: 15px 0;
}

@media (min-width:768px) {
    .article p {
        margin: 20px 0;
    }
}

.article blockquote {
    margin-top: 20px;
    font-size: 16px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 30px;
    color: #1E1E1E;
    font-weight: 500;
    font-style: italic;
    padding: 20px 30px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-left: 0;
    border-right: 0;
}

.article blockquote p {
    margin: 0;
    padding: 0;
}

.featured-img {
    width: 100%;
    max-width: 940px;
    height: auto;
    display: block;
    margin: 20px auto;
    border-radius: 8px;
}

@media (min-width:768px) {
    .article blockquote {
        font-size: 22px;
        font-style: italic;
        font-weight: bold;
        letter-spacing: 0;
        line-height: 30px;
        padding: 35px 70px;
    }
}

.article .fbtn {
    text-align: center;
    display: block;
    border: 3px solid var(--cta-text);
    border-radius: 6px;
    color: var(--cta-text);
    background-color: var(--cta-yellow);
    margin: 40px auto;
    max-width: 500px;
    height: 70px;
    line-height: 64px;
    padding: 0 30px;
    font-size: 22px;
    font-weight: 700;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 6px 16px rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.article .fbtn:hover {
    background-color: var(--cta-yellow-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
    text-decoration: none;
}

@media (min-width:500px) {
    .article .fbtn {
        font-size: 22px;
    }
}

/* Footer */
.footer-wrap {
    flex-shrink: 0;
    background: white;
    display: flex;
    flex-direction: column;
    padding-bottom: 30px;
}

.footer-content {
    padding: 20px 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-content span,
.footer-content a {
    white-space: nowrap;
    padding: 0 5px;
    font-size: 18px;
    line-height: 1.5em;
    color: #554a4a;
}

@media (min-width:600px) {
    .footer-content {
        flex-direction: row;
    }
}

.footer-group {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (min-width:390px) {
    .footer-group {
        flex-direction: row;
    }
}

.footer-logo {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-color);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.footer-logo-icon {
    background: var(--dark-navy);
    color: #fff;
    padding: 6px 10px;
    border-radius: 6px;
    font-weight: 900;
    font-size: 16px;
    letter-spacing: 1px;
}

.footer-logo-text {
    display: none;
}

@media (min-width:768px) {
    .footer-logo-text {
        display: inline;
    }
}

/* Legal Disclaimers */
.legal-disclaimers {
    max-width: 940px;
    margin: 40px auto 20px;
    padding: 30px 20px;
    background: #f8f9fb;
    border-top: 3px solid #e1e8ed;
    font-size: 11px;
    line-height: 1.6;
    color: #666;
}

.disclaimer-section {
    margin-bottom: 20px;
}

.disclaimer-section:last-child {
    margin-bottom: 0;
}

.disclaimer-section p {
    margin: 0;
    text-align: left;
}

.disclaimer-section strong {
    color: #1a2332;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
}

.disclaimer-small {
    font-size: 10px;
    font-style: italic;
    color: #888;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

@media (min-width:768px) {
    .legal-disclaimers {
        font-size: 12px;
        padding: 40px 60px;
    }
}

/* Floating CTA Bubble */
.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    animation: float-bounce 3s ease-in-out infinite;
    pointer-events: none;
    /* Container doesn't block clicks */
}

.floating-cta-button {
    background: linear-gradient(135deg, var(--cta-yellow) 0%, var(--cta-yellow-dark) 100%);
    color: var(--cta-text);
    padding: 20px 28px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 24px rgba(255, 215, 0, 0.5);
    border: 3px solid var(--cta-text);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    pointer-events: auto;
    /* Button itself is clickable */
    position: relative;
    /* Ensure proper stacking */
    z-index: 1;
    /* Above pulse ring */
}

.floating-cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(255, 215, 0, 0.6);
    text-decoration: none;
}

.pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border: 3px solid var(--cta-yellow);
    border-radius: 50px;
    animation: pulse-ring 2s ease-out infinite;
    opacity: 0;
    pointer-events: none;
    /* Don't block clicks on the button */
}

.cta-icon {
    font-size: 24px;
    animation: wiggle 1s ease-in-out infinite;
}

@keyframes float-bounce {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse-ring {
    0% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0;
    }
}

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-10deg);
    }

    75% {
        transform: rotate(10deg);
    }
}

@media (max-width: 768px) {
    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-cta-button {
        padding: 16px 22px;
        font-size: 14px;
    }

    .cta-icon {
        font-size: 20px;
    }
}

/* Hide floating CTA when near age selection to avoid overlap */
@media (max-width: 768px) {
    .floating-cta.hidden {
        display: none;
    }
}