/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

:root {
    /* Colors */
    --color-bg-cream: #f6e6d5;
    --color-blue-deep: #20448b;
    --color-orange-accent: #d86d55;
    --color-white: #ffffff;
    --color-text-dark: #2c3e50;
    --color-text-light-gray: #f8f6f5;

    /* Effects */
    --glass-bg: rgba(255, 255, 255, 0.2);
    --glass-border: rgba(255, 255, 255, 0.3);
    --shadow-soft: 0 8px 32px 0 rgba(31, 38, 135, 0.1);
    --shadow-lg: 0 15px 40px rgba(32, 68, 139, 0.15);

    /* Layout */
    --radius-lg: 30px;
    --radius-md: 20px;
    --radius-sm: 10px;

    /* Typography */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Montserrat', sans-serif;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-blue-deep);
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

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

.relative-z {
    position: relative;
    z-index: 2;
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.btn {
    display: inline-block;
    padding: 12px 32px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 700;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--color-orange-accent);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(216, 109, 85, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 109, 85, 0.6);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Sections Global Spacing */
section {
    padding: 100px 0;
}

/* 
   SECTION 1: HERO
   Layout: Left-aligned content, Background Image, Gradient Overlay
*/
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background-image: url('../assets/img/hero-bg.png');
    /* User Asset */
    background-size: cover;
    background-position: center right;
    color: var(--color-white);
    padding: 0;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Gradient Logic: Deep Blue on left, fading to transparent */
    background: linear-gradient(90deg, rgba(32, 68, 139, 0.95) 0%, rgba(32, 68, 139, 0.8) 45%, rgba(32, 68, 139, 0) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 50%;
    /* Occupy 50% left */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Left aligned */
    text-align: left;
}

.tagline {
    color: var(--color-orange-accent);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    display: block;
}

.hero-content h1 {
    font-size: 4rem;
    /* 64px approx */
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--color-white);
    line-height: 1.1;
}

.hero-content .subtitle {
    font-size: 1.25rem;
    font-weight: 500;
    margin-bottom: 40px;
    color: var(--color-text-light-gray);
    opacity: 0.95;
    line-height: 1.6;
    max-width: 90%;
}

/* 
   SECTION 2: ABOUT DR. KALIL
   Layout: Asymmetrical Split
*/
.about {
    background-color: var(--color-bg-cream);
    position: relative;
    overflow: hidden;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
}

.about-img-styled {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: cover;
    /* Mask/Border-Radius specific request: Top-Left and Bottom-Right 30px */
    border-radius: 30px 0 30px 0;
    box-shadow: var(--shadow-lg);
    /* Soft drop shadow */
    z-index: 2;
}

.about-text-wrapper {
    flex: 1;
    position: relative;
    z-index: 5;
}

.about-card {
    padding: 50px;
    /* Glassmorphism card behind text to pop against beige */
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: var(--radius-lg);
}

.about-card h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-card p {
    font-size: 1.05rem;
    color: var(--color-text-dark);
    margin-bottom: 20px;
    line-height: 1.7;
}

.signature h3 {
    font-family: 'Dancing Script', cursive;
    /* Fallback if not loaded, sticking to heading font if not imported */
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--color-orange-accent);
    font-size: 1.5rem;
    margin-top: 10px;
}

/* 
   SECTION 3: PLANS (How We Work)
   Separation section
*/
.plans {
    background-image: linear-gradient(135deg, #f6e6d5 0%, #fff 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-dark);
    opacity: 0.8;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.card {
    padding: 50px 40px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.5);
    /* Clearer glass */
}

.card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 50px rgba(31, 38, 135, 0.1);
}

.card-icon {
    width: 80px;
    height: 80px;
    background-color: rgba(216, 109, 85, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    color: var(--color-orange-accent);
}

.card-icon svg {
    width: 40px;
    height: 40px;
}

.card h3 {
    font-size: 1.7rem;
    color: var(--color-blue-deep);
    margin-bottom: 5px;
}

.card h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-orange-accent);
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

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

/* 
   SECTION 4: FUTURE (Coming Soon)
   Layout: Full width background, Center content, Blur overlay
*/
.future {
    position: relative;
    background-image: url('../assets/img/future-bg.jpg');
    /* User Asset */
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
    padding: 150px 0;
    /* Taller section */
}

.future-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dark Blur Overlay */
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1;
}

.future-content-centered {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
}

.badge-glow {
    display: inline-block;
    background-color: var(--color-orange-accent);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 0 0 15px rgba(216, 109, 85, 0.6);
    margin-bottom: 30px;
    letter-spacing: 1px;
}

.future-content-centered h2 {
    font-size: 3.5rem;
    color: var(--color-white);
    margin-bottom: 20px;
    line-height: 1.1;
}

.future-content-centered p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.email-capture-minimal form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.email-capture-minimal input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
}

