/* ==================== GOOGLE FONTS ==================== */
@import url('https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Montserrat:wght@600;700&display=swap');

/* ==================== CSS VARIABLES ==================== */
:root {
    /* Colors */
    --color-bg: #F8F9FA;
    --color-text: #212529;
    --color-primary: #00796B; /* Teal */
    --color-primary-light: #E0F2F1;
    --color-footer-bg: #343A40;
    --color-white: #FFFFFF;

    /* Fonts */
    --font-body: 'Lato', sans-serif;
    --font-heading: 'Montserrat', sans-serif;

    /* Other */
    --header-height: 4.5rem;
    --border-radius: 8px;
    --transition-speed: 0.3s ease;
}

/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    background-color: var(--color-bg);
    color: var(--color-text);
    -webkit-font-smoothing: antialiased;
    padding-top: var(--header-height); /* To prevent content from being hidden by fixed header */
}

ul {
    list-style: none;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-text);
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1rem;
    padding-right: 1rem;
}

/* ==================== HEADER ==================== */
.header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    background-color: rgba(248, 249, 250, 0.8);
    backdrop-filter: blur(10px);
    transition: box-shadow var(--transition-speed);
}

.header--scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.header__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
}

.header__nav-list {
    display: flex;
    gap: 2.5rem;
}

.header__nav-link {
    font-weight: 600;
    position: relative;
    transition: color var(--transition-speed);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-primary);
    transition: width var(--transition-speed);
}

.header__nav-link:hover {
    color: var(--color-primary);
}

.header__nav-link:hover::after {
    width: 100%;
}

.header__burger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-text);
}

/* ==================== FOOTER ==================== */
.footer {
    background-color: var(--color-footer-bg);
    color: var(--color-bg);
    padding-top: 4rem;
}

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

.footer__logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    display: inline-block;
    margin-bottom: 1rem;
}

.footer__description {
    font-size: 0.9rem;
    line-height: 1.5;
    max-width: 300px;
    color: #ced4da;
}

.footer__title {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer__nav-list, .footer__contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__nav-link {
    color: #ced4da;
    transition: color var(--transition-speed), padding-left var(--transition-speed);
}

.footer__nav-link:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer__contact-item a {
    color: #ced4da;
    transition: color var(--transition-speed);
}
.footer__contact-item a:hover {
    color: var(--color-white);
}

.footer__contact-icon {
    width: 20px;
    height: 20px;
    color: var(--color-primary);
}

.footer__bottom {
    border-top: 1px solid #495057;
    padding: 1.5rem 0;
    text-align: center;
    font-size: 0.9rem;
    color: #adb5bd;
}


/* ==================== RESPONSIVENESS ==================== */
@media (max-width: 768px) {
    .header__nav {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--color-bg);
        transition: right var(--transition-speed);
        padding-top: 2rem;
    }
    
    .header__nav.is-active {
        right: 0;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .header__nav-link {
        font-size: 1.2rem;
    }

    .header__burger {
        display: block;
    }
    
    .footer__container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer__description {
        margin: 0 auto;
    }

    .footer__nav-list, .footer__contact-list {
        align-items: center;
    }
    
    .footer__contact-item {
        justify-content: center;
    }
}

/* ==================== HERO ==================== */
.hero {
    min-height: calc(90vh - var(--header-height));
    display: flex;
    align-items: center;
    padding: 4rem 0;
}

.hero__container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 3rem;
}

.hero__content {
    animation: fadeInSlideUp 0.8s ease-out forwards;
}

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

.hero__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1.5rem;
}

.hero__title--animated {
    color: var(--color-primary);
    position: relative;
}

/* Blinking cursor effect */
.hero__title--animated::after {
    content: '|';
    position: absolute;
    right: -5px;
    top: 0;
    color: var(--color-primary);
    animation: blink 0.7s infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.hero__description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero__cta-button {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-heading);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.hero__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 121, 107, 0.2);
}

.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__image-wrapper {
    position: relative;
    animation: fadeIn 1.2s ease-out forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero__image {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    object-fit: cover;
}

/* ==================== HERO RESPONSIVENESS ==================== */
@media (max-width: 992px) {
    .hero__title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 3rem 0;
        text-align: center;
    }
    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .hero__content {
        order: 2; /* Text appears after image on mobile */
    }
    .hero__visual {
        order: 1;
    }
    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2rem;
    }
    .hero__description {
        font-size: 1rem;
    }
}

/* ==================== SERVICES ==================== */
.services {
    padding: 5rem 0;
    background-color: var(--color-white); /* Slightly different background to stand out */
}

.services__title, .services__subtitle {
    text-align: center;
}

