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

:root {
    --dark: #0F0E17;
    --accent: #E85B3F;
    --accent-hover: #D04A2F;
    --light: #F6F4FB;
    --white: #FFFFFF;
    --text: #2C2A36;
    --text-light: #6C6A7A;
    --border: #E2DFEA;
    --card-bg: #FDFCFE;
    --nav-bg: #0D0C14;
    --footer-bg: #0A0910;
    --green: #3A8C5E;
    --section-alt: #F0EDF8;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, Helvetica, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.25s ease;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* ======================== NAVIGATION ======================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--nav-bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.navbar .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar .logo-icon {
    width: 36px;
    height: 36px;
    background-color: var(--accent);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    color: var(--white);
}

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

.nav-links a {
    color: #B8B6C2;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    padding: 4px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--white);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: width 0.25s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    display: inline-block;
    padding: 10px 22px;
    background-color: var(--accent);
    color: var(--white) !important;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.nav-cta:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.nav-cta::after {
    display: none !important;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 26px;
    height: 2.5px;
    background-color: var(--white);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ======================== HOMEPAGE SECTIONS ======================== */
.home-page .hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0F0E17 0%, #1A1830 50%, #121120 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.home-page .hero-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 91, 63, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.home-page .hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(58, 140, 94, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(232, 91, 63, 0.15);
    border: 1px solid rgba(232, 91, 63, 0.3);
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-content h1 span {
    color: var(--accent);
}

.hero-content .hero-subtitle {
    font-size: 18px;
    color: #B0ADBC;
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 560px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.25s ease;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(232, 91, 63, 0.35);
}

.btn-outline {
    background-color: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 560px;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 28px 24px;
    width: 220px;
    backdrop-filter: blur(10px);
}

.hero-card .hc-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 14px;
    font-weight: 700;
}

.hero-card .hc-icon.c1 {
    background: rgba(232, 91, 63, 0.2);
    color: var(--accent);
}

.hero-card .hc-icon.c2 {
    background: rgba(58, 140, 94, 0.2);
    color: var(--green);
}

.hero-card h4 {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.hero-card p {
    color: #9694A6;
    font-size: 13px;
    line-height: 1.5;
}

/* ======================== ABOUT SECTION ======================== */
.home-page .about-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.about-image-wrapper {
    position: relative;
}

.about-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, #E85B3F 0%, #D04A2F 50%, #B83A20 100%);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-inner {
    width: 85%;
    height: 80%;
    background: rgba(15, 14, 23, 0.85);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 32px;
}

.about-image-inner .ai-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 8px;
}

.about-image-inner .ai-label {
    font-size: 16px;
    color: #B0ADBC;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-image-inner .ai-sub {
    font-size: 13px;
    color: #7A788A;
    margin-top: 4px;
    line-height: 1.5;
    max-width: 200px;
}

