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

:root {
    --burgundy: #6B1F3B;
    --burgundy-dark: #4A1527;
    --burgundy-light: #8B2F4F;
    --charcoal: #1A1A1A;
    --black: #000000;
    --gray-soft: #2A2A2A;
    --gray-light: #444444;
    --white: #FFFFFF;
    --yellow-bright: #FFEB3B;
    --cyan-bright: #00BCD4;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    background: var(--charcoal);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Advertisement Badge */
.ad-badge-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--yellow-bright);
    color: var(--black);
    text-align: center;
    padding: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    z-index: 10000;
    text-transform: uppercase;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Header */
.main-header {
    position: sticky;
    top: 32px;
    z-index: 1000;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem 0;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--white);
}

.main-nav {
    display: flex;
    gap: 2.5rem;
}

.main-nav a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--white);
    transition: var(--transition);
}

.main-nav a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: var(--transition);
}

.main-nav.active {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Disclaimer Banner */
.disclaimer-banner {
    margin-top: 32px;
    background: var(--cyan-bright);
    color: var(--black);
    padding: 1.5rem 2rem;
    text-align: center;
    font-weight: 600;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.disclaimer-link {
    color: var(--black);
    text-decoration: underline;
    font-weight: 700;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--charcoal) 50%, var(--black) 100%);
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-image-placeholder {
    position: relative;
    background: var(--gray-soft);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: fit-content;
    height: fit-content;
}

.hero-image-placeholder img {
    max-width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
}

.image-label {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

.crop-marks {
    position: absolute;
    width: 20px;
    height: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.crop-mark-top-left {
    top: 10px;
    left: 10px;
    border-right: none;
    border-bottom: none;
}

.crop-mark-top-right {
    top: 10px;
    right: 10px;
    border-left: none;
    border-bottom: none;
}

.crop-mark-bottom-left {
    bottom: 10px;
    left: 10px;
    border-right: none;
    border-top: none;
}

.crop-mark-bottom-right {
    bottom: 10px;
    right: 10px;
    border-left: none;
    border-top: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.hero-headline {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    text-transform: uppercase;
    color: var(--white);
}

.headline-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.headline-line:nth-child(2) {
    animation-delay: 0.2s;
}

.headline-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-meta {
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

/* Film Grain */
.film-grain {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.05'/%3E%3C/svg%3E");
    pointer-events: none;
    opacity: 0.3;
}

/* Marquee */
.marquee-container {
    overflow: hidden;
    background: var(--black);
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
}

.marquee-content span {
    display: inline-block;
    padding-right: 3rem;
    font-size: 0.85rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Section Container */
.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--white);
    opacity: 0;
    transform: translateY(30px);
}

.section-title.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s ease;
}

/* Features Section */
.features {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--burgundy-dark) 100%);
    padding: 6rem 0;
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    transition: var(--transition);
    opacity: 0;
    transform: translateY(30px);
}

.feature-card.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.05);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--white);
}

.feature-card p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* Audience & Relevance */
.audience-relevance {
    background: var(--black);
    padding: 6rem 0;
    position: relative;
}

.audience-relevance-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 4rem;
    align-items: center;
}

.large-word {
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -3px;
    color: rgba(255, 255, 255, 0.1);
    margin-bottom: 2rem;
    line-height: 0.9;
}

.audience-block p,
.relevance-block p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.05rem;
}

.circular-portrait-placeholder {
    position: relative;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--gray-soft);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.circular-portrait-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.crop-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

/* Big Banner */
.big-banner {
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-dark) 50%, var(--black) 100%);
    overflow: hidden;
}

.banner-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.banner-title {
    font-size: clamp(4rem, 10vw, 10rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -4px;
    color: var(--white);
    opacity: 0.9;
    line-height: 0.95;
    margin-bottom: 2rem;
}

.banner-image-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-soft);
    opacity: 0.3;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Order Section */
.order-section {
    background: var(--charcoal);
    padding: 6rem 0;
}

.order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.product-image-placeholder {
    aspect-ratio: 1/1;
    background: var(--gray-soft);
    border: 2px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    overflow: hidden;
}

.product-image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.product-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
}

.order-form {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
    font-weight: 600;
    color: var(--white);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: normal;
    font-size: 0.9rem;
    line-height: 1.6;
}

.checkbox-group a {
    color: var(--white);
    text-decoration: underline;
}

