:root {
    --primary-color: #5a588b;
    --primary-light: #7b78b5;
    --secondary-color: #ffefc8;
    --tertiary-color: #fdead9;
    --text-dark: #2d2d2d;
    --text-light: #ffffff;
    --bg-light: #fefefe;
    
    --font-main: 'Outfit', sans-serif;
    
    --transition: all 0.3s ease;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    
    --shadow-sm: 0 4px 6px rgba(90, 88, 139, 0.05);
    --shadow-md: 0 10px 20px rgba(90, 88, 139, 0.1);
    --shadow-lg: 0 20px 40px rgba(90, 88, 139, 0.15);
}

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

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

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 15px auto 40px;
    border-radius: 2px;
}

.mobile-break {
    display: none;
}

/* Typography */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-color);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    margin-bottom: 15px;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

p {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: #555;
}

/* Buttons */
.btn-primary, .btn-primary-sm, .btn-secondary {
    display: inline-block;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 16px 32px;
    font-size: 1.1rem;
    box-shadow: 0 8px 15px rgba(90, 88, 139, 0.3);
}

.btn-primary:hover {
    background-color: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 12px 20px rgba(90, 88, 139, 0.4);
}

.btn-primary-sm {
    background-color: var(--primary-color);
    color: var(--text-light);
    padding: 10px 24px;
    font-size: 1rem;
}

.btn-primary-sm:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
}