.services__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.services__subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.services__card {
    background-color: var(--color-bg);
    border: 1px solid #e9ecef;
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.services__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.services__card-icon-wrapper {
    margin: 0 auto 1.5rem auto;
    width: 70px;
    height: 70px;
    background-color: var(--color-primary-light);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background-color var(--transition-speed);
}

.services__card-icon {
    width: 32px;
    height: 32px;
    color: var(--color-primary);
    stroke-width: 2px;
}

.services__card:hover .services__card-icon-wrapper {
    background-color: var(--color-primary);
}

.services__card:hover .services__card-icon {
    color: var(--color-white);
}

.services__card-title {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.services__card-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
}

/* ==================== SERVICES RESPONSIVENESS ==================== */
@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    .services__title {
        font-size: 2.2rem;
    }
}

/* ==================== BLOG ==================== */
.blog {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.blog__title, .blog__subtitle {
    text-align: center;
}

.blog__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.blog__subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

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

.blog-card {
    background-color: var(--color-white);
    border-radius: var(--border-radius);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.blog-card__image-wrapper {
    overflow: hidden;
}

.blog-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.blog-card:hover .blog-card__image {
    transform: scale(1.05);
}

.blog-card__content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1; /* Makes footer stick to bottom */
}

.blog-card__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    color: #6c757d;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.blog-card__category {
    font-weight: 700;
    color: var(--color-primary);
}

.blog-card__title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.blog-card__title a {
    color: var(--color-text);
    transition: color var(--transition-speed);
}

.blog-card__title a:hover {
    color: var(--color-primary);
}

.blog-card__excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #6c757d;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: auto; /* Pushes to the bottom */
    transition: gap var(--transition-speed);
}

.blog-card__read-more:hover {
    gap: 0.75rem;
}

.blog-card__read-more-icon {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-speed);
}

.blog-card__read-more:hover .blog-card__read-more-icon {
    transform: translateX(4px);
}

/* ==================== BLOG RESPONSIVENESS ==================== */
@media (max-width: 768px) {
    .blog {
        padding: 4rem 0;
    }
    .blog__title {
        font-size: 2.2rem;
    }
}

/* ==================== CASES / TIMELINE (FINAL FIX) ==================== */
.cases {
    padding: 5rem 0;
    background-color: var(--color-text);
    color: var(--color-bg);
    overflow: hidden;
}

.cases__title, .cases__subtitle {
    text-align: center;
}

.cases__title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--color-white);
}

.cases__subtitle {
    font-size: 1.1rem;
    color: #adb5bd;
    max-width: 700px;
    margin: 0 auto;
}

.cases__timeline-wrapper {
    position: relative;
    cursor: grab;
    width: 100%;
    overflow-x: auto;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 3rem 0;
}

.cases__timeline-wrapper::-webkit-scrollbar {
    display: none;
}

.cases__scroll-hint {
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.8rem;
    animation: scrollHintFade 4s ease-in-out forwards;
    z-index: 5;
    pointer-events: none;
}

@keyframes scrollHintFade {
    0% { opacity: 0; }
    25% { opacity: 1; }
    75% { opacity: 1; }
    100% { opacity: 0; }
}

.cases__scroll-hint-icon {
    animation: scrollHintMove 1.5s infinite;
}

@keyframes scrollHintMove {
    0% { transform: translateX(0); }
    50% { transform: translateX(5px); }
    100% { transform: translateX(0); }
}

.cases__timeline {
    position: relative;
    display: flex;
    width: 2000px;
    height: 1px; /* The line itself */
    background-color: rgba(255,255,255,0.15);
    margin: 150px 0; /* Vertical margin to make space for cards */
}

.cases__milestone {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    opacity: 0;
    transition: opacity 0.6s ease-out;
}

/* Positioning each milestone along the timeline */
.cases__milestone:nth-child(1) { left: 15%; }
.cases__milestone:nth-child(2) { left: 30%; }
.cases__milestone:nth-child(3) { left: 45%; }
.cases__milestone:nth-child(4) { left: 60%; }
.cases__milestone:nth-child(5) { left: 75%; }

.cases__milestone.is-visible {
    opacity: 1;
}

.cases__milestone-point {
    width: 100%;
    height: 100%;
    background-color: var(--color-bg);
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    z-index: 2;
}

.cases__milestone-point::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: -3px;
    left: -3px;
    border: 3px solid var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 121, 107, 0.7); }
    70% { transform: scale(1.2); box-shadow: 0 0 0 10px rgba(0, 121, 107, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(0, 121, 107, 0); }
}

