/* ===== CSS RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Colors */
    --color-dark: #343331;
    --color-light: #faf5f5;
    --color-coral: #f49895;
    --color-blue: #374ef2;

    /* Typography */
    --font-heading: 'Bebas Neue';
    --font-body: 'Poppins';

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: var(--color-light);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

/* Animated Background Elements */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(244, 152, 149, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(55, 78, 242, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(244, 152, 149, 0.05) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes backgroundFloat {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }

    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

/* Offset anchor jumps so the sticky header doesn't cover section tops */
section[id] {
    scroll-margin-top: 90px;
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    letter-spacing: 1px;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
    position: relative;
    padding-bottom: 0.75rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-coral) 0%, var(--color-blue) 100%);
    border-radius: 2px;
}

.section-title.center {
    text-align: center;
}

.section-title.center::after {
    left: 50%;
    transform: translateX(-50%);
}

/* Color Utility Classes */
.text-blue {
    color: var(--color-blue) !important;
}

.text-coral {
    color: var(--color-coral) !important;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary,
.btn-blue,
.btn-whatsapp {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-family: var(--font-body);
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.btn-blue {
    background-color: var(--color-blue);
    color: white;
    border-color: var(--color-blue);
}

.btn-blue:hover {
    background-color: transparent;
    color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(55, 78, 242, 0.3);
}

.btn-primary {
    background-color: var(--color-coral);
    color: white;
    border-color: var(--color-coral);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--color-coral);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 152, 149, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-blue);
    border-color: var(--color-blue);
}

.btn-secondary:hover {
    background-color: var(--color-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(55, 78, 242, 0.25);
}

.btn-whatsapp {
    background-color: #25d366;
    color: white;
    border-color: #25d366;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
}

.btn-whatsapp:hover {
    background-color: #1da851;
    border-color: #1da851;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
}

.wa-icon {
    width: 1.2em;
    height: 1.2em;
    fill: currentColor;
    flex-shrink: 0;
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.125rem;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(244, 152, 149, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
}

.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    letter-spacing: 2px;
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-name {
    font-size: 2rem;
    letter-spacing: 2px;
}

.logo-tagline {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    color: var(--color-dark);
    opacity: 0.65;
}

.nav {
    display: flex;
    gap: var(--spacing-md);
    align-items: center;
}

.nav a {
    font-family: var(--font-body);
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
}

.nav a:not(.btn-primary)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--color-coral) 0%, var(--color-blue) 100%);
    transition: var(--transition);
}

.nav a:not(.btn-primary):hover::after {
    width: 100%;
}

.nav a:not(.btn-primary):hover {
    color: var(--color-blue);
}

.nav .btn-primary,
.nav .btn-whatsapp {
    padding: 0.625rem 1.5rem;
}

/* Mobile Menu Toggle button styling */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* Hamburger transition to X */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
    background-color: var(--color-coral);
}

.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
    background-color: var(--color-coral);
}

/* ===== HERO SECTION ===== */
.hero {
    padding: 2.25rem 0 var(--spacing-lg);
    background: linear-gradient(135deg, var(--color-light) 0%, #fff 100%);
}

/* Wider container so the headline wraps shorter and the CTAs sit above the fold */
.hero .container {
    max-width: 1340px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: var(--spacing-md);
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: 2.25rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    line-height: 1.15;
    letter-spacing: 1px;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
    line-height: 1.2;
    letter-spacing: 1px;
}

.hero-credentials {
    list-style: none;
    margin-bottom: var(--spacing-md);
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.hero-credentials li {
    font-size: 1rem;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(244, 152, 149, 0.06) 0%, rgba(55, 78, 242, 0.06) 100%);
    border: 1px solid rgba(244, 152, 149, 0.25);
    border-radius: 50px;
    font-weight: 500;
    white-space: nowrap;
    transition: var(--transition);
}

.hero-credentials li:hover {
    border-color: var(--color-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(55, 78, 242, 0.1);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-photo {
    width: 100%;
    max-width: 370px;
    height: auto;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 32%;
    aspect-ratio: 1;
    box-shadow: 0 20px 60px rgba(244, 152, 149, 0.3);
    animation: float 6s ease-in-out infinite;
    border: 8px solid white;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ===== GREW UP SECTION ===== */
.grew-up {
    padding: var(--spacing-lg) 0;
    background: linear-gradient(135deg, rgba(244, 152, 149, 0.06) 0%, rgba(55, 78, 242, 0.06) 100%);
    border-top: 3px solid var(--color-coral);
    border-bottom: 3px solid var(--color-coral);
}

.grew-up-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.grew-up-title {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

.grew-up-list {
    list-style: none;
    margin-bottom: var(--spacing-md);
    text-align: left;
    display: inline-block;
}

.grew-up-list li {
    font-size: 1.125rem;
    padding: 0.65rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--color-dark);
    line-height: 1.6;
}

.grew-up-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.3;
}

.grew-up-message {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: var(--spacing-md);
}

.grew-up-message strong {
    color: var(--color-coral);
    font-weight: 700;
}

/* ===== ABOUT SECTION ===== */
.about {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-photo {
    width: 100%;
    max-width: 350px;
    height: auto;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center 25%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(55, 78, 242, 0.2);
    border: 6px solid white;
}

.about-description {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
}

.about-mission-list {
    list-style: none;
    margin: 1.5rem auto 0 auto;
    padding: 0;
    max-width: 600px;
    width: 100%;
}

.about-mission-list li {
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--color-dark);
}

.about-mission-list li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: var(--color-blue);
    font-size: 1.4rem;
    font-weight: bold;
    line-height: 1.4;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: var(--spacing-xl) 0;
    background-color: var(--color-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
    margin: var(--spacing-lg) auto 0;
    max-width: 850px;
}

.service-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-coral) 0%, var(--color-blue) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(244, 152, 149, 0.3);
}

.service-icon {
    font-size: 2.25rem;
    margin: 0 auto var(--spacing-sm) auto;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(244, 152, 149, 0.1) 0%, rgba(55, 78, 242, 0.1) 100%);
    border-radius: 50%;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-blue) 100%);
    transform: scale(1.1);
}

