/* ============================================
   Jewish Education Foundation - Final Polish
   Hybrid Design + Premium Optimizations
   ============================================ */

:root {
    /* Colors */
    --color-lavender: #e8e0f0;
    --color-pink: #fce4ec;
    --color-pink-accent: #f48fab;
    --color-blue: #e3f2fd;
    --color-blue-accent: #64b5f6;
    --color-purple-dark: #4a3c6d;
    --color-purple-deep: #2d1b4e;
    --color-purple-light: #ede7f6;
    --color-purple-accent: #7c4dff;
    --color-orange: #ff6631;
    --color-orange-light: #fff3e0;
    --color-orange-accent: #ffb74d;
    --color-green-light: #e8f5e9;
    --color-green-accent: #66bb6a;

    --color-text: #374151;
    --color-heading: #111827;
    --color-text-light: #6b6b6b;
    --color-white: #ffffff;

    --color-grey-100: #f3f4f6;
    --color-grey-200: #e5e7eb;
    --color-grey-300: #d1d5db;
    --color-grey-400: #9ca3af;
    --color-grey-500: #6b6b6b;
    --color-grey-600: #4b5563;
    --color-grey-light: #f9fafb;

    --color-blob-1: #e0daff;
    --color-blob-2: #ffe0eb;
    --color-blob-3: #d0eaff;

    --font-main: 'Outfit',
        sans-serif;
    --border-radius: 24px;
    --header-height: 80px;

    /* Easing */
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--color-grey-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-grey-300);
    border-radius: 10px;
    border: 2px solid var(--color-grey-light);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--color-orange);
}

/* Selection */
::selection {
    background: var(--color-orange);
    color: white;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    font-weight: 400;
    line-height: 1.7;
    background: var(--color-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-heading);
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(3rem, 6vw, 5rem);
    line-height: 1.05;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s var(--ease-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s var(--ease-smooth);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2.25rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: all 0.3s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.btn svg {
    transition: transform 0.3s var(--ease-spring);
}

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

.btn-primary {
    background: var(--color-orange);
    color: white;
    box-shadow: 0 10px 20px -5px rgba(255, 102, 49, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px -5px rgba(255, 102, 49, 0.5);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-outline {
    background: white;
    border: 2px solid var(--color-grey-200);
    color: var(--color-text);
}

.btn-outline:hover {
    background: var(--color-grey-light);
    border-color: var(--color-grey-300);
    color: var(--color-heading);
}

.btn-large {
    font-size: 1.2rem;
}

/* Color Utilities & Icons */
.text-purple-accent {
    color: var(--color-purple-accent);
}

.text-pink-accent {
    color: var(--color-pink-accent);
}

.icon-purple {
    background: var(--color-purple-light);
    color: var(--color-purple-accent);
}

.icon-pink {
    background: var(--color-pink);
    color: var(--color-pink-accent);
}

.icon-blue {
    background: var(--color-blue);
    color: var(--color-blue-accent);
}

.icon-orange {
    background: var(--color-orange-light);
    color: var(--color-orange-accent);
}

.icon-green {
    background: var(--color-green-light);
    color: var(--color-green-accent);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    transition: all 0.3s;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    height: 44px;
    transition: transform 0.3s var(--ease-spring);
}

.logo:hover {
    transform: scale(1.05);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-list a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--color-text);
    position: relative;
}

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

.nav-list a:hover {
    color: var(--color-heading);
}

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

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--color-heading);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 3rem) 0 5rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #fffbfd 0%, var(--color-lavender) 100%);
}

/* Optimised Blobs */
.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    z-index: 0;
    will-change: transform;
}

.blob-1 {
    width: 600px;
    height: 600px;
    background: var(--color-blob-1);
    top: -200px;
    right: -200px;
    animation: breathe 10s ease-in-out infinite alternate;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: var(--color-blob-2);
    bottom: -100px;
    left: -100px;
    animation: breathe 12s ease-in-out infinite alternate-reverse;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: var(--color-blob-3);
    top: 30%;
    left: 15%;
    animation: breathe 8s ease-in-out infinite alternate;
}

