/* Dinaledi Greens - Modern Styles */

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

:root {
    /* Modern Color Palette - Vibrant & Natural */
    --green-dark: #1a5f3f;
    --green-medium: #4a9d5f;
    --green-light: #90d9a8;
    --green-accent: #3d8b57;
    --cream: #faf9f6;
    --honey: #e8a865;
    --terracotta: #c85a47;
    --white: #ffffff;
    --whatsapp: #25D366;
    --text-dark: #2a3529;
    --text-medium: #556052;
    --text-light: #8a9186;
    --shadow-sm: 0 2px 8px rgba(26, 95, 63, 0.08);
    --shadow-md: 0 4px 16px rgba(26, 95, 63, 0.12);
    --shadow-lg: 0 8px 32px rgba(26, 95, 63, 0.16);
    --shadow-xl: 0 16px 48px rgba(26, 95, 63, 0.2);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    background-color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--green-dark);
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--green-dark);
    color: white;
    padding: 0.5rem 1rem;
    text-decoration: none;
    z-index: 100;
}

.skip-link:focus {
    top: 0;
}

/* ========================================
   NAVIGATION
======================================== */
nav {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-accent) 100%);
    color: white;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

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

nav .logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: white;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

nav .logo:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

nav .logo img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

nav .logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.5px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding: 0.25rem 0;
}

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

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: var(--green-light);
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    background-image: linear-gradient(135deg, rgba(26, 95, 63, 0.75) 0%, rgba(61, 139, 87, 0.65) 100%),
                      url('images/hibiscus-products-bulk.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent, var(--cream));
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at top right, rgba(144, 217, 168, 0.1), transparent 60%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    max-width: 900px;
    padding: 2rem;
}

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

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: 1.5px;
    color: white;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* ========================================
   BUTTONS
======================================== */
.btn-whatsapp {
    background: linear-gradient(135deg, var(--whatsapp) 0%, #1fb855 100%);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.25);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-whatsapp:hover::before {
    width: 300px;
    height: 300px;
}

.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
}

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

.btn-whatsapp svg {
    width: 24px;
    height: 24px;
    fill: white;
    position: relative;
    z-index: 1;
}

.btn-whatsapp span {
    position: relative;
    z-index: 1;
}

/* ========================================
   SECTIONS
======================================== */
section {
    padding: 5rem 2rem;
}

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

section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--green-dark);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}

section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-medium), var(--honey), var(--terracotta));
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(74, 157, 95, 0.3);
}

/* ========================================
   ABOUT SECTION
======================================== */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 4px solid var(--white);
}

.about-image:hover {
    transform: scale(1.03) rotate(1deg);
    box-shadow: var(--shadow-xl);
}

.about-text {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-medium);
}

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

.about-text p:last-child {
    margin-bottom: 0;
}

/* ========================================
   PRODUCTS SECTION
======================================== */
#products {
    background-color: white;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.4s ease;
    border: 1px solid rgba(144, 217, 168, 0.2);
}

.product-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--green-light);
}

.product-placeholder {
    background: linear-gradient(135deg, var(--green-medium) 0%, var(--green-dark) 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 1rem;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.product-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

.product-hero {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream), var(--white));
    border-radius: 20px 20px 0 0;
}

.product-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.product-hero img:hover {
    transform: scale(1.05);
}

.product-images {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, var(--cream), var(--white));
}

.product-images img {
    width: calc(50% - 0.25rem);
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-sm);
}

.product-images img:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-md);
    z-index: 1;
}

.product-images img:only-child {
    width: 100%;
}

.product-info {
    padding: 1.75rem;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
    color: var(--green-dark);
    font-weight: 700;
}

.product-description {
    color: var(--text-medium);
    font-size: 0.98rem;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.product-sizes {
    margin: 1.25rem 0;
}

.product-size {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    padding: 0.5rem 0;
    color: var(--text-medium);
    border-bottom: 1px solid rgba(144, 217, 168, 0.15);
}

.product-size:last-child {
    border-bottom: none;
}

.product-price {
    font-weight: 700;
    color: var(--terracotta);
    font-size: 1.15rem;
}

.product-card .btn-whatsapp {
    width: 100%;
    justify-content: center;
    margin-top: 1rem;
}

/* ========================================
   WHY CHOOSE US SECTION
======================================== */
#why-choose {
    background-color: white;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 1rem;
}

.why-card {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    position: relative;
}

.why-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, var(--green-light), var(--honey));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.why-card:hover::before {
    opacity: 1;
}

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

.why-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    filter: drop-shadow(0 4px 8px rgba(26, 95, 63, 0.15));
}

.why-card h3 {
    margin-bottom: 1rem;
    color: var(--green-dark);
    font-size: 1.4rem;
    font-weight: 700;
}

.why-card p {
    color: var(--text-medium);
    line-height: 1.7;
    font-size: 1.02rem;
}

/* ========================================
   DELIVERY SECTION
======================================== */
.delivery-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.delivery-icon {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    animation: bounce 2s infinite;
    filter: drop-shadow(0 4px 8px rgba(26, 95, 63, 0.2));
}

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

.delivery-content p {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
    line-height: 1.9;
    color: var(--text-medium);
}

.delivery-note {
    background: linear-gradient(135deg, var(--white) 0%, var(--cream) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid var(--honey);
    margin-top: 2.5rem;
    box-shadow: var(--shadow-md);
}

.delivery-note strong {
    color: var(--green-dark);
}

/* ========================================
   FAQ SECTION
======================================== */
#faq {
    background-color: white;
}

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

