/* Reset và cơ bản */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-synthesis: none;
}

html, body {
    height: 100%;
    margin: 0;
}

body {
    font-family: 'Roboto', sans-serif !important;
    color: rgb(2, 58, 81) !important;
    line-height: 1.6;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1 0 auto;
    min-height: calc(100vh - 60px);
    display: flex;
    flex-direction: column;
}

/* Áp dụng font Manrope cho các tiêu đề */
h1, h2, h3, h4, h5, h6, .fusion-title, .fusion-title-text {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700;
    color: rgb(2, 58, 81) !important;
}

/* Nội dung */
body, p, div, .fusion-text, .fusion-title-text {
    font-family: 'Roboto', sans-serif !important;
    font-weight: 400;
    color: rgb(2, 58, 81);
}

/* Container */
.container {
    max-width: 1310.4px;
    margin: 0 auto;
    padding: 28px 20px 10px;
    flex: 1;
}

/* Bỏ gạch chân khi hover */
a:hover {
    text-decoration: none !important;
}

/* Dropdown menu */
.navbar .dropdown-menu {
    display: none;
    background-color: rgb(224, 236, 240) !important;
    border-radius: 8px;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: translateY(10px);
    opacity: 0;
}

.navbar .nav-item.dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.navbar .dropdown-item {
    color: rgb(2, 58, 81) !important;
    font-family: 'Manrope', sans-serif !important;
    font-weight: 700 !important;
    padding: 8px 16px;
    transition: color 0.3s ease, background-color 0.5s ease;
}

.navbar .dropdown-item:hover {
    background-color: rgb(200, 220, 230) !important;
    color: rgb(20, 123, 11) !important;
}

.navbar .dropdown-item.active {
    color: rgb(20, 123, 11) !important;
    background-color: rgb(200, 220, 230) !important;
    font-weight: 700 !important;
}

.navbar .navbar-brand {
    color: rgb(2, 58, 81) 
}

.navbar-brand img {
    height: 40px;
    width: auto;
    display: block;
}
/* Ẩn biểu tượng dropdown */
.navbar .dropdown-toggle::after {
    display: none !important;
}
/* Responsive */
@media (max-width: 768px) {
    .navbar .nav-item {
        padding-left: 10px;
        padding-right: 10px;
    }

    .navbar .nav-link {
        padding: 4px 8px;
        font-size: 14px;
    }

    .navbar .nav-item:hover .nav-link {
        border-top: 1px solid #e2e2e2;
        border-bottom: 1px solid #e2e2e2;
    }

    .navbar .nav-item:hover .nav-link.active {
        border-bottom: 1px solid rgb(0, 123, 255) !important;
    }

    .navbar .nav-link.active {
        border-bottom: 1px solid rgb(0, 123, 255);
    }

    .navbar .dropdown-menu {
        display: none;
        transform: translateY(0);
        opacity: 1;
    }

    .navbar .nav-item.dropdown:hover .dropdown-menu {
        display: none;
    }

    /* Ẩn banner ở chế độ mobile */
    .banner-slider {
        display: none;
    }
}

/* Banner Slider */
.banner-slider {
    position: relative;
    width: 100%;
}

.banner-carousel {
    width: 100%;
    max-width: 100%;
    margin: 0;
}

.banner-item {
    position: relative;
    width: 100%;
    height: 550px;
}

.banner-item::before,
.banner-item::after {
    display: none;
}