@keyframes breathe {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

/* Programs List (Replaces Stats) */
.programs-list {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    text-align: left;
}

.impact .programs-list h3 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, white 0%, var(--color-grey-200) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 16px;
    transition: transform 0.3s;
}

.program-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.06);
}

.program-item h4 {
    color: var(--color-orange);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.program-item p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Partners Section */
.partners {
    padding: 5rem 0;
    text-align: center;
    background: white;
}

.partners h2 {
    margin-bottom: 3rem;
}

.partners-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--color-text-light);
}


.partner-logo {
    height: 80px;
    width: auto;
    max-width: 200px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: all 0.3s;
    object-fit: contain;
}

.partner-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

/* Visionaries (Team) Section */
.team {
    padding: 6rem 0;
    background: var(--color-grey-light);
    text-align: center;
}

.team h2 {
    margin-bottom: 1.5rem;
}

.team-intro {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--color-text-light);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    position: relative;
}

.hero-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.stat-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s var(--ease-spring);
}

.stat-badge:hover {
    transform: translateY(-3px);
    background: white;
}

.stat-badge strong {
    color: var(--color-purple-accent);
    font-size: 1.05rem;
}

.stat-badge span {
    font-size: 0.85rem;
    color: var(--color-text-light);
    font-weight: 500;
}

.hero-media {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    border: 4px solid white;
    width: 140%;
    max-width: none;
    margin-left: -20%;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

/* Falling Elements */
.falling-elements-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
    /* Behind main content */
}

.falling-element {
    position: absolute;
    top: -150px;
    opacity: 0;
    animation: fallDissolve linear infinite;
    filter: blur(1px);
    /* Slight softness */
}

@keyframes fallDissolve {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }

    15% {
        opacity: 0.15;
    }

    /* Fade in briefly */
    85% {
        opacity: 0.15;
    }

    /* Stay dimmed */
    100% {
        transform: translateY(110vh) rotate(360deg);
        opacity: 0;
    }
}

/* Randomized Elements (Negative delays for immediate start) */
.element-1 {
    left: 5%;
    width: 50px;
    animation-duration: 25s;
    animation-delay: -5s;
}

.element-2 {
    left: 12%;
    width: 70px;
    animation-duration: 35s;
    animation-delay: -15s;
}

.element-3 {
    left: 20%;
    width: 35px;
    animation-duration: 22s;
    animation-delay: -2s;
}

.element-4 {
    left: 28%;
    width: 60px;
    animation-duration: 30s;
    animation-delay: -20s;
}

.element-5 {
    left: 35%;
    width: 90px;
    animation-duration: 28s;
    animation-delay: -8s;
}

.element-6 {
    left: 45%;
    width: 45px;
    animation-duration: 32s;
    animation-delay: -12s;
}

.element-7 {
    left: 52%;
    width: 65px;
    animation-duration: 24s;
    animation-delay: -4s;
}

.element-8 {
    left: 60%;
    width: 40px;
    animation-duration: 38s;
    animation-delay: -22s;
}

.element-9 {
    left: 68%;
    width: 80px;
    animation-duration: 29s;
    animation-delay: -10s;
}

.element-10 {
    left: 75%;
    width: 55px;
    animation-duration: 26s;
    animation-delay: -18s;
}

.element-11 {
    left: 82%;
    width: 30px;
    animation-duration: 33s;
    animation-delay: -6s;
}

.element-12 {
    left: 90%;
    width: 75px;
    animation-duration: 27s;
    animation-delay: -14s;
}

.element-13 {
    left: 15%;
    width: 45px;
    animation-duration: 31s;
    animation-delay: -25s;
}

.element-14 {
    left: 55%;
    width: 60px;
    animation-duration: 23s;
    animation-delay: -1s;
}

