/* Font Face Declarations */
@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('../fonts/Poppins-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFF5EB;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Announcement Bar */
.announcement-bar {
    background-color: #fff;
    text-align: center;
    padding: 12px 8px;
}

.announcement-bar p {
    margin: 0;
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

/* Navigation */
.navigation {
    background-color: #fff6eb;
    padding: 20px 0 0 0;
}

.logo img {
    max-width: 100%;
    width: 16%;
    display: block;
}

/* Hero Section */
.hero {
    padding: 20px 0 60px 0;
    background: linear-gradient(180deg, #FFF5EB 0%, #fff 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-title {
    font-size: 38px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-title .highlight {
    font-weight: 600;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 30px;
    color: #2A2A2A;
}

/* Benefits Box */
.benefits-box {
    background-color: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.benefits-title {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.benefits-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.benefits-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
}

.benefits-list .emoji {
    font-size: 20px;
    flex-shrink: 0;
}

/* CTA Gradient Button */
.cta-btn-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.cta-text-price { 
    font-weight: 600;
    font-size: 18px;
}

.cta-price {
    background: linear-gradient(135deg, #d41c3d, #861b83);
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
}

.cta-gradient-button {
    animation: pulse-banner .8s ease infinite alternate;
    display: inline-block;
    /* background: linear-gradient(180deg, #4DB105 0%, #2F8501 100%); */
    background: linear-gradient(135deg, #d41c3d, #861b83);
    box-shadow: 0 0 30px rgba(212, 28, 61, .3);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 16px 36px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
    text-align: center;
}

@keyframes pulse-banner {
    0% {
    transform: scale(1);
    }
    100% {
    transform: scale(1.04);
    }
}

.cta-gradient-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(212, 28, 61, .5);
}

/* Urgency Text */
.urgency-text {
    font-size: 13px;
    font-style: italic;
    color: #666;
    text-align: left;
}

.urgency-text span {
    font-style: normal;
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Tablet Styles */
@media (max-width: 1024px) {
    .hero-content {
        gap: 40px;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }
}

/* Story Section */
.story {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #FFF5EB 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: start;
}

/* Story Video */
.story-media {
    position: relative;
    display: flex;
    justify-content: center;
}

.story-video {
    width: 70%;
    height: auto;
    border-radius: 12px;
    display: block;
}

/* Story Text */
.story-text {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.story-header {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    align-items: center;
}

.profile-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.story-subject {
    flex: 1;
}

.subject-label {
    font-size: 18px;
    margin: 0;
    color: #333;
}

.subject-label strong {
    font-weight: 600;
    color: #1a1a1a;
}

.subject-intro {
    font-size: 16px;
    line-height: 1.4;
    font-style: italic;
    margin: 0;
    color: #2a2a2a
}

.story-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-body p {
    font-size: 16px;
    line-height: 1.5;
    color: #333;
    margin: 0;
}

/* Tablet Styles for Story */
@media (max-width: 1024px) {
    .story {
        padding: 60px 0;
    }

    .story-content {
        gap: 60px;
    }

    .story-body p {
        font-size: 17px;
    }

    .story-media {
        margin-top: 32px;
    }

    .story-video {
        width: 100%;
    }

    .subject-label {
        margin-bottom: 6px;
    }
}

/* Mobile Styles for Story */
@media (max-width: 768px) {
    .story {
        padding: 50px 0;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 0px;
    }

    .profile-image {
        width: 60px;
        height: 60px;
    }

    .subject-label {
        font-size: 15px;
    }

    .subject-intro {
        font-size: 14px;
    }

    .story-body {
        gap: 16px;
    }

    .story-body p {
        font-size: 16px;
    }

    .play-button svg {
        width: 60px;
        height: 60px;
    }
}

/* Offer Section */
.offer {
    padding: 40px 0;
    background: #FFF5EB 100%;
}

.offer-title {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.offer-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto;
    gap: 16px 30px;
    margin-bottom: 50px;
}
/* Offer Card */
.offer-card {
    background-color: #FFF3E2;
    border: 1px solid #e8dcc8;
    border-radius: 16px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.card-emoji {
    font-size: 32px;
    line-height: 1;
}

.card-title {
    font-size: 22px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.card-title strong {
    font-weight: 700;
}

.card-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 16px;
    line-height: 1.5;
    color: #333;
}

.card-list li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.tin-image {
    margin-top: 16px;
}

.tin-image img {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    object-fit: contain;
}

.card-disclaimer {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0;
}

.offer-card.tin-card {
    padding-bottom: 0;
}

/* Offer CTA */
.offer-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.offer-price {
    font-size: 32px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}


.offer-urgency {
    font-size: 14px;
    font-style: italic;
    color: #666;
    margin: 0;
}

/* Tablet Styles for Offer */
@media (max-width: 1024px) {
    .offer {
        padding: 60px 0;
    }

    .offer-title {
        font-size: 36px;
        margin-bottom: 40px;
    }

    .offer-cards {
        gap: 25px;
    }

    .offer-card {
        padding: 30px;
    }

    .card-title {
        font-size: 20px;
    }

    .offer-price {
        font-size: 28px;
    }
}

/* Guide For Section */
.guide-for {
    padding: 80px 0;
    background-color: #FFF8EE;
}

.guide-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.guide-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.guide-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.guide-list li {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: flex-start;
    font-size: 18px;
    line-height: 1.6;
    color: #333;
}

.guide-check {
    flex-shrink: 0;
}

.guide-text {
    flex: 1;
}

.guide-subtitle {
    font-size: 15px;
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.guide-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Tablet Styles for Guide */
@media (max-width: 1024px) {
    .guide-for {
        padding: 60px 0;
    }

    .guide-content {
        gap: 60px;
    }

    .guide-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .guide-list {
        gap: 18px;
    }

    .guide-list li {
        font-size: 17px;
    }
}

/* Mobile Styles for Guide */
@media (max-width: 768px) {
    .guide-for {
        padding: 50px 0;
    }

    .guide-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .guide-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .guide-list {
        gap: 16px;
        margin-bottom: 30px;
    }

    .guide-list li {
        font-size: 16px;
    }

    .guide-subtitle {
        font-size: 14px;
    }
}

/* Snack Tin Section */
.snack-tin {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF5EB 0%, #fff 100%);
}

.tin-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 60px;
}

.tin-image-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.tin-photo {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.tin-disclaimer {
    font-size: 13px;
    font-style: italic;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.tin-title {
    font-size: 42px;
    font-weight: 500;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.tin-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 40px;
}

.tin-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tin-feature {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-emoji {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
}

.feature-content {
    flex: 1;
}

.feature-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px 0;
    color: #1a1a1a;
}

.feature-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.tin-cta {
    text-align: center;
}

/* Tablet Styles for Snack Tin */
@media (max-width: 1024px) {
    .snack-tin {
        padding: 60px 0;
    }

    .tin-content {
        gap: 60px;
        margin-bottom: 50px;
    }

    .tin-title {
        font-size: 36px;
    }

    .tin-intro {
        font-size: 17px;
    }

    .tin-features {
        gap: 25px;
    }

    .feature-title {
        font-size: 17px;
    }
}

/* Mobile Styles for Snack Tin */
@media (max-width: 768px) {
    .snack-tin {
        padding: 50px 0;
    }

    .tin-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }

    .tin-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .tin-intro {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .tin-features {
        gap: 20px;
    }

    .feature-emoji {
        font-size: 20px;
    }

    .feature-title {
        font-size: 16px;
        margin-bottom: 6px;
    }

    .feature-desc {
        font-size: 14px;
    }

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

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background-color: #FFF;
}

.how-title {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    /* margin-bottom: 15px; */
    color: #1a1a1a;
}

.how-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.how-step {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #FFF3E2;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 20px;
}

.step-title {
    font-size: 20px;
    font-weight: 400;
    margin-bottom: 12px;
    line-height: 1.4;
    color: #1a1a1a;
}

.step-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

/* Tablet Styles for How It Works */
@media (max-width: 1024px) {
    .how-it-works {
        padding: 60px 0;
    }

    .how-title {
        font-size: 36px;
    }

    .how-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }

    .step-title {
        font-size: 19px;
    }
}

/* Mobile Styles for How It Works */
@media (max-width: 768px) {
    .how-it-works {
        padding: 50px 0;
    }

    .how-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .how-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .how-steps {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
        margin-bottom: 15px;
    }

    .step-title {
        font-size: 18px;
        margin-bottom: 10px;
    }

    .step-desc {
        font-size: 14px;
    }
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: linear-gradient(180deg, #fff 0%, #FFF5EB 100%)
}

.testimonials-title {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    align-items: start;
}

.testimonial-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.testimonial-card {
    background-color: #FFF3E2;
    border: 1px solid #e8dcc8;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.testimonial-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0;
}

.testimonial-location {
    font-size: 13px;
    color: #999;
    margin: 0;
}

.testimonial-quote {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
    margin: 0;
}

.testimonial-date {
    font-size: 12px;
    color: #999;
    margin: auto 0 0 0;
}

/* Tablet Styles for Testimonials */
@media (max-width: 1024px) {
    .testimonials {
        padding: 60px 0;
    }

    .testimonials-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .testimonial-column {
        gap: 20px;
    }

    .testimonial-card {
        padding: 20px;
    }
}

/* Mobile Styles for Testimonials */
@media (max-width: 768px) {
    .testimonials {
        padding: 50px 0;
    }

    .testimonials-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-column {
        gap: 15px;
    }

    .testimonial-card {
        padding: 18px;
        gap: 12px;
    }

    .testimonial-header {
        gap: 10px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-name {
        font-size: 15px;
    }

    .testimonial-location {
        font-size: 12px;
    }

    .testimonial-quote {
        font-size: 14px;
    }

    .testimonial-date {
        font-size: 11px;
    }
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(180deg, #FFF5EB 0%, #fff 100%)
}

.faq-title {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.faq-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    line-height: 1.6;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: #FFF3E2;
    border: 1px solid #e8dcc8;
    border-radius: 12px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: none;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    transition: background-color 0.2s ease;
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    margin-left: 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 30px 25px 30px;
    margin: 0;
    font-size: 16px;
    line-height: 1.7;
    color: #333;
}

/* Tablet Styles for FAQ */
@media (max-width: 1024px) {
    .faq {
        padding: 60px 0;
    }

    .faq-title {
        font-size: 36px;
    }

    .faq-subtitle {
        font-size: 17px;
        margin-bottom: 50px;
    }

    .faq-question {
        font-size: 17px;
        padding: 22px 25px;
    }

    .faq-answer p {
        padding: 0 25px 22px 25px;
        font-size: 15px;
    }
}

/* Mobile Styles for FAQ */
@media (max-width: 768px) {
    .faq {
        padding: 50px 0;
    }

    .faq-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .faq-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .faq-list {
        gap: 12px;
    }

    .faq-question {
        font-size: 16px;
        padding: 18px 20px;
    }

    .faq-icon {
        width: 12px;
        height: auto;
        margin-left: 15px;
    }

    .faq-answer p {
        padding: 0 20px 18px 20px;
        font-size: 14px;
    }
}

/* Final CTA Section */
.final-cta {
    padding: 80px 0;
    background-color: #fff;
}

.final-cta-title {
    font-size: 42px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    line-height: 1.3;
}

.final-cta-card {
    background-color: #FFF3E2;
    border: 1px solid #e8dcc8;
    border-radius: 16px;
    padding: 60px 60px 0 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.final-cta-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.final-cta-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
}

.final-cta-image img {
    width: 100%;
    display: block;
    height: auto;
    border-radius: 12px;
}

.final-cta-button {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Tablet Styles for Final CTA */
@media (max-width: 1024px) {
    .final-cta {
        padding: 60px 0;
    }

    .final-cta-title {
        font-size: 36px;
        margin-bottom: 50px;
    }

    .final-cta-card {
        padding: 50px;
        gap: 50px;
    }

    .final-cta-text {
        gap: 18px;
    }

    .final-cta-text p {
        font-size: 17px;
    }
}

/* Mobile Styles for Final CTA */
@media (max-width: 768px) {
    .final-cta {
        padding: 50px 0;
    }

    .final-cta-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .final-cta-card {
        grid-template-columns: 1fr;
        padding: 30px;
        gap: 30px;
    }

    .final-cta-text {
        gap: 16px;
    }

    .final-cta-text p {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background-color: #FFF;
    padding: 40px 0;
}

.footer-brand {
    margin-bottom: 12px;
}

.footer-brand .logo {
    max-width: 120px;
    height: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 30px;
}

.footer-copyright {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-self: end;
    font-size: 14px;
}

.footer-links a {
    color: #1a1a1a;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: #938571;
}

.footer-separator {
    color: #999;
}


/* Tablet Styles */
@media (max-width: 1024px) {
    .footer {
        padding: 35px 0;
    }

    .footer-brand {
        margin-bottom: 25px;
    }

    .footer-brand .logo {
        max-width: 100px;
    }

    .footer-content {
        gap: 25px;
    }

    .footer-copyright {
        font-size: 13px;
    }

    .footer-links {
        font-size: 13px;
        gap: 8px;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .announcement-bar p {
        font-size: 12px;
    }

    .hero {
        padding: 20px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        font-size: 26px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 25px;
    }

    .benefits-box {
        padding: 20px;
    }

    .benefits-title {
        font-size: 18px;
    }

    .benefits-list li {
        font-size: 14px;
    }

    .benefits-list .emoji {
        font-size: 18px;
    }

    .cta-button {
        font-size: 16px;
        padding: 16px 24px;
    }

    .urgency-text {
        text-align: center
    }

    /* Stack image after content on mobile */
    .hero-image {
        order: 2;
    }

    .hero-text {
        order: 1;
    }

    .logo img {
        max-width: 100%;
        width: 30%;
    }


    .offer {
        padding: 50px 0;
    }

    .offer-title {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .offer-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .offer-card {
        padding: 24px;
    }

    .card-emoji {
        font-size: 28px;
    }

    .card-title {
        font-size: 18px;
    }

    .card-list {
        gap: 14px;
    }

    .card-list li {
        font-size: 15px;
    }

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

    .offer-price {
        font-size: 24px;
    }

    .cta-gradient-button {
        font-size: 14px;
        display: block;
        padding: 16px 30px;
    }

    .offer-urgency {
        font-size: 13px;
    }

    .tin-image-wrapper {
        order: 1;
    }

    .footer {
        padding: 30px 0;
    }

    .footer-brand {
        margin-bottom: 20px;
    }

    .footer-brand .logo {
        max-width: 80px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 20px;
    }

    .footer-copyright {
        font-size: 12px;
        order: 2;
    }

    .footer-links {
        justify-self: center;
        order: 1;
        flex-wrap: wrap;
        justify-content: center;
        font-size: 12px;
    }
}

/* Mobile Devices Styles */
@media (max-width: 468px) {
    .subject-label {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }
    .cta-gradient-button {
        padding: 12px;
        font-size: 12px;
    }

    .story {
        padding: 32px 0;
    }

    .story-body p {
        font-size: 14px;
    }

        .subject-intro {
        font-size: 12px;
        line-height: 1.5;
    }

    .profile-image {
        width: 50px;
        height: 50px;
    }

    .story-video {
        width: 100%;
    }

    .offer {
        padding: 32px 0;
    }

    .card-title {
        font-size: 16px;
    }

    .card-list li {
        font-size: 14px;
    }

    .offer-card {
        padding: 20px;
    }

    .guide-for {
        padding: 32px 0;
    }

    .tin-title, .how-title, .offer-title, .testimonials-title, .faq-title,
    .final-cta-title {
        font-size: 24px;
        line-height: 1.4;
    }

    .tin-intro {
        font-size: 14px;
    }

    .tin-content {
        gap: 64px;
    }

    .snack-tin {
        padding: 32px 0;
    }

    .footer-links {
        justify-content: unset;
        font-size: 12px;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        margin-right: auto;
    }

    .footer-brand .logo {
        max-width: 120px;
    }

    .footer-copyright {
        text-align: left;
    }

    .footer-separator {
        display: none;
    }
}