.about-accent-shape {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 80px;
    height: 80px;
    background-color: var(--dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-accent-shape .as-dot {
    width: 16px;
    height: 16px;
    background-color: var(--accent);
    border-radius: 50%;
}

.about-content .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.about-content h2 span {
    color: var(--accent);
}

.about-content .about-desc {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 32px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.about-feature-item .afi-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    background: rgba(58, 140, 94, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: 12px;
    font-weight: 700;
    margin-top: 2px;
}

.about-feature-item span {
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

/* ======================== SERVICES SECTION ======================== */
.home-page .services-section {
    padding: 100px 0;
    background-color: var(--section-alt);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.services-header h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.services-header p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.service-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px 28px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(15, 14, 23, 0.1);
    border: 1px solid rgba(232, 91, 63, 0.3);
}

.service-card .sc-icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card .sc-icon.si1 {
    background: rgba(232, 91, 63, 0.12);
    color: var(--accent);
}

.service-card .sc-icon.si2 {
    background: rgba(58, 140, 94, 0.12);
    color: var(--green);
}

.service-card .sc-icon.si3 {
    background: rgba(76, 74, 150, 0.12);
    color: #4C4A96;
}

.service-card .sc-icon.si4 {
    background: rgba(208, 165, 45, 0.12);
    color: #D0A52D;
}

.service-card .sc-icon.si5 {
    background: rgba(45, 130, 160, 0.12);
    color: #2D82A0;
}

.service-card .sc-icon.si6 {
    background: rgba(140, 75, 160, 0.12);
    color: #8C4BA0;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
}

/* ======================== STATS SECTION ======================== */
.home-page .stats-section {
    padding: 70px 0;
    background-color: var(--dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-item:last-child {
    border-right: none;
}

.stat-number {
    font-size: 44px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.stat-number .counter {
    display: inline-block;
}

.stat-label {
    font-size: 14px;
    color: #9694A6;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* ======================== WHY US SECTION ======================== */
.home-page .whyus-section {
    padding: 100px 0;
    background-color: var(--white);
}

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

.whyus-content .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.whyus-content h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.whyus-content h2 span {
    color: var(--accent);
}

.whyus-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 28px;
}

.whyus-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.whyus-list-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.whyus-list-item .wli-bullet {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: rgba(232, 91, 63, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 14px;
    font-weight: 700;
    margin-top: 2px;
}

.whyus-list-item .wli-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 4px;
}

.whyus-list-item .wli-text p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.6;
}

.whyus-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 16px;
    height: 400px;
}

.whyus-visual-card {
    background-color: var(--section-alt);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    transition: background-color 0.3s ease;
}

.whyus-visual-card:nth-child(1) {
    background: rgba(232, 91, 63, 0.08);
}

.whyus-visual-card:nth-child(4) {
    background: rgba(58, 140, 94, 0.08);
}

.wvc-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 4px;
}

.wvc-label {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

/* ======================== CONTACT SECTION ======================== */
.home-page .contact-section {
    padding: 100px 0;
    background-color: var(--section-alt);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.contact-info h2 {
    font-size: 38px;
    font-weight: 800;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.contact-info > p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.contact-detail-item .cdi-icon {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    color: var(--accent);
}

.contact-detail-item h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 2px;
}

.contact-detail-item p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px 32px;
}

.contact-form h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 15px;
    color: var(--text);
    background-color: var(--white);
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    font-family: inherit;
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(232, 91, 63, 0.1);
}

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

.form-submit {
    width: 100%;
    padding: 14px;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.2s ease;
}

.form-submit:hover {
    background-color: var(--accent-hover);
    transform: translateY(-1px);
}

.form-feedback {
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
    display: none;
}

.form-feedback.success {
    display: block;
    color: var(--green);
}

.form-feedback.error {
    display: block;
    color: var(--accent);
}

/* ======================== FOOTER ======================== */
.site-footer {
    background-color: var(--footer-bg);
    padding: 48px 0 32px;
    color: #8C8A9E;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 36px;
}

.footer-brand .footer-logo {
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.7;
    color: #9694A6;
    max-width: 280px;
}

.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li a {
    font-size: 14px;
    color: #8C8A9E;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 13px;
    color: #706E80;
}

.footer-bottom .footer-links {
    display: flex;
    gap: 20px;
}

.footer-bottom .footer-links a {
    font-size: 13px;
    color: #8C8A9E;
    transition: color 0.2s ease;
}

.footer-bottom .footer-links a:hover {
    color: var(--white);
}

/* ======================== SCROLL REVEAL ======================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* ======================== RESPONSIVE ======================== */
@media (max-width: 1024px) {
    .hero-visual {
        display: none;
    }

    .hero-content {
        max-width: 100%;
    }

    .about-grid,
    .whyus-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .stat-item {
        padding: 24px 20px;
    }

    .stat-item:nth-child(2) {
        border-right: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content .hero-subtitle {
        font-size: 16px;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background-color: var(--nav-bg);
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding: 80px 32px;
        gap: 24px;
        transition: right 0.35s ease;
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
        box-shadow: -4px 0 30px rgba(0, 0, 0, 0.4);
    }

    .nav-links a {
        font-size: 17px;
    }

    .nav-cta {
        margin-top: 8px;
    }

    .about-image {
        height: 300px;
    }

    .about-content h2,
    .services-header h2,
    .whyus-content h2,
    .contact-info h2 {
        font-size: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .whyus-visual {
        height: 300px;
        grid-template-columns: 1fr 1fr;
    }

    .contact-form {
        padding: 28px 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero-content h1 {
        font-size: 30px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stat-item:nth-child(even) {
        border-right: none;
    }

    .stat-number {
        font-size: 34px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .whyus-visual {
        grid-template-columns: 1fr;
        height: auto;
        gap: 12px;
    }

    .footer-bottom .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}
