/* CSS Variables - Retro Glamour Palette */
:root {
    --color-primary: #D4AF37;
    --color-primary-dark: #B8941F;
    --color-primary-light: #FFD700;
    --color-secondary: #800020;
    --color-accent: #50C878;
    --color-text: #F5E6D3;
    --color-text-muted: #C9B99B;
    --color-border: #8B7355;
    --color-bg: #1a1a1a;
    --color-bg-alt: #2d2d2d;
    --color-bg-cream: #2a2419;
    --color-success: #50C878;
    --color-error: #DC143C;
    --color-orange-700: #D4AF37;
    --color-gold-gradient: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #B8941F 100%);
    --color-gold-shadow: rgba(212, 175, 55, 0.4);
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
}

ul li  {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--color-text);
    background-color: var(--color-bg);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(128, 0, 32, 0.05) 0%, transparent 50%);
    line-height: 1.6;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

.gap-2 {
    gap: 0.5rem;
}

.gap-3 {
    gap: 0.75rem;
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-sm {
    font-size: 0.875rem;
}

.text-xs {
    font-size: 0.75rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.font-bold {
    font-weight: 700;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.w-full {
    width: 100%;
}

.w-6 {
    width: 1.5rem;
}

.h-6 {
    height: 1.5rem;
}

.w-16 {
    width: 4rem;
}

.h-16 {
    height: 4rem;
}

.h-10 {
    height: 2.5rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.space-y-1 > * + * {
    margin-top: 0.25rem;
}

.space-y-2 > * + * {
    margin-top: 0.5rem;
}

.whitespace-pre-line {
    white-space: pre-line;
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* Grid */
.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 768px) {
    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
    
    .md\:flex {
        display: flex;
    }
    
    .md\:hidden {
        display: none;
    }
}

@media (min-width: 640px) {
    .sm\:flex-row {
        flex-direction: row;
    }
}

.flex-wrap {
    flex-wrap: wrap;
}

/* Navigation */
.main-nav {
    background: rgba(26, 26, 26, 0.95);
    border-bottom: 2px solid var(--color-primary);
    border-image: var(--color-gold-gradient) 1;
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.main-nav .flex {
    align-items: center;
    justify-content: space-between;
    height: 4rem;
}

.educational-badge {
    background: var(--color-gold-gradient);
    color: #1a1a1a;
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px var(--color-gold-shadow);
    border: 1px solid var(--color-primary-light);
}

.nav-link {
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.875rem;
    position: relative;
}

.nav-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px var(--color-gold-shadow);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold-gradient);
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-divider {
    border-left: 1px solid var(--color-border);
}

.mobile-menu-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
    padding: 0.5rem;
    transition: all 0.3s;
    z-index: 101;
}

.mobile-menu-btn:hover {
    color: var(--color-primary);
}

.mobile-menu-btn.active {
    color: var(--color-primary);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-bottom: 2px solid var(--color-primary);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 99;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    backdrop-filter: blur(10px);
}

.mobile-menu.active {
    min-height: 100vh;
    transition: max-height 0.3s ease-in;
}

.mobile-menu-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-menu-link {
    color: var(--color-text);
    text-decoration: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1rem;
    border: 1px solid transparent;
}

.mobile-menu-link:hover {
    color: var(--color-primary);
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--color-primary);
    text-shadow: 0 0 8px var(--color-gold-shadow);
}

.mobile-menu-cta {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem;
    background: var(--color-gold-gradient);
    color: #1a1a1a;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    border: 1px solid var(--color-primary);
    box-shadow: 0 2px 8px var(--color-gold-shadow);
    transition: all 0.3s;
}

.mobile-menu-cta:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    box-shadow: 0 4px 12px var(--color-gold-shadow);
    transform: translateY(-2px);
}

.mobile-menu-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.5rem 0;
}

/* Hero Section */
.hero-gradient {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #2a2419 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 2px solid var(--color-primary);
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(128, 0, 32, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero-section {
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--color-gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.3;
    text-shadow: 0 0 30px var(--color-gold-shadow);
    filter: drop-shadow(0 4px 8px rgba(212, 175, 55, 0.3));
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text);
    margin-bottom: 2rem;
}

/* Strategy Cards - Retro Glamour Style */
.strategy-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid transparent;
    border-image: var(--color-gold-gradient) 1;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 
        0 4px 6px rgba(0, 0, 0, 0.5),
        inset 0 2px 4px rgba(212, 175, 55, 0.1),
        0 0 20px rgba(212, 175, 55, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.strategy-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 14px;
    padding: 2px;
    background: var(--color-gold-gradient);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s;
}

.strategy-card:hover {
    transform: translateY(-6px);
    box-shadow: 
        0 12px 24px rgba(0, 0, 0, 0.6),
        inset 0 2px 4px rgba(212, 175, 55, 0.2),
        0 0 30px var(--color-gold-shadow);
    border-color: var(--color-primary);
}

.strategy-card:hover::before {
    opacity: 1;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    background: var(--color-gold-gradient);
    color: #1a1a1a;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    border: 2px solid var(--color-primary);
    cursor: pointer;
    font-size: 1rem;
    gap: 0.5rem;
    box-shadow: 
        0 4px 12px var(--color-gold-shadow),
        inset 0 1px 2px rgba(255, 255, 255, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #FFD700 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 20px var(--color-gold-shadow),
        inset 0 1px 2px rgba(255, 255, 255, 0.3);
    border-color: var(--color-primary-light);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--color-gold-gradient);
    color: #1a1a1a;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.75rem;
    gap: 0.375rem;
    border: 1px solid var(--color-primary);
    box-shadow: 0 2px 8px var(--color-gold-shadow);
}

.cta-button:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    box-shadow: 0 4px 12px var(--color-gold-shadow);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2.5rem;
    background: rgba(128, 0, 32, 0.2);
    border: 2px solid var(--color-secondary);
    color: var(--color-text);
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 12px rgba(128, 0, 32, 0.3);
}

