/* #004D40, #006B5C, #C9A227, #F0FAFE */
:root {
    --color-primary: #004D40;
    --color-secondary: #006B5C;
    --color-accent: #C9A227;
    --bg-tint: #F0FAFE;
    --text-dark: #1A302B;
    --text-muted: #4A605A;
    --white: #FFFFFF;
    --border-radius-pill: 50px;
    --border-radius-card: 32px;
    --shadow-subtle: 0 4px 16px rgba(0, 77, 64, 0.08);
    --transition-fast: 0.25s ease;
}

/* Global Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-tint);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Layout Container */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}
@media (min-width: 1024px) {
    .section-container {
        padding: 80px 24px;
    }
}

/* Buttons (Pill Style) */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--color-primary);
}
.btn-primary:hover {
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--color-primary);
}
.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-accent {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-dark);
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 700;
    text-align: center;
    border: 2px solid var(--color-accent);
}
.btn-accent:hover {
    background-color: transparent;
    color: var(--color-accent);
    transform: translateY(-2px);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--white);
    box-shadow: var(--shadow-subtle);
}

.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: 800;
    color: var(--color-primary);
    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; /* Desktop hidden */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    background-color: var(--color-primary);
    transition: 0.3s;
    border-radius: 2px;
}

.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 {
    font-weight: 600;
    color: var(--text-dark);
}

.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;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--white);
    box-shadow: var(--shadow-subtle);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 77, 64, 0.1);
}

.mobile-nav a {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

/* Mobile responsive navigation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #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);
    }
}

/* Hero Diagonal Split */
.hero-diagonal {
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
    border-bottom: 4px solid var(--color-accent);
}

.hero-content {
    padding: 48px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    display: inline-block;
    align-self: flex-start;
    background-color: var(--bg-tint);
    color: var(--color-primary);
    padding: 6px 18px;
    border-radius: var(--border-radius-pill);
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 77, 64, 0.15);
}

.hero-headline {
    font-size: clamp(32px, 5vw, 56px);
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.hero-subtext {
    font-size: clamp(16px, 2.5vw, 18px);
    color: var(--text-muted);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-image {
    width: 100%;
    height: 320px;
    background: url('img/bg.jpg') no-repeat center center/cover;
}

@media (min-width: 768px) {
    .hero-diagonal {
        flex-direction: row;
        min-height: 80vh;
    }
    .hero-content {
        width: 45%;
        padding: 60px;
    }
    .hero-image {
        width: 55%;
        height: auto;
        clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
    }
}

/* Section Header Styles */
.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px auto;
}

.section-tag {
    display: inline-block;
    background-color: var(--white);
    color: var(--color-secondary);
    padding: 6px 18px;
    border-radius: var(--border-radius-pill);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-subtle);
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-muted);
}

/* Benefits 5 Asymmetric Grid */
.benefits-section {
    background-color: var(--bg-tint);
}

.benefits-grid-asymm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 77, 64, 0.05);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 77, 64, 0.12);
}

.card-icon {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 20px;
}