.email-capture-minimal button {
    padding: 15px 35px;
}


/* TESTIMONIALS & FOOTER (Keeping mostly consistent) */
.testimonials {
    background-image: linear-gradient(135deg, #fff 0%, #f6e6d5 100%);
    padding-bottom: 120px;
}

.carousel-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    padding: 20px 0;
    width: 100%;
}

.carousel-container::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.6);
    padding: 30px;
    border-radius: 20px;
    transition: transform 0.3s ease;
    height: 100%;
    /* Equal height */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-content {
    display: flex;
    align-items: center;
    gap: 25px;
}

.patient-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-white);
    flex-shrink: 0;
}

.testimonial-text h3 {
    font-size: 1.1rem;
    color: var(--color-blue-deep);
    margin-bottom: 5px;
    font-weight: 700;
}

.testimonial-text p {
    font-size: 1rem;
    color: var(--color-text-dark);
    font-style: italic;
    line-height: 1.5;
}

.footer {
    background-color: var(--color-blue-deep);
    color: var(--color-white);
    padding: 100px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-logo {
    height: 70px;
    width: auto;
    margin-bottom: 20px;
    display: block;
}

.footer-block h3 {
    color: var(--color-orange-accent);
    margin-bottom: 25px;
    font-size: 1.5rem;
}

.footer-block h4 {
    color: var(--color-white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    opacity: 0.9;
}

.footer-block p {
    margin-bottom: 12px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 20px;
}

.icon-social {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Floating Nav */
/* Floating Nav */
.floating-nav {
    position: fixed;
    top: 30px;
    left: 50%;
    /* Start state for animation combined with centering */
    transform: translate(-50%, -100%);
    opacity: 0;
    width: auto;
    max-width: 95%;
    z-index: 1000;
    padding: 10px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);

    /* Pill Style - Deep Blue Glass */
    background: rgba(32, 68, 139, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Custom transition for nav entrance */
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

/* Overriding the generic fade-up for this specific element to handle centering */
.floating-nav.fade-up {
    transform: translate(-50%, -20px);
    opacity: 0;
}

.floating-nav.fade-up.visible {
    transform: translate(-50%, 0);
    opacity: 1;
}

.floating-nav.scrolled {
    background: rgba(32, 68, 139, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    padding: 10px 30px;
}

.logo-link {
    margin-right: auto;
    display: flex;
    align-items: center;
}

.nav-logo {
    height: 35px;
    /* Pill sized */
    width: auto;
    transition: transform 0.3s ease;
}

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

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

.nav-links a {
    font-weight: 500;
    color: var(--color-bg-cream);
    /* Beige */
    font-family: var(--font-heading);
    position: relative;
    font-size: 0.9rem;
    opacity: 0.9;
    transition: opacity 0.3s;
}

.nav-links a:hover {
    opacity: 1;
}

.nav-links a::after {
    display: none;
    /* Remove underline for cleaner pill look */
}

/* Nav Actions (Buttons) */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: 20px;
}

.btn-nav-contact {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-blue-deep);
    background: var(--color-bg-cream);
    padding: 8px 20px;
    border-radius: 50px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    font-family: var(--font-heading);
}

.btn-nav-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(246, 230, 213, 0.4);
}

.btn-nav-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #25D366;
    /* WhatsApp Green */
    color: white;
    border-radius: 50%;
    font-size: 1.2rem;
    transition: transform 0.2s ease;
}

.btn-nav-whatsapp:hover {
    transform: scale(1.1);
}


/* Mobile Menu Global Styles */
.nav-content-wrapper {
    display: flex;
    align-items: center;
}

.mobile-menu-btn {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--color-bg-cream);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.mobile-menu-btn span:nth-child(1) {
    top: 0;
}

.mobile-menu-btn span:nth-child(2) {
    top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
    top: 18px;
}

/* Active Hamburger State */
.floating-nav.active .mobile-menu-btn span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}

.floating-nav.active .mobile-menu-btn span:nth-child(2) {
    opacity: 0;
}

.floating-nav.active .mobile-menu-btn span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 80%;
    }

    .floating-nav {
        width: 90%;
        max-width: 500px;
        padding: 15px 30px;
        justify-content: space-between;
        /* Ensure logo and burger are apart */
    }

    /* Mobile Menu Logic */
    .nav-content-wrapper {
        display: none;
        /* Hidden by default */
        flex-direction: column;
        width: 100%;
        margin-top: 30px;
        gap: 25px;
    }

    .mobile-menu-btn {
        display: block;
        /* Visible on mobile */
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .nav-actions {
        margin-left: 0;
        flex-direction: column;
        gap: 15px;
    }

    /* When Menu is Open */
    .floating-nav.active {
        flex-direction: column;
        align-items: center;
        border-radius: 30px;
        /* Card shape */
        background: rgba(32, 68, 139, 0.98);
        /* Solid Deep Blue */

        /* Reset transform for centering */
        top: 20px;
        transform: translate(-50%, 0) !important;
    }

    .floating-nav.active .nav-content-wrapper {
        display: flex;
        /* Show menu content */
        animation: mobileMenuFade 0.4s ease forwards;
    }

    /* Position the hamburger absolutely to stay in place */
    .mobile-menu-btn {
        position: absolute;
        right: 30px;
        top: 22px;
    }

    .floating-nav.active .logo-link {
        margin-bottom: 5px;
        align-self: flex-start;
        /* Align logo to left like when closed */
        margin-left: 0;
    }
}

