:root {
    --primary-blue: #3661bd;
    --primary-default-blue: #265ECA;
    --text-black: #1F2124;
    --bg-gray: #f2f4f6;
    --header-height: 90px;
    --font-family: 'Poppins', sans-serif;
    --text-black-default: #000000;
    --text-footer-gray: #333333;
    --font-size-default: 17px;
    --font-size-small: 14px;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    --font-black: 900;
}

/* manufacturer-cta-section  */
.manufacturer-cta-section {
    width: 100%;
    max-width: 1520px;
    height: 700px;
    margin: 0 auto;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.manufacturer-cta-content {
    text-align: center;
    padding: 0 20px;
    width: 90%;
    max-width: 1200px;
    margin-top: 60px;
    font-family: var(--font-family);
}

.manufacturer-cta-title {
    font-family: var(--font-family);
    font-size: 64px;
    font-weight: var(--font-extrabold);
    /* color: #fff; */
    color: black;
    margin: 0 0 40px 0;
    line-height: 1.1;
    letter-spacing: -1px;
}

.manufacturer-cta-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 15px 20px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.manufacturer-cta-btn:hover {
    transform: translateY(-2px);
    background-color: #f2f2f2;
}

@media (max-width: 1200px) {
    .manufacturer-cta-title {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .manufacturer-cta-section {
        height: 500px;
    }

    .manufacturer-cta-title {
        font-size: 36px;
        margin-bottom: 30px;
    }

    .manufacturer-cta-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .manufacturer-cta-section {
        height: 400px;
    }

    .manufacturer-cta-title {
        font-size: 28px;
        margin-bottom: 25px;
    }

    .manufacturer-cta-btn {
        padding: 12px 25px;
        font-size: 14px;
    }
}

/* discover-section */
.discover-section {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.discover-container {
    width: 98%;
    max-width: 1650px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.discover-heading {
    font-family: var(--font-family, sans-serif); 
    font-size: 36px;
    font-weight: 700; 
    color: #000;
    text-align: center;
    margin-bottom: 50px;
    line-height: 1.2;
}

.discover-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.discover-card {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 4px;
    overflow: hidden;
    text-decoration: none;
    display: flex;
    align-items: flex-start; 
    justify-content: flex-start;
    padding: 50px;
    background-color: #fff; 
    transition: box-shadow 0.3s ease;
}

.discover-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0b1da3; 
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease, opacity 0.3s ease;
    z-index: 1;
    opacity: 1;
}

.discover-card:hover .discover-card-bg {
    opacity: 0;
}

.discover-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: opacity 0.3s ease;
}

.discover-card:hover::after {
    opacity: 0;
}

.discover-card-content {
    position: relative;
    z-index: 3;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start; 
    height: 100%;
}

.discover-card-title {
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.discover-card:hover .discover-card-title {
    color: #000;
}

.discover-hover-info {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    max-height: 0; 
}

.discover-card:hover .discover-hover-info {
    opacity: 1;
    transform: translateY(0);
    max-height: 300px;
    margin-top: 10px;
}

.discover-card-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    line-height: 1.5;
    margin-bottom: 20px;
}

.discover-btn {
    display: inline-block;
    padding: 10px 25px;
    background-color: #265ECA;
    color: #fff;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.2s ease;
}

.discover-btn:hover {
    background-color: #1a459c;
}

.discover-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.discover-tags-wrapper {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.discover-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #000;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer; 
}

.discover-tag.active {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

.discover-tag:not(.active) {
    background-color: #fff;
    color: #000;
}

.discover-tag:hover {
    background-color: #000;
    color: #fff;
    border-color: #000;
}

@media (max-width: 992px) {
    .discover-heading {
        font-size: 20px;
    }

    .discover-grid {
        grid-template-columns: 1fr;
    }
    
    .discover-card {
        aspect-ratio: auto;
        min-height: 280px;
        padding: 40px;
    }
}

@media (max-width: 600px) {
    .discover-section {
        padding: 50px 0;
    }

    .discover-heading {
        font-size: 20px;
        margin-bottom: 30px;
    }

    .discover-card {
        aspect-ratio: 16/9;
        padding: 20px;
    }

    .discover-card-title {
        font-size: 24px;
    }

    .discover-tags-wrapper {
        gap: 10px;
        display: flex;
        justify-content: center;
        flex-direction: column;
    }

    .discover-tag {
        font-size: 14px;
        padding: 10px 20px;
        width: 100%;
        box-sizing: border-box;
    }
}

.indoor-series-section {
    width: calc(100% - 40px);
    margin: 0 auto 50px auto; 
    border-radius: 8px; 
    overflow: hidden; 
    height: 650px; 
    background-image: url('../images/home/wp-content.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
    transition: background-image 0.5s ease-in-out; 
}

.indoor-series-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.indoor-series-container {
    width: 96%;
    max-width: 1650px;
    position: relative;
    z-index: 2; 
    display: flex;
    justify-content: flex-start; 
    padding: 0 20px;
}

.indoor-series-content {
    max-width: 800px; 
    color: #fff;
    text-align: left;
}

.indoor-series-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700; 
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #fff;
    transition: opacity 0.3s ease;
}

.indoor-series-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #fff;
    transition: opacity 0.3s ease;
}

.indoor-series-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.indoor-series-btn:hover {
    transform: translateY(-2px);
    background-color: #f2f2f2;
}

@media (max-width: 1200px) {
    .indoor-series-title { font-size: 30px; }
}

@media (max-width: 992px) {
    .indoor-series-section { height: 550px; }
    .indoor-series-title { font-size: 30px; }
    .indoor-series-desc { font-size: 18px; }
}

@media (max-width: 600px) {
    .indoor-series-section { height: 450px; background-position: left center; }
    .indoor-series-container { padding: 0; }
    .indoor-series-title { font-size: 30px; margin-bottom: 15px; }
    .indoor-series-desc { font-size: 16px; margin-bottom: 30px; }
    .indoor-series-btn { padding: 12px 30px; font-size: 14px; }
}



/* indoors-series-section */
.indoor-series-section {
    width: calc(100% - 40px);
    margin: 0 auto; 
    border-radius: 8px; 
    overflow: hidden; 
    height: 650px; 
    background-image: url('./assets/images/wp-content.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center; 
    justify-content: center; 
    position: relative;
    margin-bottom: 0;
}

.indoor-series-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.indoor-series-container {
    width: 96%;
    max-width: 1650px;
    position: relative;
    z-index: 2; 
    display: flex;
    justify-content: flex-start; 
    padding: 0 20px;
}

.indoor-series-content {
    max-width: 800px; 
    color: #fff;
    text-align: left;
}

.indoor-series-title {
    font-family: 'Poppins', sans-serif;
    font-size: 64px;
    font-weight: 700; 
    margin: 0 0 20px 0;
    line-height: 1.1;
    color: #fff;
}

.indoor-series-desc {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #fff;
}

.indoor-series-btn {
    display: inline-block;
    background-color: #fff;
    color: #000;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 700;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.indoor-series-btn:hover {
    transform: translateY(-2px);
    background-color: #f2f2f2;
}

@media (max-width: 1200px) {
    .indoor-series-title {
        font-size: 52px;
    }
}

@media (max-width: 992px) {
    .indoor-series-section {
        height: 550px;
    }
    
    .indoor-series-title {
        font-size: 42px;
    }

    .indoor-series-desc {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .indoor-series-section {
        height: 450px;
        background-position: left center; 
    }
    
    .indoor-series-container {
        padding: 0;
    }

    .indoor-series-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .indoor-series-desc {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .indoor-series-btn {
        padding: 12px 30px;
        font-size: 14px;
    }
}

/* split-slider-section */
.split-slider-section {
    width: 100%;
    height: 600px;
    position: relative;
    overflow: hidden;
    background-color: #fff;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
}

.split-slider-track {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.split-slide {
    min-width: 100%;
    height: 100%;
    display: flex;
}

.split-text-col {
    width: 50%;
    height: 100%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: flex-start; 
    padding-left: 30px; 
    padding-right: 20px;
}

.split-text-wrapper {
    width: 100%;
    max-width: 600px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.split-category {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin-bottom: 10px;
    display: block;
}

.split-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    line-height: 1.1;
    letter-spacing: -1.5px;
}

.split-desc {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 95%;
}

.split-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #000;
    color: #fff;
    padding: 20px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.split-btn:hover {
    background-color: #333;
    transform: translateX(5px);
}

.split-image-col {
    width: 50%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-color: #fff;
}

.split-image-bg {
    display: none;
}

.split-img {
    position: relative;
    z-index: 2;
    width: 85%;
    max-height: 85%;
    object-fit: contain;
    transform: scale(0.95);
    transition: transform 1.5s ease;
}

.split-slide.active .split-img {
    transform: scale(1);
}

.split-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: color 0.3s ease;
}

.split-nav-btn:hover {
    color: #000;
}

.prev { left: 10px; }
.next { right: 10px; }

.split-pagination {
    position: absolute;
    bottom: 30px;
    left: 50%; 
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.split-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ccc;
    cursor: pointer;
    transition: all 0.3s ease;
}

.split-dot.active {
    background-color: #000;
    transform: scale(1.2);
}

@media (max-width: 1200px) {
    .split-title {
        font-size: 48px;
    }
}

@media (max-width: 992px) {
    .split-slider-section {
        height: auto;
        min-height: 600px;
        padding-bottom: 20px;
    }

    .split-slider-track {
        height: auto;
    }

    .split-slide {
        flex-direction: column-reverse;
        height: auto;
    }

    .split-text-col {
        width: 100%;
        height: auto;
        padding: 30px 20px 60px 20px;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .split-text-wrapper {
        align-items: center;
        max-width: 100%;
    }

    .split-title {
        font-size: 32px;
        margin-bottom: 15px;
        line-height: 1.2;
    }

    .split-desc {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .split-image-col {
        width: 100%;
        height: 350px;
        background-color: #f8f8f8;
    }

    .split-img {
        width: 100%;
        height: 100%;
        max-height: 300px;
        object-fit: contain;
        transform: scale(1) !important;
    }

    .split-nav-btn {
        display: none;
    }

    .split-pagination {
        bottom: 10px;
        width: 100%;
        justify-content: center;
    }
    
    .split-btn {
        width: auto;
        justify-content: center;
    }
}

/* price-check-section */
.price-check-section {
    width: 99%;
    padding: 80px 0;
    background-color: #f2f4f6;
    font-family: 'Poppins', sans-serif;
    margin-bottom: 20px;
}

.price-check-container {
    width: 90%;
    max-width: 1440px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.price-check-title {
    font-size: 38px;
    font-weight: var(--font-extrabold);
    color: #AF0000;
    margin-bottom: 15px;
}

.price-check-desc {
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

.price-check-desc strong {
    font-weight: 700;
}

.price-check-form {
    width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.form-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 14px;
    color: #333;
    background-color: #fff;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
    box-sizing: border-box; 
    height: 50px;
}

.form-input::placeholder {
    color: #888;
}

.form-input:focus {
    border-color: #AF0000;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    color: #333;
}

.form-footer {
    display: flex;
    justify-content: center;
}

.get-quote-btn {
    background-color: #000;
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.get-quote-btn:hover {
    background-color: #333;
    transform: translateY(-2px);
}

@media (max-width: 1200px) {
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
}

@media (max-width: 768px) {
    .price-check-title {
        font-size: 28px;
    }
    
    .price-check-desc {
        font-size: 14px;
        padding: 0 10px;
    }
}

@media (max-width: 576px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .get-quote-btn {
        width: 100%;
        justify-content: center;
    }
}

/* led-products-section */
.led-products-section {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
    font-family: var(--font-family);
}

.led-products-container {
    width: calc(100% - 40px);
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -40px;
}

.led-products-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin: 0 0 50px 0;
    text-align: center;
    line-height: 1.2;
}

.led-products-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.product-card {
    background-color: #f2f4f6;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 4px;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-img-wrapper {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.product-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
}

.product-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    text-align: left;
    width: 100%;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 1200px) {
    .led-products-title {
        font-size: 42px;
    }
    
    .product-title {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .led-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .led-products-section {
        padding: 85px 0;
    }

    .led-products-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .led-products-grid {
        grid-template-columns: 1fr;
    }

    .product-card {
        padding: 20px;
    }
}

/* solution-markets-section */
.solution-markets-section {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.solution-markets-container {
    width: calc(100% - 40px);
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -80px;
}

.solution-markets-title {
    font-size: 48px;
    font-weight: 800;
    color: #000;
    margin: 0 0 50px 0;
    text-align: center;
    line-height: 1.2;
}

.solution-markets-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.solution-card {
    background-color: #f2f4f6;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 4px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.solution-img-wrapper {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.solution-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.solution-card:hover .solution-img {
    transform: scale(1.05);
}

.solution-content {
    padding: 25px 20px;
    display: flex;
    align-items: center;
    flex-grow: 1;
}

.solution-title {
    font-size: 28px;
    font-weight: 800;
    color: #000;
    margin: 0;
    line-height: 1.4;
    text-align: left;
}

@media (max-width: 1200px) {
    .solution-markets-title {
        font-size: 42px;
    }
    
    .solution-title {
        font-size: 18px;
    }
}

@media (max-width: 992px) {
    .solution-markets-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .solution-markets-section {
        padding: 50px 0;
    }

    .solution-markets-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .solution-markets-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-content {
        padding: 20px;
    }
}

/* news-section */
.news-section {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
}

.news-container {
    width: 95%;
    max-width: 1600px;
    margin: 0 auto;
    margin-top: -80px;
}

.news-header {
    margin-bottom: 40px;
}

.news-section-title {
    font-size: 42px;
    font-weight: var(--font-bold);
    color: var(--text-black-default);
    font-family: var(--font-family);
    display: flex;
    justify-content: center;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.news-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
    border: 3px solid transparent; 
    box-sizing: border-box; 
    transition: border-color 0.3s ease; 
}

.news-card-link:hover {
    border-color: var(--primary-default-blue);
}

.news-card {
    display: flex;
    flex-direction: column;
    background-color: #f0f2f5; 
    height: 100%;
}

.news-img-box {
    width: 100%;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.news-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.news-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-black-default);
    line-height: 1.4;
    margin-bottom: 15px;
    font-family: var(--font-family);
}

.news-date {
    font-size: 18px;
    color: var(--text-black-default);
    margin-bottom: 15px;
    font-weight: var(--font-medium);
    font-family: var(--font-family);
}

.news-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-footer-gray);
    font-family: var(--font-family);
    margin: 0;
}

.pagination-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.page-link {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: var(--text-footer-gray);
    font-weight: var(--font-semibold);
    font-size: 16px;
    font-family: var(--font-family);
    transition: all 0.3s ease;
    cursor: pointer;
}

.page-link.active {
    background-color: var(--text-black-default);
    color: #fff; 
    border-color: var(--text-black-default);
}

.page-link:hover:not(.active) {
    background-color: #f5f5f5;
}

.page-link.next i {
    font-size: 14px;
}

@media (max-width: 1200px) {
    .news-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .news-title {
        font-size: 18px;
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: 1fr;
    }

    .news-section-title {
        font-size: 28px;
    }
}

/* support-section */
.support-section {
    width: 100%;
    background-color: #fff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.support-container {
    width: calc(100% - 40px);
    max-width: 1650px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: -150px;
    cursor: pointer;
}

.support-title {
    font-size: 40px;
    font-weight: 700;
    color: #000;
    margin: 0 0 60px 0;
    text-align: center;
    line-height: 1.2;
}

.support-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.support-card {
    border: 1px solid #e5e7eb;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background-color: #fff;
    border-radius: 4px;
}

.support-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    background-color: #e5e7eb;
}

.support-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: #000;
}

.support-icon svg {
    width: 30px;
    height: 30px;
    stroke-width: 2px;
}

.support-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.support-card-desc {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1200px) {
    .support-title {
        font-size: 42px;
    }
    
    .support-card-title {
        font-size: 22px;
    }
}

@media (max-width: 992px) {
    .support-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .support-section {
        padding: 50px 0;
    }

    .support-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .support-grid {
        grid-template-columns: 1fr;
    }
    
    .support-card {
        padding: 30px 20px;
    }
}