.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: -149px;
    padding-top: 149px;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-image-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 2rem;
    text-align: center;
    color: #ffffff;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
    line-height: 1.2;
}

.hero-description {
    font-size: 1.25rem;
    line-height: 1.8;
    margin: 0;
    font-weight: 400;
}

.news-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 1rem 5.5rem;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.section-kicker {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.section-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.section-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.3rem;
    border-radius: 999px;
    background: var(--primary-color);
    color: #ffffff;
    font-weight: 600;
    white-space: nowrap;
    transition: 0.2s ease;
}

.section-button:hover,
.section-button:focus-visible {
    background: var(--primary-color-75);
    color: #ffffff;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    align-items: stretch;
}

.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(69, 71, 100, 0.12);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 35px rgba(69, 71, 100, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 42px rgba(69, 71, 100, 0.14);
}

.news-card-image {
    width: 100%;
    height: 220px;
    min-height: 220px;
    background: #f1f3f5;
    overflow: hidden;
}

.news-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-card-content {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1.3rem 1.25rem 1.4rem;
}

.news-card-content h3 {
    margin: 0 0 0.8rem;
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--primary-color);
}

.news-card-content p {
    margin: 0;
    line-height: 1.9;
    color: var(--primary-color);
    opacity: 0.9;
}

.news-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: auto;
    padding-top: 1.2rem;
}

.news-relative-date {
    color: var(--secondary-color);
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
}

.news-link {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 700;
    position: relative;
    padding-bottom: 0.15rem;
}

.news-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0.3);
    transform-origin: right center;
    transition: transform 0.2s ease;
}

.news-link:hover::after,
.news-link:focus-visible::after {
    transform: scaleX(1);
}

.stats-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 5rem;
}

.stats-header {
    margin-bottom: 1.4rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
}

.stat-card {
    border: 1px solid rgba(69, 71, 100, 0.12);
    border-radius: 18px;
    background: #ffffff;
    padding: 1.35rem 1rem;
    text-align: center;
    box-shadow: 0 10px 24px rgba(69, 71, 100, 0.08);
}

.stat-label {
    margin: 0;
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
}

.stat-value {
    margin: 0.65rem 0 0;
    color: var(--primary-color);
    font-size: 1.6rem;
    font-weight: 800;
    line-height: 1.2;
}

.partners-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 5.5rem;
}

.partners-header {
    margin-bottom: 1.5rem;
}

.partners-marquee {
    position: relative;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(69, 71, 100, 0.12);
    background: linear-gradient(180deg, #ffffff 0%, #f8fafb 100%);
    padding: 1.25rem 0;
    direction: ltr;
}

.partners-marquee::before,
.partners-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 88px;
    z-index: 2;
    pointer-events: none;
}

.partners-marquee::before {
    right: 0;
    background: linear-gradient(to left, rgba(248, 250, 251, 1), rgba(248, 250, 251, 0));
}

.partners-marquee::after {
    left: 0;
    background: linear-gradient(to right, rgba(248, 250, 251, 1), rgba(248, 250, 251, 0));
}

.partners-track {
    display: flex;
    align-items: center;
    gap: 0;
    width: max-content;
    animation: partners-scroll 28s linear infinite;
    will-change: transform;
    direction: ltr;
}

.partners-group {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex: 0 0 auto;
    padding-inline-end: 1.25rem;
    box-sizing: content-box;
    direction: ltr;
}

.partner-logo {
    flex: 0 0 auto;
    width: 168px;
    aspect-ratio: 3 / 2;
    padding: 0;
    border-radius: 14px;
    background: #ffffff;
    border: 1px solid rgba(69, 71, 100, 0.12);
    box-shadow: 0 8px 20px rgba(69, 71, 100, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.partner-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    padding: 0.45rem;
}

.cta-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem 6rem;
}

.cta-box {
    border-radius: 24px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #2b7a73 100%);
    color: #ffffff;
    padding: 2rem 1.4rem;
    text-align: center;
    box-shadow: 0 14px 34px rgba(52, 142, 134, 0.24);
}

.cta-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1.3;
}

.cta-text {
    margin: 0.9rem 0 0;
    font-size: 1.05rem;
    line-height: 1.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.35rem;
    padding: 0.82rem 1.6rem;
    border-radius: 999px;
    background: #ffffff;
    color: var(--primary-color);
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    transform: translateY(-2px);
    background: #f3f7f7;
}

@keyframes partners-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .news-section {
        padding: 4rem 1rem 4.5rem;
    }

    .section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .section-title {
        font-size: 1.7rem;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .stats-section {
        padding: 0 1rem 4rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .partners-section {
        padding: 0 1rem 4.5rem;
    }

    .cta-section {
        padding: 0 1rem 4.6rem;
    }

    .cta-title {
        font-size: 1.7rem;
    }

    .partners-marquee {
        padding: 1rem 0;
    }

    .partner-logo {
        width: 140px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-description {
        font-size: 0.95rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .news-card-content {
        padding: 1.1rem 1rem 1.2rem;
    }

    .news-card-footer {
        gap: 0.75rem;
    }

    .section-button {
        width: 100%;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 1.5rem 1rem;
    }

    .cta-title {
        font-size: 1.45rem;
    }

    .cta-button {
        width: 100%;
    }

    .partners-track {
        animation-duration: 22s;
    }

    .partners-group {
        gap: 0.9rem;
    }

    .partner-logo {
        width: 92px;
        height: 92px;
    }
}
