:root {
    --bright-red: #c41212;
    --mid-red: #660e0e;
    --dark-red: #3d0707;
    --white: #ffffff;
    --black: #000000;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--dark-red);
    color: var(--white);
    font-family: 'Zilla Slab', serif;
    line-height: 1.4;
    overflow-x: hidden;
}

header {
    background-color: var(--bright-red);
    width: 100%;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-logo-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    margin-bottom: -150px;
    /* Force overlap with main section */
    z-index: 10;
}

.hero-logo {
    width: 100%;
    height: auto;
    display: block;
}

main {
    max-width: 1000px;
    margin: 0 auto;
    padding: 160px 40px 80px;
    /* Extra top padding for the overlapping logo */
    text-align: center;
}

.intro-paragraph {
    font-size: 1.8rem;
    max-width: 850px;
    margin: 0 auto 40px;
    font-weight: 400;
    color: #f59e0b;
    line-height: 1.3;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 0;
    padding: 0 120px;
}

@media (max-width: 1024px) {
    .features-grid {
        padding: 0 60px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        padding: 0 40px;
    }
}

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 100px;
    }

    .hero-logo-wrapper {
        margin-bottom: -120px;
    }

    main {
        padding-top: 130px;
    }
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.feature-image-container {
    width: 100%;
    max-width: 400px;
    height: 280px;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.feature-image {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    display: block;
}

.feature-tag {
    background-color: #f59e0b;
    color: #000000;
    font-family: 'Bowlby One', cursive;
    font-size: 1.8rem;
    padding: 8px 20px;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    white-space: nowrap;
    z-index: 2;
    transition: all 0.2s ease;
    line-height: 1;
}

@keyframes wiggle {
    0% {
        transform: translateX(-50%) rotate(-3deg) scale(1.1);
    }

    25% {
        transform: translateX(-50%) rotate(2deg) scale(1.1);
    }

    50% {
        transform: translateX(-50%) rotate(-2deg) scale(1.1);
    }

    75% {
        transform: translateX(-50%) rotate(3deg) scale(1.1);
    }

    100% {
        transform: translateX(-50%) rotate(0deg) scale(1.1);
    }
}

.feature-link:hover .feature-tag {
    animation: wiggle 0.4s ease-in-out infinite alternate;
    background-color: #f59e0b;
    color: #ffffff;
}

.feature-description {
    font-size: 1.4rem;
    max-width: 320px;
    margin-bottom: 15px;
    font-weight: 400;
}

.learn-more {
    color: var(--bright-red);
    text-decoration: underline;
    font-weight: 600;
    font-style: italic;
    font-size: 1.4rem;
    transition: all 0.2s;
}

.learn-more:hover {
    color: var(--white);
}

footer {
    padding: 80px 40px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    opacity: 0.5;
    letter-spacing: 2px;
}

.footer-legal-link {
    color: var(--white);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-legal-link:hover {
    color: var(--bright-red);
    opacity: 1;
}

a {
    color: inherit;
    text-decoration: none;
}

@media (max-width: 480px) {
    .intro-paragraph {
        font-size: 1.5rem;
    }

    .feature-tag {
        font-size: 1.6rem;
    }
}

/* FAQ Section */
.faq-section {
    max-width: 800px;
    margin: 80px auto 60px;
    padding: 0 20px;
}

.faq-title {
    font-family: 'Bowlby One', cursive;
    font-size: 2.5rem;
    color: var(--bright-red);
    text-align: center;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.faq-item {
    background-color: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(196, 18, 18, 0.3);
    border-radius: 12px;
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(196, 18, 18, 0.6);
}

.faq-item.active {
    border-color: var(--bright-red);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-align: left;
    padding: 20px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--bright-red);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--bright-red);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    font-family: 'Zilla Slab', serif;
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 24px;
}

.faq-item.active .faq-answer {
    max-height: 800px;
    padding: 0 24px 20px 24px;
}

/* Responsive YouTube iframe container */
.faq-answer iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 16px;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

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

    .faq-answer {
        font-size: 0.95rem;
    }

    .faq-item.active .faq-answer {
        padding: 0 20px 16px 20px;
    }
}

/* Cookie Consent Banner */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    border-top: 3px solid var(--bright-red);
    padding: 20px;
    z-index: 9999;
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(100%);
    }
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-consent-text {
    font-family: 'Zilla Slab', serif;
    font-size: 1rem;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.cookie-consent-btn {
    background-color: #f59e0b;
    color: #000000;
    font-family: 'Bowlby One', cursive;
    font-size: 1.1rem;
    padding: 12px 32px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cookie-consent-btn:hover {
    background-color: #ffffff;
    color: var(--bright-red);
    transform: scale(1.05);
}

@media (max-width: 640px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-consent-text {
        font-size: 0.9rem;
    }
    
    .cookie-consent-btn {
        width: 100%;
        font-size: 1rem;
    }
}
