:root {
    --obsidian: #08090a;
    --charcoal: #111314;
    --graphite: #1a1c1e;
    --slate: #252729;
    --pewter: #3a3d40;
    --gold: #b8964c;
    --gold-light: #d4b068;
    --gold-muted: #8a7139;
    --gold-pale: #c9a962;
    --ivory: #f8f6f1;
    --ivory-dark: #e8e4db;
    --sage: #2a3a2a;
    --forest: #1a2a1a;
    --halal: #3d6b4f;
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;
    --ease-luxe: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out: cubic-bezier(0.19, 1, 0.22, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background: var(--obsidian);
    color: var(--ivory);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--charcoal); }
::-webkit-scrollbar-thumb { background: var(--gold-muted); border-radius: 0; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

/* Grain Overlay */
.noise {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0.02;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23grain)'/%3E%3C/svg%3E");
}

/* Navigation */
.nav {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    padding: 2rem 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: all 0.5s var(--ease-luxe);
}

.nav.scrolled {
    background: rgba(8, 9, 10, 0.95);
    backdrop-filter: blur(30px);
    padding: 1.2rem 4rem;
    border-bottom: 1px solid rgba(184, 150, 76, 0.1);
}

.nav-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-logo-mark {
    width: 32px;
    height: 32px;
    border: 1px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(45deg);
}

.nav-logo-mark span {
    font-size: 0.8rem;
    transform: rotate(-45deg);
    font-weight: 600;
}

.nav-links {
    display: flex;
    gap: 4rem;
    list-style: none;
}

.nav-links a {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    color: var(--ivory-dark);
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.4s var(--ease-out);
}

.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--obsidian);
    background: var(--gold);
    padding: 0.9rem 2rem;
    text-decoration: none;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-out);
}

.nav-cta:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(184, 150, 76, 0.2);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    z-index: 101;
}

.nav-toggle span {
    width: 28px;
    height: 1px;
    background: var(--gold);
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4px, 4px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Page Content */
.page-content {
    padding-top: 100px;
}

.page-hero {
    padding: 8rem 2rem;
    text-align: center;
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--obsidian) 100%);
    position: relative;
}

.page-hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-muted), transparent);
    opacity: 0.3;
}

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

.container-narrow {
    max-width: 800px;
}

.section-badge {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
}

.page-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 300;
    color: var(--ivory);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.page-title span,
.page-title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.page-subtitle {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ivory-dark);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Page Sections */
.page-section {
    padding: 6rem 2rem;
    background: var(--obsidian);
}

/* Content Grid */
.content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.content-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

.content-card {
    background: linear-gradient(180deg, var(--slate) 0%, var(--graphite) 100%);
    border: 1px solid var(--pewter);
    padding: 3rem 2.5rem;
    transition: all 0.5s var(--ease-out);
}

.content-card:hover {
    border-color: var(--gold-muted);
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: var(--charcoal);
    border: 1px solid var(--gold-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.content-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.content-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.info-list {
    list-style: none;
    margin-top: 1.5rem;
}

.info-list li {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ivory-dark);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--slate);
}

.info-list li:last-child {
    border-bottom: none;
}

.info-list strong {
    color: var(--gold);
    font-weight: 500;
}

/* Info Banner */
.info-banner {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: var(--graphite);
    border: 1px solid var(--gold-muted);
    padding: 2.5rem;
    margin-top: 4rem;
}

.banner-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--gold);
}

.banner-content h4 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 0.5rem;
}

.banner-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ivory-dark);
}

.banner-content a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.banner-content a:hover {
    color: var(--gold-light);
}

/* FAQ Styles */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: var(--graphite);
    border: 1px solid var(--slate);
    transition: all 0.4s var(--ease-out);
}

.faq-item:hover {
    border-color: var(--gold-muted);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 2rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
}

.faq-question span {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--ivory);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    fill: var(--gold);
    transition: transform 0.4s var(--ease-out);
    flex-shrink: 0;
}

.faq-item.open .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-out);
}

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

.faq-answer p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1.9;
    padding: 0 2rem 2rem;
}

.faq-answer a {
    color: var(--gold);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 1.5rem;
}

.contact-info > p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1.9;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-method {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--graphite);
    border: 1px solid var(--slate);
    transition: border-color 0.3s;
}

.contact-method:hover {
    border-color: var(--gold-muted);
}

.method-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--gold);
}

.method-content h4 {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
}

.method-content a,
.method-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ivory);
    text-decoration: none;
    line-height: 1.6;
}

.method-content a:hover {
    color: var(--gold);
}

.method-content .small {
    font-size: 0.75rem;
    color: var(--pewter);
    margin-top: 0.5rem;
}

.social-section {
    margin-top: 2.5rem;
    padding-top: 2.5rem;
    border-top: 1px solid var(--slate);
}

.social-section h4 {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border: 1px solid var(--slate);
    color: var(--ivory-dark);
    transition: all 0.4s var(--ease-out);
}

