/* #8B0000, #B71C1C, #006964, #FFF5F5 */
:root {
    --color-primary: #8B0000;
    --color-secondary: #B71C1C;
    --color-accent: #006964;
    --bg-tint: #FFF5F5;
    
    /* Dark Theme Base Colors */
    --bg-dark: #121212;
    --bg-card: #1E1E1E;
    --text-light: #F5F5F5;
    --text-muted: #B3B3B3;
    
    /* Fonts & Radii */
    --font-sans: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
    --radius-card: 24px;
    --radius-btn: 8px;
    --radius-pill: 50px;
    
    /* Subtle Shadow */
    --shadow-subtle: 0 4px 12px rgba(0, 0, 0, 0.15);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Mobile-First Setup */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 24px;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: clamp(24px, 5vw, 36px);
    color: var(--text-light);
    margin-bottom: 12px;
}

.section-tag {
    display: inline-block;
    color: var(--color-secondary);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: rgba(18, 18, 18, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - always left */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    z-index: 100;
}

/* Hamburger - always right */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none; /* Shown only on mobile */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--text-light);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    background-color: var(--bg-dark);
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Mobile Adaptation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Show burger on mobile */
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Hamburger Animation */
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: var(--radius-btn);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light);
    border: none;
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--text-light);
    border: none;
}

.btn-accent:hover {
    background-color: #00524e;
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.btn-outline:hover {
    background-color: var(--text-light);
    color: var(--bg-dark);
}

.btn-block {
    display: block;
    width: 100%;
}

/* HERO SECTION: DIAGONAL-SPLIT */
.hero-diagonal {
    display: flex;
    flex-direction: column;
    min-height: 80vh;
    align-items: center;
    justify-content: flex-start;
    background-color: var(--bg-dark);
    position: relative;
    overflow: hidden;
}

.hero-content {
    padding: 40px 20px;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(139, 0, 0, 0.2);
    color: var(--color-secondary);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-content h1 {
    font-size: clamp(32px, 7vw, 56px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: clamp(16px, 3vw, 18px);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

.hero-image-wrapper {
    width: 100%;
    height: 350px;
    position: relative;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 992px) {
    .hero-diagonal {
        flex-direction: row;
        min-height: 90vh;
    }

    .hero-content {
        width: 45%;
        padding: 60px;
        text-align: left;
    }

    .hero-content p {
        margin-left: 0;
    }

    .hero-actions {
        flex-direction: row;
        justify-content: flex-start;
    }

    .hero-image-wrapper {
        width: 55%;
        height: 100%;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* BENEFITS SECTION: 2X2 GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.benefit-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 0, 0, 0.3);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 20px;
    background-color: rgba(0, 105, 100, 0.1);
    display: inline-flex;
    width: 70px;
    height: 70px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card p {
    color: var(--text-muted);
}

/* SPLIT LAYOUT WITH IMAGE */
.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
}

.split-image-box {
    position: relative;
}

.split-img {
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

.split-text-box h2 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 20px;
}

.split-text-box p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* QUOTE HIGHLIGHT */
.quote-highlight-section {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    padding: 60px 20px;
    text-align: center;
}

.quote-container {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    display: block;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: -20px;
}

.quote-container blockquote {
    font-size: clamp(18px, 3.5vw, 26px);
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
}

.quote-container cite {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ICON-FEATURES (6 Blocks) */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.feature-item {
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.02);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    border-color: var(--color-accent);
}

.feature-emoji {
    font-size: 32px;
    display: block;
    margin-bottom: 16px;
}

.feature-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-item p {
    color: var(--text-muted);
    font-size: 14px;
}

/* NUMBERED STEPS */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.step-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-card);
    position: relative;
    border-top: 4px solid var(--color-accent);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 105, 100, 0.15);
    position: absolute;
    top: 10px;
    right: 20px;
}

.step-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    position: relative;
    z-index: 2;
}

.step-card p {
    color: var(--text-muted);
    font-size: 14px;
    position: relative;
    z-index: 2;
}

/* ACCORDION FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-card);
    border-radius: var(--radius-card);
    margin-bottom: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.02);
}

.faq-item[open] {
    border-color: rgba(139, 0, 0, 0.2);
}

.faq-question {
    padding: 20px 24px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    outline: none;
    user-select: none;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--color-accent);
    transition: var(--transition-smooth);
}

.faq-item[open] .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 24px 20px;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* INNER PAGES HERO */
.inner-hero {
    padding: 60px 0;
    background-color: #1a1a1a;
}

.inner-hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 992px) {
    .inner-hero-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }
}

.inner-hero-text h1 {
    font-size: clamp(28px, 6vw, 48px);
    margin-bottom: 20px;
}

.inner-hero-text p {
    color: var(--text-muted);
    font-size: 17px;
}

.creative-img {
    border-radius: var(--radius-card);
    transform: rotate(2deg);
    transition: var(--transition-smooth);
}

.creative-img:hover {
    transform: rotate(0deg);
}

