@media (max-width: 600px) {
    .team-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 16px !important;
        overflow-x: visible !important;
        overflow-y: visible !important;
        margin: 0 auto !important;
        padding: 0 0 20px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    .team-grid > .team-card,
    .team-card {
        flex: 1 1 100% !important;
        max-width: 95vw !important;
        width: 95vw !important;
        margin: 0 0 16px 0 !important;
        box-sizing: border-box;
    }
    .team-photo {
        width: 80px !important;
        height: 80px !important;
        margin-bottom: 10px !important;
    }
}
@media (max-width: 600px) {
    .team-container {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .team-card {
        width: 90%;
        margin-bottom: 20px;
        box-sizing: border-box;
    }
    .team-card img {
        width: 80px;
        height: 80px;
        object-fit: cover;
        margin: 0 auto 10px auto;
        display: block;
    }
    .team-card .name,
    .team-card .role,
    .team-card .desc {
        text-align: center;
    }
}
/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFBEB;
    color: #1a1a2e;
    padding-top: 70px;
    overflow-x: hidden;
    /* keep vertical scrolling but hide the native scrollbar to maximize usable width */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

/* hide scrollbar in WebKit browsers but preserve scrolling */
body::-webkit-scrollbar { width: 0; background: transparent; }

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

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3338A0 50%, #2563eb 100%);
    margin-top: -70px;
    padding-top: 70px;
}

.hero-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.wave-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave-blue {
    animation: waveMove 15s ease-in-out infinite;
}

.wave-gold {
    animation: waveMove 12s ease-in-out infinite reverse;
}

@keyframes waveMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    50% { transform: translateX(-30px) translateY(-10px); }
}

/* Banana Leaf Pattern */
.banana-leaf-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse 80px 120px at 20% 30%, rgba(252, 198, 29, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 100px 140px at 80% 70%, rgba(252, 198, 29, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse 60px 100px at 50% 90%, rgba(252, 198, 29, 0.05) 0%, transparent 60%);
    opacity: 0.7;
    animation: leafSway 20s ease-in-out infinite;
}

@keyframes leafSway {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(2deg) scale(1.05); }
}

/* Smoke Animation */
.smoke-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    pointer-events: none;
}

.smoke {
    position: absolute;
    bottom: -50px;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: smokeRise 8s ease-in-out infinite;
    opacity: 0;
}

.smoke-1 {
    left: 20%;
    animation-delay: 0s;
}

.smoke-2 {
    left: 50%;
    animation-delay: 2.5s;
}

.smoke-3 {
    left: 75%;
    animation-delay: 5s;
}

@keyframes smokeRise {
    0% {
        transform: translateY(0) scale(0.8);
        opacity: 0;
    }
    20% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-500px) scale(1.5);
        opacity: 0;
    }
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px 20px;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: fadeUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    animation: fadeUp 1s ease-out 0.2s backwards;
}

.hero-subtitle em {
    font-style: italic;
    color: #FCC61D;
    font-weight: 600;
}

.hero-tagline {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #FCC61D;
    animation: fadeUp 1s ease-out 0.4s backwards;
}