.social-links a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--graphite);
    border: 1px solid var(--slate);
    padding: 3.5rem;
    position: relative;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--slate), var(--gold), var(--slate));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    text-align: left;
}

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gold-muted);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--ivory);
    background: var(--charcoal);
    border: 1px solid var(--slate);
    padding: 1.1rem 1.3rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-muted);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--pewter);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b8964c' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select option {
    background: var(--charcoal);
    color: var(--ivory);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.btn-primary {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--obsidian);
    background: var(--gold);
    padding: 1.3rem 3rem;
    text-decoration: none;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.5s var(--ease-out);
}

.btn-primary:hover {
    background: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 20px 50px rgba(184, 150, 76, 0.25);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* Wholesale Page */
.wholesale-intro {
    text-align: center;
    margin-bottom: 5rem;
}

.intro-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 1.5rem;
}

.intro-content h2 span,
.intro-content h2 em {
    font-style: italic;
    color: var(--gold);
    font-weight: 400;
}

.intro-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1.9;
    max-width: 700px;
    margin: 0 auto;
}

.wholesale-benefits {
    margin-top: 5rem;
    padding: 5rem;
    background: var(--graphite);
    border: 1px solid var(--slate);
}

.wholesale-benefits h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    text-align: center;
    margin-bottom: 4rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
}

.benefit-item {
    text-align: center;
}

.benefit-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--gold);
    display: block;
    margin-bottom: 1.5rem;
}

.benefit-item h4 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--ivory);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.benefit-item p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1.7;
}

.wholesale-requirements {
    margin-top: 5rem;
}

.wholesale-requirements h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    text-align: center;
    margin-bottom: 2.5rem;
}

.requirements-content {
    max-width: 600px;
    margin: 0 auto;
    background: var(--graphite);
    border: 1px solid var(--slate);
    padding: 2.5rem;
}

.requirements-list {
    list-style: none;
}

.requirements-list li {
    display: flex;
    justify-content: space-between;
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--slate);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
}

.requirements-list li:last-child {
    border-bottom: none;
}

.requirements-list strong {
    color: var(--ivory);
    font-weight: 500;
}

.requirements-list span {
    color: var(--ivory-dark);
}

.wholesale-cta {
    margin-top: 5rem;
    text-align: center;
}

.cta-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--ivory);
    margin-bottom: 1rem;
}

.cta-content p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--ivory-dark);
    margin-bottom: 2.5rem;
}

.cta-content .small {
    font-size: 0.8rem;
    color: var(--pewter);
    margin-top: 1.5rem;
}

/* Legal Content */
.legal-content {
    background: var(--graphite);
    border: 1px solid var(--slate);
    padding: 4rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid var(--slate);
}

.legal-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-section.highlight-section {
    background: rgba(184, 150, 76, 0.03);
    border: 1px solid var(--gold-muted);
    padding: 2.5rem;
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--ivory);
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 2rem 0 1rem;
}

.legal-section p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1.9;
    margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
    margin: 1.5rem 0 1.5rem 1.5rem;
}

.legal-section li {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1.9;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--gold);
    text-decoration: none;
    transition: color 0.3s;
}

.legal-section a:hover {
    color: var(--gold-light);
}

/* Full Footer with Sitemap */
.footer {
    background: var(--obsidian);
    border-top: 1px solid var(--graphite);
    padding: 6rem 2rem 3rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 5rem;
    margin-bottom: 5rem;
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--gold);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    display: block;
    text-decoration: none;
}

.footer-brand p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--ivory-dark);
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

.footer-halal {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    color: var(--halal);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid var(--halal);
    background: rgba(61, 107, 79, 0.1);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

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

.footer-col ul li {
    margin-bottom: 1rem;
}

.footer-col ul a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--ivory-dark);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid var(--graphite);
}

.footer-copyright {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 300;
    color: var(--pewter);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--slate);
    color: var(--ivory-dark);
    transition: all 0.4s var(--ease-out);
}

.footer-social a:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-social svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Mobile Styles */
@media (max-width: 1024px) {
    .nav {
        padding: 1.5rem 2rem;
    }

    .nav.scrolled {
        padding: 1rem 2rem;
    }

    .content-grid {
        grid-template-columns: 1fr;
    }

    .content-grid.three-col {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0; left: 0;
        width: 100%;
        height: 100vh;
        background: var(--obsidian);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        opacity: 0;
        visibility: hidden;
        transition: all 0.5s var(--ease-out);
    }

    .nav-links.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-links a {
        font-size: 1rem;
    }

    .nav-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .page-hero {
        padding: 5rem 1.5rem;
    }

    .page-section {
        padding: 4rem 1.5rem;
    }

    .content-grid.three-col {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .wholesale-benefits {
        padding: 3rem 2rem;
    }

    .legal-content,
    .contact-form-wrapper {
        padding: 2.5rem 2rem;
    }

    .info-banner {
        flex-direction: column;
        text-align: center;
    }

    .faq-question {
        padding: 1.5rem;
    }

    .faq-question span {
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1.5rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .requirements-list li {
        flex-direction: column;
        gap: 0.25rem;
    }

    .content-card {
        padding: 2rem 1.5rem;
    }
}
