:root {
    /* Gentle Guardian Palette */
    --color-terracotta: #D97757;
    --color-terracotta-light: #E89B7E;
    --color-terracotta-dark: #B85A3F;
    --color-sage: #8FAD88;
    --color-sage-light: #B5CCAF;
    --color-sage-dark: #6D8B66;
    --color-cream: #FAF8F5;
    --color-sand: #F1EDE7;
    --color-charcoal: #2C2C2C;
    --color-slate: #5A5A5A;
    --color-warning: #E85D4A;

    /* Typography */
    --font-display: 'Fraunces', serif;
    --font-body: 'Karla', sans-serif;
    --font-handwritten: 'Caveat', cursive;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(44, 44, 44, 0.08);
    --shadow-md: 0 4px 16px rgba(44, 44, 44, 0.12);
    --shadow-lg: 0 8px 32px rgba(44, 44, 44, 0.16);

    /* Border radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 18px;
    line-height: 1.7;
    color: var(--color-charcoal);
    background: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

/* Grain texture overlay */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    z-index: -1;
    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='2.5' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    pointer-events: none;
}

/* Navigation */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(44, 44, 44, 0.08);
    z-index: 1000;
    padding: 1rem 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.4rem;
    color: var(--color-charcoal);
    text-decoration: none;
}

.logo-icon {
    font-size: 1.8rem;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: var(--color-slate);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--color-terracotta);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    transition: width 0.3s ease;
}

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

.nav-cta {
    background: var(--color-terracotta);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 10rem 2rem 6rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--color-cream) 0%, var(--color-sand) 100%);
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blob-float 20s ease-in-out infinite;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: var(--color-sage-light);
    top: -200px;
    left: -100px;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: var(--color-terracotta-light);
    bottom: -150px;
    right: -50px;
    animation-delay: 10s;
}

@keyframes blob-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 30px) scale(0.9); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: white;
    color: var(--color-sage-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
    animation: slide-up 0.8s ease-out;
}

@keyframes slide-up {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: 4rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    animation: slide-up 0.8s ease-out 0.1s both;
}

.hero-title-accent {
    color: var(--color-terracotta);
    font-style: italic;
    position: relative;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.35rem;
    line-height: 1.6;
    color: var(--color-slate);
    margin-bottom: 2.5rem;
    animation: slide-up 0.8s ease-out 0.2s both;
}

.hero-cta-group {
    animation: slide-up 0.8s ease-out 0.3s both;
    margin-bottom: 3rem;
}

.hero-cta-note {
    font-size: 0.95rem;
    color: var(--color-slate);
    margin-top: 0.75rem;
}

.hero-trust {
    display: flex;
    gap: 3rem;
    animation: slide-up 0.8s ease-out 0.4s both;
}

.trust-item {
    display: flex;
    flex-direction: column;
}

.trust-number {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-terracotta);
}

.trust-label {
    font-size: 0.9rem;
    color: var(--color-slate);
}

/* Floating ingredient cards */
.hero-visual {
    position: relative;
    height: 500px;
}

.floating-cards {
    position: relative;
    width: 100%;
    height: 100%;
}

.ingredient-card {
    position: absolute;
    top: 50%;
    left: 50%;
    background: white;
    padding: 1.25rem 1.75rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
    animation: card-float 3s ease-in-out infinite, card-appear 0.8s ease-out var(--delay) both;
}

@keyframes card-float {
    0%, 100% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y))); }
    50% { transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) - 10px)); }
}

@keyframes card-appear {
    from {
        opacity: 0;
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y) + 30px)) scale(0.8);
    }
    to {
        opacity: 1;
        transform: translate(calc(-50% + var(--x)), calc(-50% + var(--y)));
    }
}

.card-emoji {
    font-size: 2rem;
}

.card-label {
    font-weight: 600;
    color: var(--color-charcoal);
    font-size: 1rem;
}

.card-check {
    color: var(--color-sage);
    font-size: 1.5rem;
    font-weight: bold;
}

.card-cross {
    color: var(--color-warning);
    font-size: 1.5rem;
    font-weight: bold;
}