.banner-item img {
    width: 100%;
    height: 650px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.banner-caption {
    display: none;
}
@media (max-width: 768px) {
    .banner-item {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .banner-item {
        height: 200px;
    }
}
.slick-prev, .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #2CBC63;
    border: none;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slick-prev i, .slick-next i {
    font-size: 20px;
    color: #fff;
}

.slick-prev:hover, .slick-next:hover {
    background-color: #038938;
}

.slick-prev:hover {
    transform: translateY(-50%) translateX(-5px);
}

.slick-next:hover {
    transform: translateY(-50%) translateX(5px);
}

.slick-prev {
    left: 20px;
}

.slick-next {
    right: 20px;
}

.slick-prev:before, .slick-next:before {
    display: none;
}

.slick-dots {
    position: absolute;
    bottom: 30px;
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 10;
}

.slick-dots li {
    margin: 0 8px;
}

.slick-dots li button {
    font-size: 0;
    line-height: 0;
    width: 15px;
    height: 15px;
    padding: 5px;
    cursor: pointer;
    color: transparent;
    border: 0;
    outline: none;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    transition: opacity 0.3s, background 0.3s;
}

.slick-dots li button:hover,
.slick-dots li.slick-active button {
    opacity: 1;
    background: #28a745;
    animation: dot-sparkle 1.5s infinite;
}

@keyframes dot-sparkle {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

/* Services Section */
.services-section {
    padding: 50px 0 10px;
}

.services-section .header-title {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
}

.services-section .service-title {
    font-family: 'Manrope', sans-serif !important;
    font-size: 24px;
    font-weight: 700;
    color: rgb(2, 58, 81) !important;
    text-align: center;
    margin-bottom: 16px;
}

.services-section .card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    border-radius: 10px;
}

.services-section .card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

.services-section .card-img-top {
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s;
}

.services-section .card:hover .card-img-top {
    transform: scale(1.0);
}

.services-section .card-title {
    transition: color 0.3s;
}

.services-section .card:hover .card-title {
    color: #007bff !important;
}

/* Vision Section */
.vision-section {
    padding: 50px 0 10px;
}

.vision-section ul li {
    margin-bottom: 10px;
}

.custom-icon {
    padding-right: 10px;
    color: rgb(24, 175, 34);
    font-size: 150% !important;
}

/* News Section */
.news-section {
    padding: 50px 0 10px;
}

.header {
    text-align: center;
    margin-bottom: 40px;
}

.header-title {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
}

.content {
    display: flex;
    flex-wrap: wrap;
    position: relative;
}

.column {
    flex: 1;
    min-width: 300px;
    padding: 20px;
    background: none;
    box-shadow: none;
}

.news-section .content #events-column::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background-color: rgb(16, 184, 30);
    transform: translateX(-50%);
}

@media (min-width: 769px) {
    .content::before {
        display: block;
    }
}

.column-title {
    font-size: 24px;
    line-height: 1.42;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.post-card {
    margin-bottom: 20px;
    display: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.post-card--active {
    display: block;
}

.post-card--large {
    display: block;
    margin-bottom: 20px;
}

.post-card--small {
    flex: 0 0 50%;
    padding: 0 10px;
    box-sizing: border-box;
    display: block;
    width: 100%;
}

.post-card:hover {
    transform: scale(1.03);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.post-card__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    transition: transform 0.3s;
}

.post-card--small .post-card__img {
    height: 150px;
}

.post-card:hover .post-card__img {
    transform: scale(1.05);
}

.post-card__title {
    font-size: 24px;
    line-height: 1.3;
    text-align: center;
    margin: 16px 0 8px;
}

.post-card__link {
    color: #0073aa;
    text-decoration: none;
    transition: color 0.3s;
}

.post-card__link:hover {
    color: #28a745;
}

.meta {
    text-align: center;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 4px 8px;
    margin: 4px 0;
    display: inline-block;
}

.meta__link {
    color: #10B81E;
    text-decoration: none;
    transition: color 0.3s;
}

.meta__link:hover {
    color: #28a745;
}

.carousel {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel__track {
    display: flex;
    transition: transform 0.5s ease;
}

.news-small-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    width: 100%;
}

@media (max-width: 768px) {
    .news-section .content {
        flex-direction: column;
    }
    .news-section .content #events-column::after {
        display: none;
    }
    .news-small-container {
        grid-template-columns: 1fr;
    }
}

.view-all-container {
    text-align: center;
    margin: 40px 0;
}

.btn-view-all {
    display: inline-block;
    padding: 12px 24px;
    background-color: #10B81E !important;
    color: #fff!important;
    text-decoration: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-view-all:hover {
    background-color: rgb(0, 115, 239) !important;
}

.pagination {
    text-align: center;
    margin-top: 20px;
    display: flex;
    justify-content: center;
}

.pagination__button {
    font-family: 'Manrope', sans-serif !important;
    font-weight: 500;
    font-size: 16px;
    color: rgb(2, 58, 81) !important;
    background-color: #fff;
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 20px;
    text-decoration: none;
    line-height: 1;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pagination__button:hover {
    background-color: #2CBC63;
    color: #fff !important;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination__button--active {
    background-color: #038938;
    color: #fff !important;
    border-color: #038938;
    transform: scale(1.1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.pagination__button--disabled {
    color: #999 !important;
    background-color: #f5f5f5;
    border-color: #ddd;
    cursor: not-allowed;
    opacity: 0.5;
    transform: none;
    box-shadow: none;
}

/* Partners Section */
.partners-section {
    padding: 50px 0 10px;
    background-color: #f0f0f0;
}

.partners-section .header-title {
    font-size: 48px;
    line-height: 1.2;
    text-align: center;
    margin-bottom: 40px;
}

.partners-slider {
    margin: 0 auto;
}

.partners-slider .partner-item {
    padding: 0 15px;
    text-align: center;
    display: inline-block;
    transition: transform 0.3s;
}

.partners-slider .partner-item:hover {
    transform: scale(1.1);
}

.partners-slider .partner-item img {
    max-height: 50px;
    filter: grayscale(100%);
    transition: filter 0.3s, box-shadow 0.3s;
}

.partners-slider .partner-item:hover img {
    filter: grayscale(0%);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.partners-section .slick-dots {
    position: static;
    margin-top: 20px;
}

.partners-section .slick-dots li {
    margin: 0 5px;
}

.partners-section .slick-dots li button {
    width: 12px;
    height: 12px;
    background: #ccc;
}

.partners-section .slick-dots li.slick-active button {
    background: #28a745;
    animation: dot-sparkle 1.5s infinite;
}

/* Footer */
.fusion-tb-footer {
    background-color: #c8caca;
    color: #fff;
    flex-shrink: 0;
}

.fusion-tb-footer.fusion-footer {
    background-color: #bfc7c1 !important;
    color: #13416e !important;
}

.fusion-tb-footer .fusion-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.fusion-tb-footer .fusion-builder-column {
    margin-bottom: 20px;
    padding: 0 15px;
}

.fusion-tb-footer .fusion_builder_column_3_10 {
    flex: 0 0 30%;
    max-width: 30%;
}

.fusion-tb-footer .fusion_builder_column_2_10 {
    flex: 0 0 20%;
    max-width: 20%;
}

.fusion-tb-footer .fusion_builder_column_full {
    flex: 0 0 100%;
    max-width: 100%;
    text-align: center;
}

.fusion-tb-footer .fusion-title-heading {
    font-size: 20px;
    margin-bottom: 10px;
    color: #017730 !important;
    font-weight: bold;
}

.fusion-tb-footer .fusion-text p {
    font-size: 16px; /* Giảm font-size để cân đối */
    margin-bottom: 8px; /* Giảm margin-bottom */
    color: #0a0808 !important;
    white-space: normal;
}

.fusion-tb-footer .fusion-menu {
    list-style: none;
    padding: 0;
}

.fusion-tb-footer .fusion-menu li {
    margin-bottom: 5px; /* Giảm khoảng cách giữa các mục */
}

.fusion-tb-footer .fusion-menu li a {
    color: #0a0808;
    text-decoration: none;
    font-size: 14px; /* Giảm font-size để cân đối */
}



.fusion-tb-footer.fusion-footer a {
    color: #10171d;
    text-decoration: none;
}

.fusion-tb-footer.fusion-footer a:hover {
    color: #1bc60e !important;
}

.fusion-tb-footer .fusion-button {
    border: none;
    border-radius: 20px;
    padding: 10px 20px;
    text-decoration: none;
    display: inline-block;
    margin-top: 12px;
}

.fusion-tb-footer .fusion-button:hover {
    background-color: #2CBC63;
    border-radius: 20px;
    color: #c4bbb8;
}

.fusion-tb-footer .fusion-social-network-icon {
    margin: 0 8px; /* Giảm khoảng cách giữa các icon */
    font-size: 16px; /* Giảm kích thước icon */
    color: #8d2020;
}

.fusion-tb-footer .fusion-social-network-icon:hover {
    color: #007bff;
}

.fusion-tb-footer .fusion-social-links {
    margin-top: 10px;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .fusion-tb-footer .fusion_builder_column_3_10,
    .fusion-tb-footer .fusion_builder_column_2_10 {
        flex: 0 0 100%;
        max-width: 100%;
        text-align: center;
    }

    .fusion-tb-footer .fusion-menu li {
        display: inline-block;
        margin: 0 10px 10px;
    }

    .fusion-tb-footer .fusion-social-links {
        text-align: center;
    }
}

/* Company About Page Styles */
.company-about-banner, .company-about-vision, .company-about-timeline, .company-about-values {
    padding: 20px 0 10px;
}

.company-about-banner .section-title,
.company-about-vision .section-title,
.company-about-timeline .section-title,
.company-about-values .section-title {
    font-size: 36px;
    line-height: 43.2px;
    text-align: center;
    margin-bottom: 30px;
}

.company-about-banner {
    background-color: #e6f0fa;
    padding: 40px 0 10px;
}

.company-about-banner .banner-images {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.company-about-banner .banner-images img {
    height: 300px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.company-about-banner .banner-images .image-alt-1 {
    width: 300px;
}

.company-about-banner .banner-images .image-alt-2 {
    width: 600px;
    height: 300px;
}

.company-about-banner .banner-images .image-alt-3 {
    width: 300px;
}

.company-about-vision {
    padding: 40px 0 10px;
    background-color: #f8f9fa;
}

.company-about-vision .vision-layout {
    display: flex;
    align-items: center;
    gap: 40px;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.company-about-vision .vision-image {
    flex: 0 0 45%;
    max-width: 45%;
}

.company-about-vision .vision-image img {
    width: auto;
    height: 200px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.company-about-vision .vision-text {
    flex: 1;
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.company-about-vision .vision-subtitle {
    color: #28a745;
    font-size: 1.1em;
    font-weight: 500;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.company-about-vision .vision-title {
    color: #1e3a8a;
    font-size: 1.8em;
    font-weight: 700;
    margin-bottom: 15px;
}

.company-about-vision .vision-description {
    color: #333;
    font-size: 1em;
    line-height: 1.8;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .company-about-vision .vision-layout {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .company-about-vision .vision-image {
        flex: 0 0 100%;
        max-width: 100%;
    }

    .company-about-vision .vision-image img {
        height: 200px;
    }

    .company-about-vision .vision-text {
        padding: 15px;
        text-align: center;
    }

    .company-about-vision .vision-subtitle {
        font-size: 1em;
    }

    .company-about-vision .vision-title {
        font-size: 1.5em;
    }

    .company-about-vision .vision-description {
        font-size: 0.95em;
    }
}

.company-about-values .card-custom {
    min-height: 220px;
    margin-bottom: 20px;
    text-align: center;
    border: none;
    padding: 5px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
    position: relative;
    overflow: hidden;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(0.1s * var(--card-index));
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.company-about-values .card-custom::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #28a745, #038938);
    transition: height 0.3s ease;
}

.company-about-values .card-custom:hover::before {
    height: 8px;
}

.company-about-values .card-custom:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.company-about-values .card-custom[data-value="cost"] {
    background-color: #e6f3fa;
    --card-index: 1;
}

.company-about-values .card-custom[data-value="cost"]:hover {
    background-color: #d1e8f5;
}

.company-about-values .card-custom[data-value="quality"] {
    background-color: #f0f8f8;
    --card-index: 2;
}

.company-about-values .card-custom[data-value="quality"]:hover {
    background-color: #e0f0f0;
}

.company-about-values .card-custom[data-value="environment"] {
    background-color: #f4fff4;
    --card-index: 3;
}

.company-about-values .card-custom[data-value="environment"]:hover {
    background-color: #e0f7e0;
}

.company-about-values .card-custom[data-value="team"] {
    background-color: #fff4f4;
    --card-index: 4;
}

.company-about-values .card-custom[data-value="team"]:hover {
    background-color: #ffe0e0;
}

.company-about-values .card-custom[data-value="unity"] {
    background-color: #f4f4ff;
    --card-index: 5;
}

.company-about-values .card-custom[data-value="unity"]:hover {
    background-color: #e0e0ff;
}

.company-about-values .card-custom i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    transition: transform 0.3s ease, color 0.3s ease;
}

.company-about-values .card-custom[data-value="cost"] i {
    color: #28a745;
}

.company-about-values .card-custom[data-value="quality"] i {
    color: #007bff;
}

.company-about-values .card-custom[data-value="environment"] i {
    color: #038938;
}

.company-about-values .card-custom[data-value="team"] i {
    color: #ff5733;
}

.company-about-values .card-custom[data-value="unity"] i {
    color: #6a1b9a;
}

.company-about-values .card-custom:hover i {
    transform: scale(1.1);
}

.company-about-values .card-custom h5 {
    font-size: 1.2em;
    color: rgb(2, 58, 81);
    margin-bottom: 12px;
    font-weight: 700;
}

.company-about-values .card-custom p {
    color: #666;
    line-height: 1.5;
    font-size: 0.95em;
}

.company-about-timeline .timeline-section {
    margin-bottom: 0;
}

.company-about-timeline .timeline-container {
    position: relative;
    padding: 0 15px;
    min-height: 400px;
    background-color: #fff;
}

.company-about-timeline .timeline {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    height: 100%;
    width: 2px;
    background-color: #28a745;
    z-index: 0;
}

.company-about-timeline .timeline-item {
    position: relative;
    margin-bottom: 40px;
    min-height: 60px;
    z-index: 1;
}

.company-about-timeline .timeline-dot {
    position: absolute;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
    width: 12px;
    height: 12px;
    background-color: #28a745;
    border-radius: 50%;
    z-index: 2;
    margin: 2px 0;
}

.company-about-timeline .timeline-segment {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background-color: #28a745;
    z-index: 0;
}

.company-about-timeline .timeline-segment.segment-1 {
    top: 0;
    height: 48px;
}

.company-about-timeline .timeline-segment.segment-2 {
    top: 62px;
    height: 88px;
}

.company-about-timeline .timeline-segment.segment-3 {
    top: 164px;
    height: 88px;
}

.company-about-timeline .timeline-segment.segment-4 {
    top: 266px;
    height: 88px;
}

.company-about-timeline .timeline-segment.segment-5 {
    top: 368px;
    height: 48px;
}

.company-about-timeline .timeline-item.left::after {
    content: '';
    position: absolute;
    top: 5px;
    width: 50%;
    height: 2px;
    border-top: 2px dotted #28a745;
    right: 0;
    z-index: 0;
}

.company-about-timeline .timeline-item.right::after {
    display: none;
}

.company-about-timeline .event-box {
    background-color: #e6f3fa;
    padding: 15px;
    border-radius: 5px;
    position: relative;
    margin-left: 20px;
}

.company-about-timeline .event-box::before {
    content: "\1F4C5";
    position: absolute;
    top: 10px;
    left: -25px;
    color: #28a745;
    font-size: 1.2rem;
}

.company-about-timeline .timeline-year {
    font-size: 1.2em;
    font-weight: bold;
    color: #008080;
    margin-bottom: 5px;
}

.company-about-timeline .timeline-content {
    margin-left: 20px;
}

@media (max-width: 768px) {
    .company-about-banner .section-title,
    .company-about-vision .section-title,
    .company-about-timeline .section-title,
    .company-about-values .section-title {
        font-size: 28px;
    }

    .company-about-banner .banner-images {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .company-about-banner .banner-images img {
        width: 100%;
        max-width: 600px;
        height: auto;
    }
}

.hero-section {
    padding: 20px 0;
    text-align: center !important;
    margin-bottom: 40px;
}

.hero-section .hero-content {
    max-width: 800px;
    width: 90%;
    margin: 0 auto !important;
    text-align: center !important;
}

.hero-section h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero-section p {
    font-size: 18px;
}

.about-section, .history-section {
    padding: 40px 0 10px;
    background-color: #fff;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
}

.content-block {
    margin-bottom: 40px;
    flex: 1;
}

.content-block .content-image {
    float: right;
    border-radius: 8px;
    width: 300px;
    height: auto;
    margin-left: 15px;
    margin-bottom: 15px;
    object-fit: cover;
    object-position: center;
}

.content-block.vision-block .content-image,
.content-block.mission-block .content-image {
    width: 200px;
}

.content-block .content-text {
    overflow: hidden;
}

.history-link {
    text-align: center;
    margin-top: 20px;
}

.values-list {
    list-style: none;
    padding: 0;
}

.values-list li {
    font-size: 16px;
    margin-bottom: 10px;
}

.values-list li::before {
    content: "• ";
    color: #038938;
}

.timeline-wrapper {
    position: relative;
    max-width: 1310.4px;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 10px;
    width: 100%;
    min-height: 600px;
    overflow: visible;
}

.timeline-wrapper.has-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    right: 5px;
    left: auto;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #6a9d5a, #a5c9a2);
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.timeline-wrapper.has-timeline::after {
    content: '';
    position: absolute;
    top: -10px;
    right: 1px;
    left: auto;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 10px solid #6a9d5a;
    z-index: 2;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.timeline-dots {
    position: absolute;
    right: 5px;
    left: auto;
    top: 0;
    height: 100%;
    width: 4px;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.timeline-dot {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #6a9d5a;
    border-radius: 50%;
    border: 2px solid white;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}

.milestone-dots .milestone-dot {
    width: 14px;
    height: 14px;
    background-color: #6a9d5a;
}

.title-section {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
}

.title-section h2 {
    font-size: 36px;
    line-height: 43.2px;
}

.title-section p {
    font-weight: 400;
}

.milestone-column {
    position: relative;
    z-index: 0;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 30px 0 20px;
}

.milestone-item {
    margin-bottom: 40px;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
    text-align: left;
}

.milestone-item:hover {
    transform: translateY(-5px);
}

.milestone-item h3 {
    font-size: 28px;
    color: #038938;
    margin-bottom: 10px;
}

.milestone-item p {
    font-weight: 400;
    font-size: 16px;
    color: rgb(2, 58, 81);
}

@media (max-width: 1024px) {
    .timeline-wrapper {
        min-height: 500px;
    }

    .timeline-wrapper.has-timeline::before {
        right: 15px;
        left: auto;
    }

    .timeline-wrapper.has-timeline::after {
        right: 11px;
        left: auto;
    }

    .timeline-dots {
        right: 15px;
        left: auto;
    }

    .timeline-dot {
        width: 12px;
        height: 12px;
    }

    .milestone-column {
        padding: 0 45px 0 20px;
        max-width: 100%;
    }

    .milestone-item {
        padding: 15px;
    }

    .milestone-item h3 {
        font-size: 24px;
    }

    .milestone-item p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .timeline-wrapper {
        min-height: 400px;
    }

    .timeline-wrapper.has-timeline::before {
        right: 10px;
        left: auto;
    }

    .timeline-wrapper.has-timeline::after {
        right: 6px;
        left: auto;
    }

    .timeline-dots {
        right: 10px;
        left: auto;
        width: 3px;
    }

    .timeline-dot {
        width: 10px;
        height: 10px;
    }

    .milestone-column {
        padding: 0 40px 0 15px;
    }

    .milestone-item {
        margin-bottom: 20px;
    }

    .title-section h2 {
        font-size: 28px;
    }
}