.element-15 {
    left: 85%;
    width: 50px;
    animation-duration: 36s;
    animation-delay: -9s;
}

/* About */
.about {
    padding: 6rem 0;
    background: white;
}

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

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--color-grey-600);
}

.about-graphic {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
    margin: 0 auto;
    transition: transform 0.4s var(--ease-spring);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
}

.about-graphic:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Features */
.features {
    padding: 6rem 0;
    background: var(--color-grey-light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.05), transparent);
}

.features-intro {
    max-width: 600px;
    margin: 0 auto 4rem;
    text-align: center;
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.feature-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: left;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    transition: all 0.4s var(--ease-smooth);
    position: relative;
    top: 0;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
    top: -10px;
    box-shadow: 0 20px 40px -5px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 0 1.5rem 0;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--ease-spring);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon svg {
    width: 30px;
    height: 30px;
}

/* Impact - Glassmorphism Polish */
.impact {
    padding: 6rem 0;
    background: linear-gradient(135deg, #2d1b4e 0%, #4a3c6d 50%, #6b5b95 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.impact::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 112, 67, 0.15) 0%, transparent 70%);
    top: -200px;
    right: -200px;
}

.impact h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.impact h3 {
    color: var(--color-pink-accent);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.impact p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
}

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

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

.stat-item {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: background 0.3s;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.12);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    background: linear-gradient(180deg, #fff 0%, #e0e0e0 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    font-size: 0.9rem;
    font-weight: 500;
}

/* CTA */
.cta {
    padding: 6rem 0;
    background: #f3f0ff;
    text-align: center;
    position: relative;
}

.cta-content {
    max-width: 550px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta h2 {
    margin-bottom: 1rem;
    color: #2d1b4e;
}

.cta p {
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    gap: 0.75rem;
}

.cta-input {
    flex: 1;
    padding: 1rem 1.75rem;
    border: 2px solid white;
    border-radius: 50px;
    font-size: 1rem;
    font-family: inherit;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.2s;
}

.cta-input:focus {
    outline: none;
    border-color: var(--color-orange);
    box-shadow: 0 0 0 4px rgba(255, 102, 49, 0.1);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: white;
    border-top: 1px solid var(--color-grey-100);
}

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

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: wrap;
    gap: 2rem;
}

/* .footer-links removed */

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

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-grey-100);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-spring);
    color: var(--color-text-light);
}

.social-links a:hover {
    background: var(--color-orange);
    color: white;
    transform: translateY(-2px);
}

.social-links svg {
    width: 16px;
    height: 16px;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--color-grey-100);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-grey-400);
    width: 100%;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-orange);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(255, 102, 49, 0.3);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s var(--ease-spring);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(255, 102, 49, 0.4);
}

/* Responsive */
@media (max-width: 900px) {

    .hero-grid,
    .impact-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-media {
        order: -1;
        max-width: 100%;
        margin: 0 auto 2rem;
    }

    .hero-image {
        width: 100%;
        margin-left: 0;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .about-image {
        order: -1;
        margin-bottom: 2rem;
    }

    .about-graphic {
        max-width: 300px;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        padding: 2rem;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
        border-radius: 0 0 24px 24px;
    }

    .nav.active {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
        font-size: 1.1rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

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

    .footer-main {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    /* Hide falling elements on tablet/mobile for perf */
    .falling-elements-container {
        display: none;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 8rem 0 4rem;
    }

    .hero-tagline {
        font-size: 1rem;
    }

    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }

    .features-grid {
        gap: 1.5rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .about-graphic {
        max-width: 220px;
    }
}

/* Footer Company Info */
/* .footer-company-info removed/replaced by grid layout below */

/* Footer Grid Layout */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.footer-info {
    text-align: right;
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.4;
}

.footer-info p {
    margin-bottom: 0.25rem;
}

.footer-info strong {
    color: var(--color-heading);
    font-weight: 600;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
        gap: 1rem;
    }

    .footer-info {
        text-align: center;
        margin-top: 1rem;
    }
}