.btn-secondary:hover {
    background-color: #ffe199;
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a:not([class^="btn"]) {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-links a:not([class^="btn"])::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-links a:not([class^="btn"]):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 160px 0 100px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at top right, #fff4e6 0%, #fdfbf7 60%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 239, 200, 0.4) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

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

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-text h1 {
    color: var(--primary-color);
    font-size: clamp(2.5rem, 4.5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 25px;
}

.highlight-text {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 30%;
    background-color: var(--secondary-color);
    z-index: -1;
    transform: skewX(-15deg);
}

.hero-text p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    color: #333;
    font-weight: 500;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
    max-height: 600px;
}

/* Floating Animation */
.floating {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* About Section */
.about {
    padding: 120px 0;
    background: linear-gradient(135deg, #f4eaff 0%, #fff0e6 100%);
    overflow: hidden;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-logo {
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.about-desc {
    font-size: 1.3rem;
    color: #222;
    font-weight: 600;
    line-height: 1.6;
    text-align: center;
}

.about-desc mark {
    background-color: var(--secondary-color);
    color: inherit;
    padding: 0 8px;
    border-radius: 4px;
    font-weight: 700;
}

.about-image img {
    width: 100%;
    height: auto;
    max-width: 500px;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
}

/* Empathy Section */
.empathy {
    padding: 80px 0;
    background-color: #fff;
}

.empathy-box {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--tertiary-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    padding: 50px;
    box-shadow: var(--shadow-sm);
}

.empathy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.empathy-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.empathy-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    text-align: center;
}

.value-list {
    list-style: none;
    text-align: left;
    max-width: 850px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.value-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff;
    padding: 18px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--primary-color);
    transition: var(--transition);
    line-height: 1.4;
}

.img-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-wrapper::before {
    content: '';
    position: absolute;
    width: 85px;
    height: 85px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    z-index: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: var(--transition);
}

.img-wrapper-large::before {
    width: 95px;
    height: 95px;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card:hover .img-wrapper::before {
    transform: translate(-50%, -50%) scale(1.1);
    background-color: var(--tertiary-color);
}

.feature-card:hover .feature-img {
    transform: scale(1.05) translateY(-5px);
}

.value-list li:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background-color: var(--secondary-color);
    color: var(--primary-color);
    border-radius: 50%;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

/* Features Section */
.features {
    padding: 100px 0;
    background-color: #fafafa;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: var(--border-radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
    transform-origin: left;
}

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

.feature-card:hover::before {
    transform: scaleX(1);
}

.icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: var(--transition);
}

.feature-card:hover .icon-wrapper {
    background: var(--primary-color);
}

.icon {
    font-size: 2.5rem;
}

/* Mentors Section */
.mentors {
    padding: 100px 0;
    background-color: #fff;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
    align-items: start;
}

.mentor-card {
    background: #fafafa;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-sm);
    padding: 30px 20px;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
}

.mentor-toggle {
    display: none;
}

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

.mentor-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.mentor-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--secondary-color);
}

.mentor-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.mentor-info h3 {
    font-size: 1.05rem; /* Reduced to fit in 1 line */
    color: var(--primary-color);
    margin-bottom: 5px;
}

.mentor-title {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
}

.mentor-ig {
    font-size: 0.9rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    vertical-align: middle;
    gap: 5px;
}

.mentor-ig svg {
    flex-shrink: 0;
    stroke: var(--primary-color); /* Explicitly match icon color with text */
    display: inline-block;
}

.mentor-ig:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Mentor Concerns (Tags) */
.mentor-concerns {
    border-top: 1px solid rgba(0,0,0,0.1);
    padding-top: 15px;
}

.mentor-concerns h4 {
    font-size: 0.9rem;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.concern-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    background-color: var(--tertiary-color);
    color: var(--primary-color);
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 0.85rem; /* Slightly larger to encourage wrapping to 3 lines */
    font-weight: 600;
    transition: var(--transition);
}

.tag:hover {
    background-color: var(--primary-color);
    color: #fff;
    transform: translateY(-2px);
}

.tags-sm {
    gap: 4px;
}

.tags-sm .tag {
    font-size: 0.75rem;
}

/* Videos Section */
.videos-header {
    margin-top: 100px;
    margin-bottom: -40px;
}

.videos-section {
    margin-top: 50px;
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.video-card {
    position: relative;
    width: 260px;
    max-width: 100%;
}

.video-wrapper {
    position: relative;
    overflow: hidden;
    background: #000;
}

.video-wrapper video {
    width: 100%;
    height: auto;
    display: block;
}

.video-title {
    padding: 20px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.2rem;
    background: var(--tertiary-color);
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0 20px 0;
    background-color: var(--tertiary-color);
    overflow: hidden;
}

.testimonials h2 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 30px 0 50px;
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

.marquee-group {
    display: flex;
    gap: 30px;
}

.marquee-group img {
    height: 350px;
    object-fit: contain;
    transition: var(--transition);
}

.marquee-group img:hover {
    transform: scale(1.03);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        /* Move exactly the width of one group + one gap */
        transform: translateX(calc(-50% - 15px));
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--primary-color);
    color: #fff;
}

.cta-section h2 {
    color: #fff;
    margin-bottom: 20px;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-section .btn-primary {
    background-color: var(--secondary-color);
    color: var(--primary-color);
}

.cta-section .btn-primary:hover {
    background-color: #fff;
}

/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 50px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-logo {
    height: 40px;
}

footer p {
    color: #aaa;
    margin-bottom: 0;
    font-size: 0.9rem;
}

.footer-center a {
    color: #222; /* Matches footer background to hide it */
    text-decoration: none;
    cursor: default;
}

.footer-social {
    display: flex;
    gap: 15px;
    align-items: center;
}

.footer-social a {
    color: #aaa;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

/* Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up.active, .reveal-left.active, .reveal-right.active {
    opacity: 1;
    transform: translate(0, 0);
}

/* Delay for staggered animations */
[style*="--delay"] {
    transition-delay: var(--delay);
}

/* Responsive */
.hamburger {
    display: none;
}

@media (max-width: 992px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero {
        padding-top: 120px;
    }
}

@media (max-width: 768px) {
    /* Navbar Hamburger */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
    }

    .hamburger span {
        width: 25px;
        height: 3px;
        background-color: var(--primary-color);
        border-radius: 3px;
        transition: 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 15px rgba(0,0,0,0.05);
        display: none;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .logo {
        font-size: 0.8rem;
    }

    .logo-img {
        height: 30px;
    }
    
    /* Hero Section */
    .hero {
        padding-bottom: 40px;
        min-height: auto;
    }

    .hero-image {
        display: none;
    }

    .hero-actions {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero-actions .btn-primary, .hero-actions .btn-secondary {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    /* Section Spacing Reductions */
    .about { padding: 50px 0 30px 0; }
    .empathy { padding: 50px 0 30px 0; }
    .features { padding: 50px 0 30px 0; }
    .mentors { padding: 50px 0 30px 0; }
    .videos-header { margin-top: 50px; margin-bottom: -10px; }
    .testimonials { padding: 50px 0 20px 0; }
    footer { padding: 15px 0 20px 0; }
    
    .empathy-box { padding: 30px 15px; }

    /* Mobile Header Font Sizes */
    .empathy-title {
        font-size: 1.4rem;
    }
    .features h2,
    .mentors h2,
    .testimonials h2 {
        font-size: 1.5rem;
    }
    .videos-header h2 {
        font-size: 1.3rem;
        white-space: nowrap;
    }

    .about-content {
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        gap: 15px;
    }

    .about-text {
        display: contents;
    }

    .about-logo {
        order: 1;
        grid-column: 1;
        margin-bottom: 0;
    }

    .about-image {
        order: 2;
        grid-column: 2;
        margin-top: 0;
    }

    .about-desc {
        order: 3;
        grid-column: 1 / -1;
        text-align: center;
        margin-top: 15px;
        font-size: 1.05rem;
        padding: 0 5px;
        line-height: 1.5;
    }
    
    /* Value & Features */
    .value-list, .feature-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .value-list li {
        padding: 10px 10px;
        gap: 8px;
        font-size: 0.8rem;
    }

    .feature-card {
        padding: 15px 10px;
    }
    
    .feature-card .img-wrapper {
        width: 60px;
        height: 60px;
        margin: 0 auto 15px;
    }
    
    .feature-card .img-wrapper::before {
        width: 50px;
        height: 50px;
    }
    
    .feature-card .img-wrapper-large::before {
        width: 55px;
        height: 55px;
    }

    .check-icon {
        flex-shrink: 0;
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }

    .feature-card h3, .value-item h3 {
        font-size: 0.95rem;
        margin-bottom: 5px;
    }

    .feature-card p, .value-item p {
        font-size: 0.75rem;
    }

    .feature-card .icon-circle {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    

    /* Videos */
    .videos-section {
        gap: 15px;
    }

    .video-card {
        width: calc(50% - 7.5px);
    }

    .video-title {
        font-size: 0.85rem;
        padding: 10px;
    }
    
    /* Mentor Individual Collapse */
    .mentor-card {
        padding: 15px 15px 8px 15px;
    }

    .mentor-header {
        margin-bottom: 0;
        padding-right: 0;
    }

    .mentor-info h3 {
        font-size: 0.95rem; /* Enlarged slightly but safe from wrapping */
    }

    .mentor-title {
        font-size: 0.8rem; /* Shrunk to make the name stand out more */
    }

    .mentor-ig {
        font-size: 0.8rem; /* Shrunk to match the hierarchy */
    }

    .mentor-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        border: none;
        background: var(--primary-color);
        color: #fff;
        cursor: pointer;
        position: absolute;
        bottom: 12px; /* Set distance from bottom when closed */
        top: auto;
        right: 15px;
        transform: none;
        transition: transform 0.3s ease, background-color 0.3s;
        padding: 0;
        z-index: 5;
    }

    .mentor-toggle svg {
        transition: transform 0.3s ease;
    }

    .mentor-concerns {
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        margin-top: 0;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, margin-top 0.3s ease;
    }

    .mentor-card.active-concerns .mentor-concerns {
        max-height: 300px;
        opacity: 1;
        margin-top: 20px;
    }

    .mentor-card.active-concerns {
        padding-bottom: 20px;
    }

    .mentor-card.active-concerns .mentor-header {
        margin-bottom: 15px;
    }

    .mentor-card.active-concerns .mentor-toggle {
        bottom: auto;
        top: 85px; /* Keep toggle button near header when expanded */
        transform: rotate(180deg);
    }
    /* Testimonials */
    .mobile-break {
        display: block;
    }

    .marquee-container {
        padding: 10px 0 15px; /* Shrank top/bottom empty space around marquee images */
    }

    .marquee-group img {
        height: 250px;
    }

    /* Footer */
    .footer-content {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 5px;
    }

    .footer-brand {
        gap: 5px;
    }

    .footer-logo {
        height: 20px !important;
    }

    .footer-brand p {
        font-size: 0.6rem;
        white-space: nowrap;
    }
    
    .footer-center {
        display: none;
    }

    .footer-social {
        gap: 5px;
    }

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