.btn-secondary:hover {
    background: rgba(128, 0, 32, 0.4);
    border-color: var(--color-secondary);
    box-shadow: 0 6px 16px rgba(128, 0, 32, 0.5);
    transform: translateY(-2px);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.75rem;
    gap: 0.375rem;
    background: transparent;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.btn-outline:hover {
    background: rgba(212, 175, 55, 0.15);
    box-shadow: 0 0 20px var(--color-gold-shadow);
    transform: translateY(-2px);
    border-color: var(--color-primary-light);
}

/* Compliance Text */
.compliance-text {
    color: var(--color-text-muted);
}

/* Section Styles */
.section-cream {
    background: var(--color-bg-cream);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-alt {
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-text);
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}

.section-subtitle {
    text-align: center;
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    font-size: 1.125rem;
}

/* Comparison Table */
.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

.comparison-table thead {
    background: var(--color-bg-alt);
}

.comparison-table th {
    border-bottom: 2px solid var(--color-border);
}

.comparison-table td {
    border-bottom: 1px solid var(--color-border);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.text-primary {
    color: var(--color-primary);
}

.text-success {
    color: var(--color-success);
}

.text-error {
    color: var(--color-error);
}

.text-muted {
    color: var(--color-text-muted);
}

/* Notice Box */
.notice-box {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    box-shadow: 
        inset 0 2px 4px rgba(212, 175, 55, 0.1),
        0 0 15px rgba(212, 175, 55, 0.1);
}

/* Step Number */
.step-number {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: var(--color-gold-gradient);
    color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    box-shadow: 
        0 4px 12px var(--color-gold-shadow),
        inset 0 2px 4px rgba(255, 255, 255, 0.2);
    border: 2px solid var(--color-primary);
}

/* Footer */
.main-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    color: var(--color-text);
    padding: 2rem 0;
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.footer-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.footer-subtitle {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.footer-tag {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
}

.footer-section-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.footer-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px var(--color-gold-shadow);
}

.footer-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.6;
}

.compliance-banner {
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid var(--color-primary);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    box-shadow: 
        inset 0 2px 4px rgba(212, 175, 55, 0.1),
        0 0 15px rgba(212, 175, 55, 0.1);
}

.compliance-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-orange-700);
}

.compliance-list {
    list-style: none;
    margin-bottom: 1rem;
}

.compliance-list li {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.resource-link {
    color: var(--color-secondary);
    text-decoration: underline;
    transition: color 0.2s;
}

.resource-link:hover {
    color: var(--color-primary);
    text-shadow: 0 0 8px var(--color-gold-shadow);
}

.footer-copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(4px);
}

.modal-overlay:not(.hidden) {
    display: flex;
}

.age-gate-card {
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border: 2px solid var(--color-primary);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.5),
        0 0 30px var(--color-gold-shadow),
        inset 0 2px 4px rgba(212, 175, 55, 0.1);
}

.modal-header {
    padding: 1.5rem 1.5rem 0;
}

.modal-content {
    padding: 1.5rem;
}

.modal-footer {
    padding: 0 1.5rem 1.5rem;
}

.confirm-btn {
    background: var(--color-gold-gradient);
    color: #1a1a1a;
    border: 2px solid var(--color-primary);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px var(--color-gold-shadow);
}

.confirm-btn:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px var(--color-gold-shadow);
}

.exit-btn {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
}

.exit-btn:hover {
    background: var(--color-bg-alt);
    border-color: var(--color-text-muted);
}

/* Cookie Consent */
.cookie-consent-overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    border-top: 2px solid var(--color-primary);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.2);
    z-index: 1000;
    padding: 1.5rem;
    display: none;
}

.cookie-consent-overlay:not(.hidden) {
    display: block;
}

.cookie-consent-card {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-header {
    margin-bottom: 1rem;
}

.cookie-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
}

.cookie-content {
    margin-bottom: 1rem;
}

.cookie-text {
    color: var(--color-text);
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.cookie-link-text {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.cookie-link {
    color: var(--color-primary);
    text-decoration: underline;
}

.cookie-link:hover {
    color: var(--color-primary-dark);
}

.cookie-footer {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
}

.cookie-btn {
    padding: 0.625rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
    font-size: 0.875rem;
}

.cookie-btn-accept {
    background: var(--color-gold-gradient);
    color: #1a1a1a;
    border: 1px solid var(--color-primary);
    box-shadow: 0 2px 8px var(--color-gold-shadow);
}

.cookie-btn-accept:hover {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 100%);
    box-shadow: 0 4px 12px var(--color-gold-shadow);
}

.cookie-btn-decline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.cookie-btn-decline:hover {
    background: var(--color-bg-alt);
}

/* Hidden class for modals */
.hidden {
    display: none !important;
}


/* Isolate */
.isolate {
    isolation: isolate;
}

/* Logos Grid */
.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    align-items: center;
    justify-items: center;
    padding: 2rem 0;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border-radius: 12px;
    transition: all 0.3s;
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid transparent;
}

.logo-item:hover {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--color-primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px var(--color-gold-shadow);
}

.logo-item img {
    max-width: 100%;
    height: auto;
    filter: brightness(0.9);
    transition: filter 0.3s;
}

.logo-item:hover img {
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .display-none {
        display: none;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn-primary,
    .btn-secondary {
        padding: 0.625rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .strategy-card {
        padding: 1rem;
    }
    
    .main-footer {
        padding: 1.5rem 0;
    }
    
    .footer-title {
        font-size: 1.25rem;
    }
    
    .comparison-table {
        font-size: 0.875rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