.flag-icon {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* Wave Dividers */
.wave-divider {
    position: relative;
    width: 100%;
    height: 80px;
    overflow: hidden;
    line-height: 0;
}

.wave-divider svg {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

.wave-cream {
    margin-top: -1px;
}

.wave-cream-top {
    margin-bottom: -1px;
}

.wave-gradient {
    height: 100px;
}

/* Our Story Section */
.our-story-section {
    padding: 100px 0;
    background: #FFFBEB;
}

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

.story-image {
    position: relative;
}

.image-placeholder {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #3338A0 0%, #2563eb 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(51, 56, 160, 0.3);
}

.breakfast-illustration {
    text-align: center;
    color: white;
}

.breakfast-illustration i {
    font-size: 5rem;
    color: #FCC61D;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.breakfast-illustration p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.image-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(252, 198, 29, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
}

.story-text {
    animation: fadeUp 1s ease-out;
}

.section-label {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #3338A0;
    background: rgba(51, 56, 160, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.story-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 25px;
    line-height: 1.2;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-text em {
    font-style: italic;
    color: #3338A0;
}

.story-text strong {
    font-weight: 600;
    color: #1a1a2e;
}

.story-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #3338A0 0%, #2563eb 100%);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: 0 4px 15px rgba(51, 56, 160, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.badge:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(51, 56, 160, 0.3);
}

.badge i {
    color: #FCC61D;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #3338A0 0%, #FCC61D 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mission-card,
.vision-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 50px 40px;
    text-align: center;
    color: white;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 1s ease-out;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 2.5rem;
}

.mission-card h3,
.vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-card p,
.vision-card p {
    font-size: 1.15rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* Journey Timeline Section */
.journey-section {
    padding: 100px 0;
    background: #FFFBEB;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.2rem;
    color: #4a5568;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Timeline Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #3338A0 0%, #FCC61D 100%);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    padding-left: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-right: auto;
    padding-right: 50px;
}

.timeline-marker {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: #FCC61D;
    border: 5px solid #3338A0;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 8px rgba(252, 198, 29, 0.2);
    animation: markerPulse 2s ease-in-out infinite;
}

@keyframes markerPulse {
    0%, 100% { box-shadow: 0 0 0 8px rgba(252, 198, 29, 0.2); }
    50% { box-shadow: 0 0 0 15px rgba(252, 198, 29, 0.1); }
}

.timeline-content {
    background: white;
    padding: 30px;
    border-radius: 20px;
    width: 45%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-left: 5px solid #FCC61D;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.timeline-content h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #3338A0;
    margin-bottom: 10px;
}

.timeline-content h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.timeline-content p {
    font-size: 1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 0;
    background: #3338A0;
    color: white;
}

.team-section .section-header h2,
.team-section .section-label {
    color: white;
}

.team-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

.team-section .section-label {
    background: rgba(255, 255, 255, 0.15);
}

.team-grid {
    /* Horizontal row tuned to show up to 5 cards on wide desktop screens.
       Uses a smaller gap and flexible card basis so 5 items can fit inside
       the centered .container (max-width:1200px). Mobile/tablet fallbacks
       are handled by the existing media queries below. */
    display: flex;
    flex-direction: row;
    gap: 24px;
    margin: 40px auto 0;
    padding: 12px 20px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    align-items: stretch;

    /* hide scrollbar visuals while preserving scrolling */
    -ms-overflow-style: none; /* IE/Edge */
    scrollbar-width: none; /* Firefox */
}

.team-grid::-webkit-scrollbar { height: 0; width: 0; background: transparent; }

.team-grid > .team-card {
    /* calc((100% - totalGap) / 5) -> for 5 columns across the available width
       totalGap = 4 * 24px = 96px */
    flex: 0 0 calc((100% - 96px) / 5);
    max-width: calc((100% - 96px) / 5);
    scroll-snap-align: start;
}

.team-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
    animation: fadeUp 1s ease-out;
}

.team-card:hover {
    transform: translateY(-10px);
    background: rgba(252, 198, 29, 0.15);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: #FCC61D;
}

.team-photo {
    position: relative;
    /* slightly smaller photo so five cards can comfortably fit
       while keeping a strong visual presence */
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.photo-circle {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FCC61D 0%, #C59560 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #3338A0;
    box-shadow: 0 10px 30px rgba(252, 198, 29, 0.3);
    transition: transform 0.3s ease;
}

/* Styling for inserted team images (replace the icon with an img tag) */
.team-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.team-card:hover .photo-circle {
    transform: scale(1.1);
    animation: photoPulse 1s ease-in-out infinite;
}

@keyframes photoPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(252, 198, 29, 0.3); }
    50% { box-shadow: 0 15px 40px rgba(252, 198, 29, 0.5); }
}

.sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FCC61D;
    border-radius: 50%;
    animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-1 {
    top: 10px;
    right: 10px;
    animation-delay: 0s;
}

.sparkle-2 {
    bottom: 10px;
    left: 10px;
    animation-delay: 1.5s;
}

@keyframes sparkleFloat {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.6; }
    50% { transform: translateY(-10px) scale(1.3); opacity: 1; }
}

.team-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.team-card .role {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    color: #FCC61D;
    font-weight: 500;
    margin-bottom: 10px;
}

.team-card .tagline {
    font-size: 0.95rem;
    font-style: italic;
    opacity: 0.85;
    line-height: 1.5;
}

/* Promise Section */
.promise-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FCC61D 0%, #C59560 100%);
}

.promise-heading {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    color: #1a1a2e;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.4;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.promise-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 25px;
    padding: 50px 35px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    animation: fadeUp 1s ease-out;
}

.promise-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

.promise-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #3338A0 0%, #2563eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    color: #FCC61D;
    box-shadow: 0 10px 25px rgba(51, 56, 160, 0.3);
    transition: transform 0.3s ease;
}

.promise-card:hover .promise-icon {
    transform: rotate(360deg);
}

.promise-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 15px;
}

.promise-card p {
    font-size: 1.05rem;
    color: #4a5568;
    line-height: 1.7;
}

/* CTA Footer Section */
.cta-footer {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e3a8a 0%, #3338A0 50%, #2563eb 100%);
}

.cta-waves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-wave-layer {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: waveMove 18s ease-in-out infinite;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    padding: 60px 20px;
}

.cta-content h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    animation: fadeUp 1s ease-out;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #FCC61D 0%, #C59560 100%);
    color: #1a1a2e;
    padding: 20px 50px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(252, 198, 29, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: fadeUp 1s ease-out 0.2s backwards;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 50px rgba(252, 198, 29, 0.6);
}

.cta-button i {
    font-size: 1.5rem;
}

.cta-tagline {
    margin-top: 30px;
    font-size: 1.1rem;
    opacity: 0.9;
    font-style: italic;
    animation: fadeUp 1s ease-out 0.4s backwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .story-text h2,
    .section-header h2 {
        font-size: 2rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 80px);
        margin-left: auto;
        padding-left: 30px;
    }

    .timeline-marker {
        left: 20px;
        transform: translateX(0);
    }

    .team-grid {
        /* keep a horizontal row on tablets but allow 2-up layout when space allows */
        display: flex;
        gap: 24px;
        padding: 8px 20px;
    }

    .promise-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .promise-heading {
        font-size: 1.8rem;
    }

    .cta-content h2 {
        font-size: 2.2rem;
    }

    .cta-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    /* Removed team section mobile responsive styles */
    .timeline-content h4 {
        font-size: 1.2rem;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }
}

/* Extra Small Devices */
@media (max-width: 375px) {
    .hero-title {
        font-size: 1.75rem;
    }

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

    .story-text h2,
    .section-header h2 {
        font-size: 1.5rem;
    }

    .story-text p {
        font-size: 0.95rem;
    }

    .badge {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }

    .card-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .timeline-content {
        padding: 25px;
    }

    .timeline-content h3 {
        font-size: 1.3rem;
    }

    .timeline-content h4 {
        font-size: 1.1rem;
    }

    .team-card {
        padding: 30px 20px;
    }

    .promise-card {
        padding: 40px 25px;
    }

    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-button {
        padding: 14px 30px;
        font-size: 1rem;
    }
}