.service-title {
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.service-description {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-dark);
    opacity: 0.8;
}

/* ===== PRODUCTS SECTION ===== */
.products {
    padding: var(--spacing-xl) 0;
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.product-card {
    background: var(--color-light);
    padding: var(--spacing-md);
    border-radius: 20px;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.product-card.featured {
    background: linear-gradient(135deg, rgba(244, 152, 149, 0.1) 0%, rgba(55, 78, 242, 0.1) 100%);
    border-color: var(--color-coral);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.product-badge,
.product-price {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.product-badge {
    background-color: var(--color-coral);
    color: white;
}

.product-price {
    background-color: var(--color-blue);
    color: white;
    font-size: 1.25rem;
}

.product-title {
    font-size: 1.5rem;
    color: var(--color-dark);
    margin-bottom: var(--spacing-sm);
}

.product-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
    color: var(--color-dark);
    opacity: 0.8;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, white 0%, var(--color-light) 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, var(--color-coral) 50%, transparent 100%);
    opacity: 0.3;
}

.testimonials-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-dark);
    opacity: 0.7;
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.testimonial-card {
    background: white;
    padding: 0.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--color-coral);
}

.testimonial-card.featured-testimonial {
    border-color: var(--color-coral);
}

.testimonial-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--color-coral) 0%, var(--color-blue) 100%);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 3.5rem;
    color: white;
    margin-bottom: var(--spacing-sm);
}

.cta-subtitle {
    font-size: 1.25rem;
    color: white;
    margin-bottom: var(--spacing-md);
    opacity: 0.95;
}

.cta .btn-primary {
    background-color: white;
    color: var(--color-coral);
    border-color: white;
}

.cta .btn-primary:hover {
    background-color: transparent;
    color: white;
    border-color: white;
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--color-dark);
    color: white;
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    padding-bottom: var(--spacing-md);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .logo {
    color: white;
}

.footer-tagline {
    font-size: 0.875rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
    opacity: 0.8;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--color-coral);
}

.footer-bottom {
    text-align: center;
    opacity: 0.6;
    font-size: 0.875rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 968px) {
    :root {
        --spacing-md: 1.5rem;
        --spacing-lg: 2.5rem;
        --spacing-xl: 4rem;
    }

    .hero-content,
    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image,
    .about-image {
        order: -1;
    }

    .hero-buttons {
        justify-content: center;
    }

    /* Stack the hero text so the credential cards can drop below the buttons */
    .hero-text {
        display: flex;
        flex-direction: column;
    }

    .hero-credentials {
        order: 1;
        margin-top: var(--spacing-md);
        margin-bottom: 0;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subheadline {
        font-size: 1.9rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .cta-title {
        font-size: 2.25rem;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-sm: 0.75rem;
        --spacing-md: 1.25rem;
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
    }

    /* iOS Safari Scroll Fixes: Disable rotating moving background & use static background */
    body::before {
        display: none !important;
    }

    body {
        background: radial-gradient(circle at 10% 10%, rgba(244, 152, 149, 0.05) 0%, transparent 40%),
                    radial-gradient(circle at 90% 90%, rgba(55, 78, 242, 0.05) 0%, transparent 40%) !important;
        background-attachment: scroll !important;
    }

    /* Mobile Hamburger Menu */
    .mobile-menu-toggle {
        display: flex;
    }

    .header-content {
        justify-content: space-between;
        padding: 0.75rem 0;
    }

    .logo-name {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }

    /* Hide the long tagline on mobile to prevent viewport stretch and hamburger overlap */
    .logo-tagline {
        display: none !important;
    }

    .nav {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: calc(-1 * var(--spacing-md));
        right: calc(-1 * var(--spacing-md));
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        padding: var(--spacing-md) var(--spacing-sm);
        border-bottom: 3px solid var(--color-coral);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        gap: 1.25rem;
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        z-index: 999;
        align-items: center;
    }

    .nav.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
        font-size: 1.1rem;
    }

    .nav a:not(.btn-primary)::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-subheadline {
        font-size: 1.6rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-credentials {
        justify-content: center;
        gap: 0.5rem;
    }

    .hero-credentials li {
        font-size: 0.875rem;
        padding: 0.4rem 1rem;
    }

    .hero-photo {
        max-width: 280px;
        border-width: 5px;
    }

    .about-photo {
        max-width: 260px;
        border-width: 4px;
    }

    .grew-up-list {
        max-width: 100%;
        box-sizing: border-box;
    }

    .footer-content {
        flex-direction: column;
        gap: var(--spacing-md);
        text-align: center;
    }

    .footer-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-blue,
    .btn-whatsapp,
    .btn-large {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subheadline {
        font-size: 1.4rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    /* Stack credential pills so long labels don't overflow tiny screens */
    .hero-credentials {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    .hero-credentials li {
        white-space: normal;
        text-align: center;
    }

    .section-title,
    .grew-up-title,
    .cta-title {
        font-size: 2rem;
    }

    .grew-up-list li {
        font-size: 1rem;
    }
}