.cases__milestone-content {
    position: absolute;
    left: 50%; /* Center relative to the milestone point */
    background-color: var(--color-white);
    color: var(--color-text);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    width: 250px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transform: translateX(-50%); /* The key for perfect centering */
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

/* Position for ODD (top) cards */
.cases__milestone:nth-child(odd) .cases__milestone-content {
    bottom: 40px; 
}
/* Position for EVEN (bottom) cards */
.cases__milestone:nth-child(even) .cases__milestone-content {
    top: 40px;
}

.cases__milestone:hover .cases__milestone-content {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    z-index: 3;
}

.cases__milestone-metric {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 0.5rem;
}

.cases__milestone-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.cases__milestone-description {
    font-size: 0.9rem;
    color: #6c757d;
}

/* ==================== CASES RESPONSIVENESS (FINAL) ==================== */
@media (max-width: 768px) {
    .cases__timeline-wrapper {
        overflow: visible;
        padding: 0;
    }
    .cases__timeline {
        margin: 0;
        padding: 2rem;
        flex-direction: column;
        width: 100%;
        height: auto;
        background: none; /* No horizontal line */
        gap: 3rem;
    }
    .cases__timeline::before {
        content: '';
        position: absolute;
        left: 2rem;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: rgba(255,255,255,0.15);
    }

    .cases__milestone {
        position: static;
        transform: none;
        width: 100%;
        padding-left: 4rem; /* Space from the vertical line */
    }
    .cases__milestone:nth-child(n) { /* Reset horizontal position */
        left: auto;
    }

    .cases__milestone-point {
        position: absolute;
        left: 2rem;
        top: 50%;
        transform: translate(-50%, -50%);
    }

    .cases__milestone-content {
        position: static;
        transform: none !important;
        width: 100%;
    }

    .cases__milestone:hover .cases__milestone-content {
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    .cases__scroll-hint { display: none; }
}

/* ==================== CONTACT ==================== */
.contact {
    padding: 5rem 0;
    background-color: var(--color-bg);
}

.contact__section-title, .contact__section-subtitle {
    text-align: center;
}

.contact__section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact__section-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact__info-title {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact__info-description {
    line-height: 1.7;
    color: #6c757d;
    margin-bottom: 2rem;
}

.contact__info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact__info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact__info-icon {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
}

.contact__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
}

.contact__form-group--full {
    grid-column: 1 / -1;
}

.contact__form-label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.9rem;
}

.contact__form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid #ced4da;
    border-radius: var(--border-radius);
    background-color: var(--color-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color var(--transition-speed), box-shadow var(--transition-speed);
}

.contact__form-input:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 121, 107, 0.15);
}

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

.contact__button {
    width: 100%;
    padding: 1rem;
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-family: var(--font-heading);
    font-size: 1rem;
    cursor: pointer;
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
    justify-self: flex-start;
    align-self: flex-end;
}

.contact__button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 121, 107, 0.2);
}

.contact__form-message {
    padding: 1rem;
    margin-top: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    font-weight: 600;
    display: none; /* Hidden by default */
}

.contact__form-message.success {
    background-color: var(--color-primary-light);
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    display: block;
}

.contact__form-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}


/* ==================== CONTACT RESPONSIVENESS ==================== */
@media (max-width: 992px) {
    .contact__grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .contact__form {
        grid-template-columns: 1fr;
    }
}

/* ==================== COOKIE POPUP ==================== */
.cookie-popup {
    position: fixed;
    bottom: -150px; /* Initially hidden */
    left: 0;
    width: 100%;
    background-color: rgba(33, 37, 41, 0.95); /* Dark, semi-transparent */
    backdrop-filter: blur(5px);
    color: var(--color-bg);
    padding: 1.5rem 0;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    z-index: 2000;
    transition: bottom 0.5s ease-in-out;
}

.cookie-popup.is-visible {
    bottom: 0;
}

.cookie-popup__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-popup__text {
    margin: 0;
    font-size: 0.9rem;
}

.cookie-popup__text a {
    color: var(--color-white);
    font-weight: 700;
    text-decoration: underline;
    transition: color var(--transition-speed);
}

.cookie-popup__text a:hover {
    color: #a7ffeb;
}

.cookie-popup__button {
    background-color: var(--color-primary);
    color: var(--color-white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 700;
    white-space: nowrap; /* Prevent button text from wrapping */
    transition: background-color var(--transition-speed);
}

.cookie-popup__button:hover {
    background-color: #004d40;
}

/* ==================== POLICY PAGES ==================== */
.pages {
    padding: 5rem 0;
    background-color: var(--color-white);
}

/* For better readability, make content area narrower */
.pages .container {
    max-width: 800px; 
}

.pages h1, .pages h2 {
    font-family: var(--font-heading);
    color: var(--color-text);
    margin-bottom: 1rem;
}

.pages h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
}

.pages h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
}

.pages p {
    font-size: 1rem;
    line-height: 1.7;
    color: #343a40;
    margin-bottom: 1.5rem;
}

.pages ul {
    list-style-position: outside;
    list-style-type: disc;
    padding-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.pages li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.pages a {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
}

.pages a:hover {
    text-decoration: none;
}

.pages strong {
    font-weight: 700;
    color: var(--color-text);
}


/* Responsiveness for cookie popup */
@media (max-width: 768px) {
    .cookie-popup__content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}