/* TABS (PROGRAM.HTML) */
.tabs {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 0 auto;
}

input[name="tabs"] {
    display: none;
}

.tabs-nav {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
    margin-bottom: 30px;
}

@media (min-width: 768px) {
    .tabs-nav {
        flex-direction: row;
        justify-content: center;
    }
}

.tabs-nav label {
    padding: 14px 24px;
    background-color: var(--bg-card);
    border-radius: var(--radius-pill);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.tabs-nav label:hover {
    background-color: rgba(0, 105, 100, 0.1);
}

.tab-panel {
    display: none;
    width: 100%;
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

.tab-panel h3 {
    margin-bottom: 16px;
    color: var(--color-accent);
}

.tab-panel p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.tab-panel ul {
    list-style-type: none;
    padding-left: 0;
}

.tab-panel li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-muted);
}

.tab-panel li::before {
    content: "✓";
    color: var(--color-accent);
    position: absolute;
    left: 0;
    font-weight: bold;
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-accent);
    color: var(--text-light);
    border-color: var(--color-accent);
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

/* STATS SECTION */
.stats-section {
    background-color: #161616;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.stat-card {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-card);
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    color: var(--color-accent);
    display: block;
    margin-bottom: 10px;
}

.stat-card p {
    color: var(--text-muted);
}

/* CTA BOX */
.cta-box {
    background: linear-gradient(135deg, #1E1E1E, #121212);
    padding: 40px;
    border-radius: var(--radius-card);
    text-align: center;
    border: 1px solid rgba(139, 0, 0, 0.2);
}

@media (min-width: 768px) {
    .cta-box {
        padding: 60px;
    }
}

.cta-box h2 {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}

.cta-box p {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 30px;
}

/* VALUES GRID (MISSION.HTML) */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.value-card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-card);
}

.value-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.value-card h3 {
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
}

/* MANIFEST BOX */
.manifest-box {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: var(--radius-card);
    border-left: 6px solid var(--color-accent);
}

@media (min-width: 768px) {
    .manifest-box {
        padding: 60px;
    }
}

.manifest-content h2 {
    margin-bottom: 20px;
}

.manifest-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.manifest-signature {
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.manifest-signature strong {
    display: block;
    font-size: 18px;
}

.manifest-signature span {
    color: var(--text-muted);
    font-size: 14px;
}

/* CONTACT SECTION & FORM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }
}

.contact-form {
    background-color: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-subtle);
}

@media (min-width: 768px) {
    .contact-form {
        padding: 40px;
    }
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background-color: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-btn);
    color: var(--text-light);
    font-family: var(--font-sans);
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: #333;
}

.contact-info-card {
    background-color: #1a1a1a;
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-info-card h3 {
    margin-bottom: 12px;
}

.info-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.info-icon {
    font-size: 24px;
    color: var(--color-accent);
}

.link-light:hover {
    color: var(--color-accent);
}

/* LEGAL PAGES */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: clamp(28px, 5vw, 40px);
    margin-bottom: 10px;
}

.legal-date {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-block {
    margin-bottom: 30px;
}

.legal-block h2 {
    font-size: 20px;
    margin-bottom: 12px;
}

.legal-block p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-block ul {
    list-style-type: disc;
    padding-left: 20px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.text-warning-box {
    background-color: rgba(139, 0, 0, 0.1);
    padding: 24px;
    border-radius: var(--radius-card);
    border-left: 4px solid var(--color-primary);
}

/* THANK YOU PAGE */
.thank-box {
    text-align: center;
    max-width: 700px;
    margin: 60px auto;
    background-color: var(--bg-card);
    padding: 60px 40px;
    border-radius: var(--radius-card);
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
}

.thank-box h1 {
    margin-bottom: 16px;
}

.thank-box p {
    color: var(--text-muted);
    margin-bottom: 40px;
}

.next-steps {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.next-steps h3 {
    margin-bottom: 16px;
}

.thank-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
    justify-content: center;
}

@media (min-width: 576px) {
    .thank-links {
        flex-direction: row;
    }
}

/* FOOTER SECTION */
.site-footer {
    background-color: #0d0d0d !important; /* Force background color for translation compatibility */
    color: #F5F5F5 !important; /* Force text color */
    padding: 60px 20px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 768px) {
    .footer-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-info p {
    color: #B3B3B3 !important;
    margin-top: 16px;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    margin-bottom: 20px;
    color: #F5F5F5 !important;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: #B3B3B3 !important;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #006964 !important;
}

.footer-contact p {
    color: #B3B3B3 !important;
    margin-bottom: 12px;
}

.footer-contact a {
    color: #F5F5F5 !important;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888888 !important;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    background-color: #1a1a1a;
    border-top: 2px solid var(--color-accent);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-muted);
}

#cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--text-light);
    border: none;
    padding: 8px 16px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid var(--text-muted);
    padding: 8px 16px;
    border-radius: var(--radius-btn);
    cursor: pointer;
}

@media (max-width: 600px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    .cookie-btns {
        width: 100%;
    }
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}