.faq-item {
    background-color: var(--cream);
    margin-bottom: 1.25rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(144, 217, 168, 0.2);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--green-light);
}

.faq-question {
    width: 100%;
    background-color: transparent;
    border: none;
    padding: 1.5rem;
    text-align: left;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--green-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Nunito', sans-serif;
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(74, 157, 95, 0.1), rgba(232, 168, 101, 0.08));
    padding-left: 2rem;
}

.faq-question::after {
    content: '+';
    font-size: 1.8rem;
    transition: transform 0.3s ease;
    color: var(--green-medium);
    font-weight: 400;
}

.faq-question.active::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    padding: 0 1.5rem;
}

.faq-answer.active {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--text-medium);
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ========================================
   CONTACT SECTION
======================================== */
#contact {
    background-color: white;
}

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

.contact-intro {
    margin-bottom: 3rem;
}

.contact-intro p {
    font-size: 1.2rem;
    color: var(--text-medium);
    line-height: 1.9;
    max-width: 650px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    text-align: center;
    padding: 1.5rem;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: linear-gradient(135deg, var(--cream), var(--white));
    transform: translateY(-5px);
}

.contact-icon {
    margin-bottom: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-icon svg {
    width: 3rem;
    height: 3rem;
    fill: var(--green-medium);
    filter: drop-shadow(0 2px 4px rgba(26, 95, 63, 0.15));
    transition: all 0.3s ease;
}

.contact-method:hover .contact-icon svg {
    fill: var(--green-accent);
    transform: scale(1.1);
}

.contact-method h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: var(--green-dark);
    font-weight: 700;
}

.contact-method p {
    color: var(--text-medium);
    margin: 0.25rem 0;
    line-height: 1.7;
    font-size: 1.05rem;
}

.contact-method a {
    color: var(--green-medium);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: var(--green-dark);
    text-decoration: underline;
}

.contact-divider {
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--green-medium), var(--honey));
    margin: 3rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(74, 157, 95, 0.3);
}

.contact-cta {
    margin-top: 3rem;
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.contact-cta .btn-whatsapp {
    font-size: 1.2rem;
    padding: 1.2rem 2.75rem;
}

/* ========================================
   FOOTER
======================================== */
footer {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-accent) 100%);
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

footer .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    text-decoration: none;
    color: white;
    transition: all 0.3s ease;
}

footer .logo:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}

footer .logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

footer .logo-text {
    font-size: 1.6rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

footer p {
    margin: 0.75rem 0;
    font-size: 1.05rem;
    opacity: 0.95;
}

.developer-credit {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 0.95rem;
    opacity: 0.9;
}

.developer-credit a {
    color: var(--honey);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.developer-credit a:hover {
    color: white;
    text-decoration: underline;
}

/* ========================================
   SCROLL TO TOP BUTTON
======================================== */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--green-medium), var(--green-light));
    color: white;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    border: none;
    box-shadow: var(--shadow-md);
    font-size: 1.6rem;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, var(--green-dark), var(--green-medium));
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

/* ========================================
   LIGHTBOX
======================================== */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(26, 53, 41, 0.95);
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 40px;
    color: white;
    font-size: 45px;
    font-weight: bold;
    cursor: pointer;
    background: none;
    border: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
}

.lightbox-close:hover {
    color: var(--green-light);
    transform: scale(1.1);
}

/* ========================================
   MOBILE NAVIGATION
======================================== */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.75rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.menu-toggle:hover {
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */
@media (max-width: 768px) {
    nav {
        padding: 0.75rem 1rem;
    }

    nav .logo-text {
        font-size: 1.2rem;
    }

    nav .logo img {
        width: 40px;
        height: 40px;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-accent) 100%);
        flex-direction: column;
        padding: 1rem;
        gap: 1rem;
        box-shadow: var(--shadow-lg);
    }

    nav ul.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 70vh;
        background-attachment: scroll;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content p {
        font-size: 1.15rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

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

    .about-text {
        font-size: 1.05rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .product-hero {
        height: 220px;
    }

    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-intro p {
        font-size: 1.05rem;
    }

    .contact-icon svg {
        width: 2.5rem;
        height: 2.5rem;
    }

    .contact-method h3 {
        font-size: 1.15rem;
    }

    .contact-cta p {
        font-size: 1.05rem;
    }

    .contact-cta .btn-whatsapp {
        padding: 1rem 2rem;
        font-size: 1.05rem;
    }

    .delivery-icon {
        font-size: 3.5rem;
    }

    .delivery-content p {
        font-size: 1.1rem;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 48px;
        height: 48px;
    }

    .lightbox-close {
        top: 10px;
        right: 20px;
        font-size: 40px;
    }

    .btn-whatsapp {
        padding: 0.9rem 1.6rem;
        font-size: 1.05rem;
    }

    footer .logo img {
        width: 50px;
        height: 50px;
    }

    footer .logo-text {
        font-size: 1.4rem;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .hero-content h1 {
        font-size: 3.8rem;
    }

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

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

    .contact-methods {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Larger screens enhancement */
@media (min-width: 1400px) {
    .container {
        max-width: 1400px;
    }

    .hero-content h1 {
        font-size: 5rem;
    }

    section h2 {
        font-size: 3.2rem;
    }
}