.card-title {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.card-text {
    color: var(--text-muted);
    font-size: 15px;
}

@media (min-width: 768px) {
    .benefits-grid-asymm {
        grid-template-columns: repeat(6, 1fr);
    }
    .card-large-1 {
        grid-column: span 3;
    }
    .card-large-2 {
        grid-column: span 3;
    }
    .card-small {
        grid-column: span 2;
    }
}

/* Comparison Table */
.comparison-section {
    background-color: var(--white);
}

.table-wrapper {
    overflow-x: auto;
    box-shadow: var(--shadow-subtle);
    border-radius: var(--border-radius-card);
    background-color: var(--white);
    border: 1px solid rgba(0, 77, 64, 0.08);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    min-width: 600px;
}

.comparison-table th, .comparison-table td {
    padding: 20px 24px;
    border-bottom: 1px solid rgba(0, 77, 64, 0.08);
}

.comparison-table th {
    background-color: var(--color-primary);
    color: var(--white);
    font-weight: 600;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tbody tr:nth-child(even) {
    background-color: var(--bg-tint);
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 48px 16px;
    background-color: var(--bg-tint);
}

.cta-banner-container {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-secondary);
    color: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius-card);
    text-align: center;
    box-shadow: var(--shadow-subtle);
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-desc {
    font-size: 16px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

/* Expert Block */
.expert-section {
    background-color: var(--white);
}

.expert-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.expert-img {
    width: 100%;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    object-fit: cover;
    height: 350px;
}

.expert-content {
    padding-left: 10px;
}

.expert-tag {
    display: inline-block;
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    margin-bottom: 16px;
}

.expert-quote {
    font-size: clamp(18px, 3vw, 24px);
    font-style: italic;
    color: var(--color-secondary);
    line-height: 1.4;
    margin-bottom: 24px;
    position: relative;
}

.expert-meta h4 {
    font-size: 18px;
    color: var(--text-dark);
}

.expert-title {
    font-size: 14px;
    color: var(--text-muted);
}

@media (min-width: 768px) {
    .expert-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--bg-tint);
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(0, 77, 64, 0.05);
}

.testimonial-stars {
    color: var(--color-accent);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
}

/* Compact Hero (For inner pages) */
.compact-hero {
    background-color: var(--color-primary);
    color: var(--white);
    padding: 80px 16px;
    text-align: center;
}

.compact-hero-container {
    max-width: 800px;
    margin: 0 auto;
}

.compact-title {
    font-size: clamp(28px, 5vw, 48px);
    margin-bottom: 16px;
    line-height: 1.2;
}

.compact-desc {
    font-size: 16px;
    opacity: 0.9;
}

/* Methodology Intro Section */
.methodology-intro {
    background-color: var(--white);
}

.methodology-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.methodology-text h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.methodology-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.methodology-img {
    width: 100%;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .methodology-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Accordion Section */
.accordion-section {
    background-color: var(--bg-tint);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.accordion-item {
    background-color: var(--white);
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    border: 1px solid rgba(0, 77, 64, 0.05);
}

.accordion-header {
    padding: 24px;
    cursor: pointer;
    font-weight: 700;
    color: var(--color-primary);
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none; /* Hide default arrow */
}

.accordion-header::-webkit-details-marker {
    display: none; /* Safari arrow hide */
}

.accordion-number {
    font-size: 20px;
    color: var(--color-accent);
}

.accordion-title-text {
    font-size: 16px;
}

.accordion-content {
    padding: 0 24px 24px 56px;
    color: var(--text-muted);
    font-size: 15px;
    border-top: 1px solid rgba(0, 77, 64, 0.05);
    margin-top: 10px;
}

/* FAQ Grid */
.faq-section {
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-card {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid rgba(0, 77, 64, 0.05);
}

.faq-card h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.faq-card p {
    color: var(--text-muted);
    font-size: 15px;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Story Section (Mission) */
.story-section {
    background-color: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.story-content h2 {
    font-size: clamp(22px, 3.5vw, 32px);
    color: var(--color-primary);
    margin-bottom: 20px;
}

.story-content p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.story-img {
    width: 100%;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    height: 400px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .story-grid {
        grid-template-columns: 1.2fr 1fr;
    }
}

/* Values Grid */
.values-section {
    background-color: var(--bg-tint);
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.value-card {
    background-color: var(--white);
    padding: 40px 32px;
    border-radius: var(--border-radius-card);
    box-shadow: var(--shadow-subtle);
    text-align: center;
}

.value-icon {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    background-color: var(--color-accent);
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 50%;
    margin: 0 auto 24px auto;
}

.value-card h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.value-card p {
    color: var(--text-muted);
    font-size: 14px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Manifesto Section */
.manifesto-section {
    padding: 60px 16px;
    background-color: var(--color-secondary);
    color: var(--white);
}

.manifesto-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.manifesto-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.manifesto-text {
    font-size: 18px;
    font-style: italic;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Grid Layout */
.contact-section {
    background-color: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-info h2, .contact-form-container h2 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.contact-info p, .contact-form-container p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.info-block {
    margin-bottom: 20px;
}

.info-block strong {
    display: block;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.info-block p {
    margin-bottom: 0;
}

/* Form Styles */
.custom-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    font-size: 14px;
}

.form-group input, .form-group textarea {
    padding: 14px 20px;
    border: 1px solid rgba(0, 77, 64, 0.15);
    border-radius: var(--border-radius-pill);
    background-color: var(--bg-tint);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 14px;
}

.form-group textarea {
    border-radius: 16px;
    resize: vertical;
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--white);
}

.form-submit {
    cursor: pointer;
    align-self: flex-start;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

/* Legal Pages (Cookies, Terms) */
.legal-page-section {
    background-color: var(--white);
    padding: 60px 16px;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.legal-container h2 {
    font-size: 20px;
    color: var(--color-primary);
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.legal-container ul {
    margin-bottom: 16px;
    padding-left: 20px;
    color: var(--text-muted);
}

.legal-container li {
    margin-bottom: 8px;
}

/* Thank You Page */
.thank-you-section {
    background-color: var(--white);
    padding: 80px 16px;
    text-align: center;
}

.thank-container {
    max-width: 600px;
    margin: 0 auto;
}

.thank-icon {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    background-color: var(--color-accent);
    color: var(--text-dark);
    font-size: 36px;
    border-radius: 50%;
    margin-bottom: 24px;
}

.thank-container h1 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.thank-lead {
    color: var(--text-muted);
    margin-bottom: 32px;
}

.thank-next-steps {
    text-align: left;
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: var(--border-radius-card);
    margin-bottom: 32px;
}

.thank-next-steps h3 {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.thank-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 16px;
}

.thank-link-card {
    background-color: var(--white);
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0, 77, 64, 0.05);
}

.thank-link-card:hover {
    border-color: var(--color-accent);
}

.thank-link-card h4 {
    color: var(--color-primary);
    margin-bottom: 4px;
}

.thank-link-card p {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 0;
}

@media (min-width: 480px) {
    .thank-links-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* Footer Section */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--white) !important;
    padding: 60px 16px 30px 16px;
    border-top: 4px solid var(--color-accent);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 40px;
}

.footer-brand .footer-logo {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-accent) !important;
    display: block;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 14px;
    opacity: 0.85;
}

.footer-links h4, .footer-legal h4, .footer-contact h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--color-accent) !important;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 8px;
}

.footer-links a, .footer-legal a {
    font-size: 14px;
    opacity: 0.85;
}

.footer-links a:hover, .footer-legal a:hover {
    color: var(--color-accent) !important;
    opacity: 1;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.85;
}

.footer-email-link {
    color: var(--color-accent) !important;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    font-size: 12px;
    opacity: 0.8;
}

.footer-disclaimer {
    margin-bottom: 16px;
    line-height: 1.5;
}

.footer-copyright {
    text-align: center;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 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: var(--white);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    transform: translateY(0);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--color-primary);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 14px;
    color: var(--text-dark);
}

#cookie-banner a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    font-size: 13px;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(0,77,64,0.2);
    padding: 10px 20px;
    font-weight: 600;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    font-size: 13px;
}

@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;
    }
}