/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #2f2f2f;
    background-color: #f0f0f0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 0px 15px;
    background:white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 10px 0 40px;
}

/* Headline */
.headline {
    font-family: Ubuntu, Helvetica, sans-serif !important;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    margin-top:10px;
    margin-bottom: 0px;
    color: #000000;
}

/* Show image on mobile and tablet, hide text */
.headline-image {
    display: block;
    width: 100%;
    max-width: 600px;
    height: auto;
    margin: 0 auto;
}

.headline-text {
    display: none;
}

.highlight {
    color: #fb0000;
}

/* Image Container */
.image-container {
    margin: 10px auto;
    max-width: 95%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    -webkit-box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.4);
    -moz-box-shadow: 0 2px 5px 2px rgba(0,0,0,0.4);
    box-shadow: 0 2px 5px 2px rgba(0, 0, 0, 0.4);
    margin: 0 auto;
}

/* CTA Button */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: #F6AD43;
    color: #2c2c2c;
    font-family: 'Ubuntu', Helvetica, sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    padding: 10px 50px;
    border-radius: 8px;
    margin: 15px auto 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
    max-width: 90%;
    width: auto;
    border: none;
    outline: none;
}

.cta-button::before {
    content: '';
    width: 30px;
    height: 30px;
    background-color: #2c2c2c;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 5;
}

.cta-button::after {
    content: '\25B6\FE0E';
    position: absolute;
    left: 58px;
    top: 50%;
    transform: translateY(-50%);
    color: #E2A857;
    font-size: 19px;
    line-height: 1;
    pointer-events: none;
    z-index: 10;
}

.cta-button:hover {
    background: #D89A45;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.cta-button:active {
    transform: translateY(0);
}

/* Content Section */
.content {
    margin-top: 0px;
    text-align: left;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.intro-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #2f2f2f;
}

.body-text {
    font-size: 18px;
    line-height: 23.4px;
    margin-bottom: 25px;
    color: #2f2f2f;
}

.content strong {
    font-weight: 700;
    color: #000000;
}

/* CTA Link */
.cta-link {
    display: inline-block;
    color: rgb(0, 0, 238);
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    margin-top: 10px;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #0038ff;
    text-decoration: underline;
}

/* Footer */
.footer {
    background-color: #f8f8f8;
    padding: 40px 20px;
    margin-top: 0px;
    text-align: center;
}

.copyright {
    font-size: 14px;
    color: #c6c6c6;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.footer-nav a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
    white-space: nowrap;
    font-weight: bold;
    
}

.footer-nav a:hover {
    color: #0038ff;
    text-decoration: underline;
}

.disclaimers {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0px;
}

.disclaimer-text {
    font-size: 11px;
    line-height: 1.6;
    color: #bbb;
    margin-bottom: 15px;
    text-align: left;
}

/* Tablet styles (481px and up) */
@media screen and (min-width: 481px) {
    .container {
        padding: 30px 24px;
    }

    .headline {
        font-size: 36px;
    }

    .hero-image {
        max-width: 400px;
    }

    .cta-button {
        font-size: 28px;
        padding: 20px 60px;
        max-width: 450px;
    }

    .cta-button::before {
        width: 50px;
        height: 50px;
    }

    .cta-button::after {
        left: 78px;
        font-size: 18px;
    }

    .intro-text {
        font-size: 19px;
    }

    .body-text {
        font-size: 18px;
    }

    .footer-nav {
        gap: 20px;
    }
}

/* Desktop styles (768px and up) */
@media screen and (min-width: 768px) {
    .container {
        padding: 40px 30px 60px;
        max-width: 1150px;
    }

    .hero {
        padding: 0 10px;
    }

    .headline {
        font-size: 56px;
        margin-top: 0;
        margin-bottom: 30px;
        line-height: 1.2;
        font-weight: 900;
        max-width: 100%;
    }

    /* Hide image and show text on desktop */
    .headline-image {
        display: none;
    }

    .headline-text {
        display: block;
    }

    .hero-image {
        max-width: 90%;
        width: 100%;
    }

    .image-container {
        margin: 20px auto 30px;
    }

    .cta-button {
        font-size: 32px;
        padding: 18px 60px;
        margin: 30px auto 30px;
        max-width: 450px;
        gap: 15px;
    }

    .cta-button::before {
        width: 55px;
        height: 55px;
    }

    .cta-button::after {
        left: 78px;
        font-size: 20px;
    }

    .content {
        margin-top: 0px;
        max-width: 100%;
        text-align: left;
    }

    .intro-text {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .body-text {
        font-size: 20px;
        margin-bottom: 25px;
        line-height: 1.7;
    }

    .cta-link {
        font-size: 23px;
        padding-left: 2px;
    }

    .footer {
        padding: 50px 30px;
    }

    .copyright {
        font-size: 15px;
    }

    .footer-nav {
        gap: 25px;
    }

    .footer-nav a {
        font-size: 14px;
    }

    .disclaimer-text {
        font-size: 12px;
    }
}

/* Large desktop styles (960px and up) */
@media screen and (min-width: 960px) {
    .container {
        padding: 10px 00px 80px;
        max-width: 960px;
    }

    .hero {width: 844px; margin:0 auto;}

    .headline {
        font-size: 48px;
        margin-bottom: 15px;
        margin-top:15px;
        line-height: 50px;
    }

    .image-container {
        margin: 15px auto 10px;
    }

    .cta-button {
        font-size: 34px;
        padding: 15px 60px;
        max-width: 500px;
    }

    .cta-button::before {
        width: 58px;
        height: 58px;
    }

    .cta-button::after {
        left: 82px;
        font-size: 21px;
    }

    .intro-text,
    .body-text {
        font-size: 22px;
        line-height: 1.30;
    }
}

/* Extra small mobile optimization (below 375px) */
@media screen and (max-width: 374px) {
    .headline {
        font-size: 24px;
    }

    .hero-image {
        max-width: 280px;
    }

    .cta-button {
        font-size: 20px;
        padding: 16px 25px;
        gap: 12px;
    }

    .cta-button::before {
        width: 40px;
        height: 40px;
    }

    .cta-button::after {
        left: 42px;
        font-size: 14px;
    }

    .intro-text,
    .body-text {
        font-size: 16px;
    }

    .footer-nav {
        flex-direction: column;
        gap: 12px;
    }

    .footer-nav a {
        font-size: 12px;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #0a6dff;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .footer {
        page-break-before: always;
    }

    .cta-button {
        display: none;
    }
}