.cta-button {
    width: 100%;
    padding: 1.2rem;
    background: var(--white);
    color: var(--black);
    border: none;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.2);
}

.trust-blocks {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.trust-icon {
    font-size: 1.5rem;
}

/* Research Section */
.research-section {
    background: linear-gradient(180deg, var(--black) 0%, var(--burgundy-dark) 100%);
    padding: 6rem 0;
}

.research-content {
    max-width: 900px;
    margin: 0 auto;
}

.research-subsection {
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
}

.research-subsection.visible {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.6s ease;
}

.research-subsection h3 {
    font-size: 1.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.research-subsection p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.research-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.research-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.95rem;
    transition: var(--transition);
}

.research-links a:hover {
    color: var(--white);
}

.limitations-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 3px solid var(--white);
    padding: 2rem;
    margin-top: 3rem;
}

.limitations-box h4 {
    font-size: 1.3rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    color: var(--white);
}

.limitations-box p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

/* Ingredients Section */
.ingredients-section {
    background: var(--charcoal);
    padding: 6rem 0;
}

.ingredients-table {
    display: flex;
    flex-direction: column;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ingredient-row {
    display: grid;
    grid-template-columns: 1.5fr 2fr 1fr;
    gap: 2rem;
    padding: 2rem;
    background: var(--charcoal);
    align-items: center;
    transition: var(--transition);
}

.ingredient-row:hover {
    background: rgba(255, 255, 255, 0.03);
}

.ingredient-name {
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
    font-size: 1.1rem;
}

.ingredient-mechanism {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.ingredient-research a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: underline;
    font-size: 0.9rem;
    transition: var(--transition);
}

.ingredient-research a:hover {
    color: var(--white);
}

/* FAQ Section */
.faq-section {
    background: linear-gradient(180deg, var(--burgundy-dark) 0%, var(--black) 100%);
    padding: 6rem 0;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 1rem;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    color: rgba(255, 255, 255, 0.8);
}

.faq-question h3 {
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
    color: var(--white);
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 300;
    transition: var(--transition);
    color: var(--white);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.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-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.faq-answer a {
    color: var(--white);
    text-decoration: underline;
}

/* Reviews Section */
.reviews-section {
    background: var(--charcoal);
    padding: 6rem 0;
}

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 3rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
}

.review-stars {
    color: var(--yellow-bright);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.review-author {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Full Disclaimer */
.full-disclaimer {
    background: var(--black);
    padding: 6rem 0;
}

.disclaimer-content-full {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-content-full p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.disclaimer-content-full strong {
    color: var(--white);
    font-weight: 700;
}

/* Footer */
.main-footer {
    background: var(--black);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column h4 {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-column a:hover {
    color: var(--white);
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    margin-top: 1rem;
    font-size: 0.8rem !important;
    color: rgba(255, 255, 255, 0.5) !important;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    border-top: 2px solid var(--white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    color: var(--white);
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept {
    padding: 0.75rem 2rem;
    background: var(--white);
    color: var(--black);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
}

.cookie-accept:hover {
    background: rgba(255, 255, 255, 0.9);
}

.cookie-preferences {
    padding: 0.75rem 2rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--white);
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.cookie-preferences:hover {
    background: var(--white);
    color: var(--black);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image-placeholder {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .audience-relevance-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .circular-portrait-placeholder {
        margin: 2rem auto;
    }
    
    .order-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .ingredient-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .header-container {
        padding: 0 1rem;
    }
    
    .section-container {
        padding: 3rem 1rem;
    }
    
    .hero {
        padding: 2rem 1rem;
        min-height: auto;
    }
    
    .feature-cards {
        grid-template-columns: 1fr;
    }
    
    .banner-title {
        font-size: 3rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

/* Page-specific styles for additional pages */
.page-header {
    padding: 8rem 2rem 4rem;
    background: linear-gradient(135deg, var(--burgundy-dark) 0%, var(--charcoal) 50%, var(--black) 100%);
    text-align: center;
}

.page-title {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -2px;
    margin-bottom: 1rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 3rem 0 1.5rem;
    color: var(--white);
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 2rem 0 1rem;
    color: var(--white);
    font-weight: 700;
}

.page-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.page-content ul,
.page-content ol {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.75rem;
}

.page-content a {
    color: var(--white);
    text-decoration: underline;
}

.page-content a:hover {
    color: rgba(255, 255, 255, 0.8);
}