.card-blocked {
    background: #FFE8E5;
    border: 2px solid var(--color-warning);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-primary {
    background: var(--color-terracotta);
    color: white;
}

.btn-primary:hover {
    background: var(--color-terracotta-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--color-terracotta);
    border: 2px solid var(--color-terracotta);
}

.btn-secondary:hover {
    background: var(--color-terracotta);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* Problem Section */
.problem {
    padding: var(--spacing-xl) 2rem;
    background: white;
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
}

.section-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-slate);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.problem-card {
    background: var(--color-cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.problem-text {
    color: var(--color-slate);
    line-height: 1.7;
}

/* Solution Section */
.solution {
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
}

.solution-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.handwritten-note {
    font-family: var(--font-handwritten);
    font-size: 1.8rem;
    color: var(--color-terracotta-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.solution-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.solution-accent {
    color: var(--color-terracotta-dark);
    font-style: italic;
}

.solution-text {
    font-size: 1.15rem;
    color: var(--color-charcoal);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.feature-check {
    background: white;
    color: var(--color-sage-dark);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.solution-feature strong {
    display: block;
    color: var(--color-charcoal);
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.solution-feature p {
    color: var(--color-charcoal);
    font-size: 0.95rem;
    opacity: 0.8;
}

/* App Mockup */
.app-mockup {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.app-mockup:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.mockup-header {
    background: var(--color-charcoal);
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mockup-dots {
    display: flex;
    gap: 0.4rem;
}

.mockup-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.mockup-title {
    font-weight: 600;
}

.mockup-content {
    padding: 1.5rem;
}

.mockup-meal {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--color-cream);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
}

.mockup-meal:last-child {
    margin-bottom: 0;
}

.meal-img {
    font-size: 2.5rem;
}

.meal-info {
    flex: 1;
}

.meal-name {
    font-weight: 600;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.meal-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-weight: 600;
}

.tag-safe {
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
}

.mockup-footer {
    padding: 1rem 1.5rem;
    background: var(--color-sage-light);
    border-top: 1px solid var(--color-sage);
}

.nutrition-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-sage-dark);
}

.badge-icon {
    background: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* How It Works */
.how-it-works {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-cream);
}

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

.steps {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    align-items: start;
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--color-terracotta);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 800;
    box-shadow: var(--shadow-md);
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 0.75rem;
}

.step-text {
    color: var(--color-slate);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Features Detail */
.features {
    padding: var(--spacing-xl) 2rem;
    background: white;
}

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

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

.feature-card {
    background: var(--color-cream);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.feature-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.feature-text {
    color: var(--color-slate);
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-sand);
}

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

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

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.testimonial-stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--color-charcoal);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-sage-light);
    color: var(--color-sage-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    color: var(--color-charcoal);
}

.author-info {
    font-size: 0.9rem;
    color: var(--color-slate);
}

/* Pricing */
.pricing {
    padding: var(--spacing-xl) 2rem;
    background: white;
}

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

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.pricing-card {
    background: var(--color-cream);
    padding: 3rem;
    border-radius: var(--radius-xl);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-featured {
    background: linear-gradient(135deg, var(--color-sage-light) 0%, var(--color-sage) 100%);
    border-color: var(--color-sage-dark);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-terracotta);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.price-currency {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-slate);
}

.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 800;
    color: var(--color-terracotta);
    line-height: 1;
}

.price-period {
    font-size: 1.2rem;
    color: var(--color-slate);
}

.pricing-savings {
    margin-top: 0.5rem;
    color: var(--color-sage-dark);
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--color-charcoal);
    border-bottom: 1px solid rgba(44, 44, 44, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-note {
    text-align: center;
    color: var(--color-slate);
    font-size: 0.95rem;
}

/* FAQ */
.faq {
    padding: var(--spacing-xl) 2rem;
    background: var(--color-cream);
}

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

.faq-grid {
    display: grid;
    gap: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-charcoal);
    margin-bottom: 1rem;
}

.faq-answer {
    color: var(--color-slate);
    line-height: 1.7;
}

/* Final CTA */
.cta {
    padding: var(--spacing-xl) 2rem;
    background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-terracotta-dark) 100%);
    color: white;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    opacity: 0.95;
}

.cta-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 1.1rem;
    font-family: var(--font-body);
}

.cta-input:focus {
    outline: 3px solid rgba(255, 255, 255, 0.5);
}

.cta-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-benefit {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Footer */
.footer {
    background: var(--color-charcoal);
    color: white;
    padding: var(--spacing-lg) 2rem 2rem;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-tagline {
    opacity: 0.7;
    font-size: 0.95rem;
}

.footer-heading {
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    opacity: 0.6;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-disclaimer {
    font-size: 0.85rem;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        height: 400px;
    }

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

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

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-trust {
        flex-direction: column;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

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

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

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

    .cta-form {
        flex-direction: column;
    }

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