@keyframes mobileMenuFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    /* Floating Nav Mobile Override - inherited from 1024px block now */
    /* Adjusting Hero Reset */
    .hero {
        background-position: right center;
    }

    .hero-overlay {
        background: rgba(32, 68, 139, 0.8);
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
        align-items: center;
    }

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

    /* About Stack */
    .about-split {
        flex-direction: column;
        gap: 50px;
    }

    .about-img-styled {
        max-width: 100%;
    }

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

    /* Future */
    .future-content-centered h2 {
        font-size: 2.5rem;
    }

    .email-capture-minimal form {
        flex-direction: column;
    }

    .email-capture-minimal button {
        width: 100%;
    }

    .cards-grid,
    .footer-content {
        text-align: center;
    }

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

    /* Testimonials Mobile Carousel */
    .carousel-container {
        display: flex;
        /* Switch back to Flex for scroll */
        grid-template-columns: none;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 20px;
        padding-bottom: 20px;
        width: 100vw;
        /* Full width to allow edge-to-edge scroll */
        margin-left: -5vw;
        /* Counteract container padding if needed, or just standard width */
        padding-left: 5vw;
        /* Alignment */
        padding-right: 5vw;
    }

    .testimonial-card {
        min-width: 85vw;
        /* Show nearly full card */
        scroll-snap-align: center;
        flex: 0 0 auto;
        /* Prevent shrinking */
        margin-right: 0;
    }
}

/* 
   SECTION: SERVICES SUMMARY
   Placed before form
*/
.services-summary {
    background-color: var(--color-bg-cream);
    padding-bottom: 50px;
    padding-top: 50px;
}

.services-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.service-capsule {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 15px 30px;
    border-radius: 50px; /* Capsule shape */
    color: var(--color-blue-deep);
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease, background 0.3s ease;
}

.service-capsule:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: var(--shadow-lg);
}

.service-icon-check {
    color: var(--color-orange-accent);
    display: flex;
    align-items: center;
}

/* 
   SECTION: CONTACT FORM
   Glassmorphism Form
*/
.contact-section {
    padding-top: 50px;
    padding-bottom: 120px;
    background: linear-gradient(180deg, var(--color-bg-cream) 0%, #fff 100%);
    position: relative;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.65); /* Glass card */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid white;
    padding: 60px;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(32, 68, 139, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.form-header .description {
    font-size: 1.1rem;
    color: var(--color-text-dark);
    opacity: 0.9;
}

.form-group-title {
    color: var(--color-blue-deep);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 30px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(32, 68, 139, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-field {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-text-dark);
    font-weight: 600;
    font-size: 0.95rem;
}

.form-input, 
.form-select, 
.form-textarea {
    width: 100%;
    padding: 15px 20px;
    border-radius: 15px; /* Softer than standard */
    border: 1px solid rgba(200, 200, 200, 0.5);
    background: rgba(255, 255, 255, 0.9);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
    color: var(--color-text-dark);
}

.form-input:focus, 
.form-select:focus, 
.form-textarea:focus {
    outline: none;
    border-color: var(--color-blue-deep);
    box-shadow: 0 0 0 4px rgba(32, 68, 139, 0.1);
    background: white;
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.radio-group {
    display: flex;
    gap: 30px;
    margin-top: 10px;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.radio-option input[type="radio"] {
    accent-color: var(--color-orange-accent);
    width: 20px;
    height: 20px;
}

.form-submit-wrapper {
    margin-top: 40px;
    text-align: center;
}

.btn-submit {
    width: 100%;
    max-width: 400px;
    padding: 18px 30px;
    font-size: 1.1rem;
    background-color: var(--color-orange-accent);
    color: var(--color-white);
    box-shadow: 0 10px 25px rgba(216, 109, 85, 0.4);
}

.btn-submit:hover {
    box-shadow: 0 15px 35px rgba(216, 109, 85, 0.6);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .form-wrapper {
        padding: 40px 25px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-list {
        flex-direction: column;
        align-items: center;
    }
    
    .service-capsule {
        width: 100%;
        justify-content: center;
    }
}