body,
.navbar,
.hero {
    /* background-color: #f1f1f1; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- Animation Styles (New) --- */
.reveal-on-scroll {
    opacity: 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-on-scroll.animated {
    opacity: 1;
    transform: translateY(0) translateX(0) scale(1) !important;
    /* Ensure animation properties override initial state */
}

/* Specific animation types */
.fade-up {
    transform: translateY(30px);
}

.fade-left {
    transform: translateX(-30px);
}

.fade-right {
    transform: translateX(30px);
}

/* Animation delays for staggered effects */
.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* Navbar section */
.custom-navbar {
    border-radius: 30px;
    margin: 30px 40px 0 40px;
    position: relative;
    z-index: 100;
}

.navbar-nav .nav-link {
    color: #000;
}

.navbar-nav .nav-link:hover {
    color: #2d8f5c;
}

.btn-get-involved {
    font-weight: 600;
    border-radius: 50px;
}

@media (max-width: 991.98px) {
    .get-involved-mobile {
        order: 0;
        margin-right: auto;
        margin-left: 10px;
    }
}

/* Hero background image and overlay */
.hero-section {
    height: 100vh;
    background: url('images/hero-bg.jpg') center center/cover no-repeat;
    background-size: cover;
    position: relative;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.75);
    /* Dark overlay with decreased opacity */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-section .container {
    z-index: 2;
    position: relative;
}

.btn-success {
    border-radius: 30px;
    font-weight: bold;
}

.navbar-brand img {
    height: 40px;
}

/* --- About Us Section --- */
.about-section {
    padding: 80px 0;
    background-color: white;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
}

.about-description {
    font-size: 1.1rem;
}

.about-description strong {
    color: #00A651;
}

.about-image {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-section img:hover {
    transform: scale(1.02);
    /* Slight scale on hover */
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

.icon-box {
    display: flex;
    align-items: flex-start;
    margin-top: 20px;
}

.icon-box .icon {
    background-color: #00A651;
    color: white;
    width: 100px;
    height: 80px;
    border-radius: 10%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    transition: all 0.3s ease;
}

.icon-box h6 {
    font-weight: 700;
    color: #3498db;
    margin-bottom: 10px;
}

.icon-box .icon i {
    font-size: 2rem;
}

.icon-box .icon:hover {
    background-color: #f1f1f1;
    color: #00A651;
    outline: 2px solid #00A651;
    outline-offset: 5px;
    transform: scale(1.05);
}

.icon-box .icon:hover i {
    color: #00A651;
}

.btn-read {
    background-color: #00A651;
    color: white;
    font-weight: 600;
    border-radius: 20px;
    padding: 10px 20px;
    text-decoration: none;
    margin-top: 30px;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-read:hover {
    background-color: #f1f1f1;
    color: #007f3f;
    outline: 2px solid #00A651;
    outline-offset: 5px;
    transform: scale(1.05);
}

/* --- Area of Focus Section --- */
.area-focus-section {
    padding: 80px 0;
    background-color: white;
}

.area-focus-section .card {
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    /* Added box-shadow to transition */
}

.area-focus-section .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    /* Subtle shadow on hover */
}

.area-focus-section .card img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    height: 14rem;
    /* Changed to 14rem as per your previous request */
    object-fit: cover;
}

.area-focus-section .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.area-focus-section .card-text {
    font-size: 1rem;
    color: #f1f1f1;
}

.area-focus-section .btn {
    background-color: #f1f1f1;
    color: #3f9e6c;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.area-focus-section .btn:hover {
    background-color: #f1f1f1;
    color: #00A651;
    outline: 2px solid #f1f1f1;
    outline-offset: 5px;
    transform: scale(1.05);
}

.area-focus-section .text-primary {
    color: #3498db !important;
}

.area-focus-section .display-5 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
}

.area-focus-section .fw-bold {
    font-weight: 700;
}

/* --- Our Work Section --- */
.our-work {
    padding: 80px 0;
    background-color: #f8f9fa;
    /* Ensure light background for the section */
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 40px;
}

.our-work .card {
    /* Specific targeting to avoid conflict with other cards */
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.our-work .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, 0.15);
    /* Subtle shadow on hover */
}

.our-work .card img {
    border-top-right-radius: 20px;
    border-top-left-radius: 20px;
    height: 200px;
    object-fit: cover;
}

.our-work .card-body {
    text-align: center;
    padding: 20px;
}

.icon-circle {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background-color: #3f9e6c;
    margin: -45px auto 1.5rem auto;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.icon-circle i {
    font-size: 3rem;
    color: white;
}

.icon-circle:hover {
    background-color: #f1f1f1;
    outline: 2px solid #00A651;
    outline-offset: 5px;
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
}

.icon-circle:hover i {
    color: #00A651;
}

.our-work .card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.our-work .card-text {
    font-size: 1rem;
    color: #666;
}

.btn-custom-outline {
    background-color: #3f9e6c;
    color: #f1f1f1;
    font-weight: 600;
    border-radius: 20px;
    padding: 8px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-custom-outline:hover {
    background-color: #f1f1f1;
    color: #00A651;
    outline: 2px solid #00A651;
    outline-offset: 5px;
    transform: scale(1.05);
}

/* --- Partners Section Styling --- */
#partners-section {
    padding: 6rem 0;
    background-color: #f8f9fa;
    /* Light grey background */
    color: #333;
}

#partners-section .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 3.5rem;
    color: #3498db;
}

.carousel-container-custom {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 4rem;
    overflow: hidden;
}

.logo-track {
    display: flex;
    flex-wrap: nowrap;
    gap: 2.5rem;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    overflow-x: scroll;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.logo-track::-webkit-scrollbar {
    display: none;
}

.logo-item {
    flex-shrink: 0;
    width: calc(33.33% - 1.66rem);
    min-width: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.05);
}

.logo-item a {
    text-decoration: none;
    color: inherit;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.logo-item img {
    max-width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
    transition: filter 0.5s ease-in-out, transform 0.3s ease-in-out;
    transform: scale(0.95);
    opacity: 0.7;
}

.logo-item.active img {
    filter: grayscale(0%);
    transform: scale(1.05);
    opacity: 1;
}

.carousel-nav-btn {
    display: none;
    /* Hidden as per request */
}

/* --- CTA Section Styling --- */
#cta-section {
    padding: 8rem 0;
    background-color: #f0f5ee;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.cta-box {
    background-color: #3f9e6c;
    border-radius: 2rem;
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
    padding: 3rem;
    color: #fff;
    max-width: 1100px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 0;
    opacity: 0.9;
}

.cta-form .form-control {
    border-radius: 0.75rem;
    padding: 0.85rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.95);
    color: #333;
    box-shadow: none;
}

.cta-form .form-control::placeholder {
    color: #888;
    opacity: 0.8;
}

.cta-form .form-control:focus {
    border-color: #20c997;
    box-shadow: 0 0 0 0.25rem rgba(32, 201, 151, 0.25);
    background-color: #fff;
}

.cta-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.btn-send {
    background-color: #fff;
    color: #28a745;
    border: none;
    border-radius: 2rem;
    padding: 0.85rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
}

.btn-send:hover {
    background-color: #00A651;
    color: #f1f1f1;
    outline: 2px solid #f1f1f1;
    outline-offset: 2px;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-send i {
    margin-right: 0.75rem;
}

/* Bootstrap Validation Feedback Styling */
.cta-form .form-control:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
}

.cta-form .form-control:valid:not(:placeholder-shown) {
    border-color: #28a745;
}

.cta-form .invalid-feedback {
    color: #ffe0b2;
}

/* Success/Error Message Box */
#form-message {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-align: center;
    display: none;
    /* Controlled by JS */
    transition: opacity 0.3s ease;
}

#form-message.alert-success {
    background-color: #d4edda;
    color: #155724;
    border-color: #c3e6cb;
}

#form-message.alert-danger {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
}

/* --- News Section Styling --- */
#news-section {
    padding: 6rem 0;
    background-color: #ffffff;
}

#news-section .section-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 3.5rem;
}

.news-card {
    border: 1px solid #ffcc00;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5rem rgba(255, 204, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    background-color: #fff;
}

.news-card:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 1rem 2.5rem rgba(255, 204, 0, 0.25);
}

.news-card-img {
    height: 220px;
    object-fit: cover;
    border-radius: 1rem 1rem 0 0;
}

.news-card-body {
    padding: 1.5rem;
    color: #333;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.news-tag {
    background-color: #28a745;
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.news-date {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 500;
}

.news-title {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #333;
}

.btn-read-all {
    background-color: #3f9e6c;
    color: #fff;
    border: none;
    border-radius: 2rem;
    padding: 0.8rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
    margin-top: 3.5rem;
}

.btn-read-all:hover {
    background-color: #228b22;
    color: #fff;
    box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

/* --- Footer Section Styling --- */
.site-footer {
    background-color: #3f9e6c;
    color: #fff;
    padding-top: 4rem;
    padding-bottom: 1.5rem;
    font-size: 0.95rem;
}

.site-footer h5 {
    color: #fff;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

/* Global Link Styling (no underline by default) */
.site-footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer a:hover {
    color: #d4edda;
    text-decoration: none;
    /* Explicitly keep no underline on hover for general footer links */
}

/* Column 1: Logo & Social Icons */
.footer-logo {
    max-width: 150px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: brightness(1.1);
}

.social-icons a {
    color: #fff;
    display: inline-block;
    font-size: 1.5rem;
    margin-right: 1.25rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.social-icons a:hover {
    color: #d4edda;
    transform: translateY(-3px);
    text-decoration: none;
    /* Ensure no underline on social icons on hover */
}


/* Column 2: Org Links */
.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.7rem;
}

/* Re-add underline on hover for specific text links if desired */
.footer-links ul li a:hover {
    text-decoration: none;
}

/* Column 3: Get In Touch */
.contact-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info ul li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.7rem;
}

.contact-info ul li i {
    color: #fff;
    font-size: 1.1rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
    padding-top: 0.2rem;
}

.contact-info ul li a {
    word-break: break-word;
}

/* Re-add underline on hover for specific text links if desired */
.contact-info ul li a:hover {
    text-decoration: none;
}

/* Column 4: Newsletter Subscription */
.newsletter-text {
    font-size: 0.95rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.newsletter-form .input-group {
    background-color: #fff;
    border-radius: 2rem;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.newsletter-form .form-control {
    border: none;
    border-radius: 2rem 0 0 2rem;
    padding: 0.75rem 1.25rem;
    background-color: transparent;
    color: #333;
    box-shadow: none;
    height: auto;
}

.newsletter-form .form-control::placeholder {
    color: #888;
    opacity: 0.7;
}

.newsletter-form .form-control:focus {
    background-color: transparent;
    border-color: transparent;
    box-shadow: none;
}

.newsletter-form .btn-subscribe {
    background-color: #28a745;
    color: #fff;
    border-radius: 0 2rem 2rem 0;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: none;
}

.newsletter-form .btn-subscribe:hover {
    background-color: #228b22;
    color: #fff;
    box-shadow: none;
}

.newsletter-form .input-group>.form-control:focus,
.newsletter-form .input-group>.btn:focus {
    z-index: auto;
}

/* Bottom Part: Copyright & Made With Love */
.footer-bottom {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    text-align: center;
    font-size: 0.85rem;
}

.footer-bottom .love-text {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0.5rem;
}

.footer-bottom .love-text .heart-icon {
    color: #dc3545;
    margin: 0 0.4rem;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.footer-bottom .love-text .heart-icon:hover {
    color: #ff6347;
}

.footer-bottom .love-text a {
    text-decoration: none;
    margin-left: 0.5rem;
}

.footer-bottom .love-text a:hover {
    text-decoration: none;
    /* Re-add underline on hover */
}


/* --- Responsive Adjustments (Unified Media Queries) --- */

/* Medium devices (tablets, 768px and up) and Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    .navbar-nav {
        margin: 0 auto;
        /* Center nav links on larger screens */
    }
}

/* Small devices (landscape phones, 576px and up) and Medium devices (tablets, 768px and up) */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background-color: #f1f1f1;
        padding: 1rem;
    }

    .navbar-collapse .btn {
        display: block;
        margin-top: 1rem;
    }

    .hero-section {
        height: 100vh;
    }

    .hero {
        height: auto;
        /* Allow height to adapt on smaller screens */
        padding: 60px 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .about-section {
        padding: 60px 0;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-description {
        font-size: 1rem;
    }

    .icon-box {
        margin-top: 15px;
    }

    .icon-box .icon {
        width: 80px;
        height: 70px;
        margin-right: 15px;
    }

    .icon-box .icon i {
        font-size: 1.8rem;
    }

    .btn-read {
        margin-top: 20px;
    }

    .about-section .col-md-5,
    .about-section .col-md-7 {
        text-align: center;
        /* Center content on smaller screens */
    }


    .area-focus-section {
        padding: 60px 0;
    }

    .area-focus-section .display-5 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .area-focus-section .card-img {
        height: 180px;
    }

    .area-focus-section .card-title {
        font-size: 1.3rem;
    }

    .area-focus-section .card-text {
        font-size: 0.9rem;
    }


    .our-work {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .our-work .card img {
        height: 180px;
    }

    .icon-circle {
        width: 80px;
        height: 80px;
        margin: -40px auto 1.2rem auto;
    }

    .icon-circle i {
        font-size: 2.5rem;
    }

    .our-work .card-title {
        font-size: 1.3rem;
    }

    .our-work .card-text {
        font-size: 0.9rem;
    }


    .logo-item {
        width: calc(50% - 1.25rem);
        /* Show 2 logos on medium screens */
    }

    .carousel-container-custom {
        padding: 0 3rem;
    }

    #partners-section .section-title {
        font-size: 2.8rem;
    }


    .cta-box {
        padding: 2.5rem;
    }

    .cta-content h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .cta-content p {
        font-size: 1rem;
    }

    .cta-form .form-control {
        padding: 0.75rem 1rem;
    }

    .btn-send {
        font-size: 1.1rem;
        padding: 0.85rem 2.5rem;
    }

    .cta-content,
    .cta-form-col {
        text-align: center;
    }

    .cta-form-col {
        margin-top: 2rem;
    }

    #news-section .section-title {
        font-size: 2.8rem;
    }

    .news-card-img {
        height: 200px;
    }

    .news-card-body {
        padding: 1.2rem;
    }

    .news-title {
        font-size: 1.3rem;
    }

    .btn-read-all {
        font-size: 1rem;
        padding: 0.7rem 2rem;
    }

    .site-footer {
        padding-top: 3rem;
    }

    .site-footer h5 {
        margin-top: 2rem;
        margin-bottom: 1rem;
    }

    .footer-col:first-child .footer-logo {
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .footer-col:first-child .social-icons {
        text-align: center;
    }

    .newsletter-form .input-group {
        width: 75%;
        margin: 0 auto;
    }

    .newsletter-form .form-control {
        margin-bottom: 0;
    }

    .newsletter-form .btn-subscribe {
        width: auto;
    }
}

/* Extra small devices (phones, less than 768px) */
@media (max-width: 767.98px) {
    .navbar-collapse {
        padding: 0.5rem;
        /* Tighter padding for very small screens */
    }

    .hero-section {
        height: 100vh;
    }

    .hero {
        padding: 40px 15px;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 0.9rem;
    }

    .btn-learn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }


    .about-section {
        padding: 40px 0;
    }

    .about-title {
        font-size: 1.8rem;
    }

    .about-description {
        font-size: 0.9rem;
    }

    .icon-box {
        flex-direction: column;
        /* Stack icon and text */
        align-items: center;
        text-align: center;
        margin-top: 15px;
    }

    .icon-box .icon {
        margin-right: 0;
        margin-bottom: 10px;
        width: 70px;
        height: 60px;
    }

    .icon-box .icon i {
        font-size: 1.5rem;
    }


    .area-focus-section {
        padding: 40px 0;
    }

    .area-focus-section .display-5 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .area-focus-section .card {
        margin-bottom: 1.5rem;
        /* Add space between stacked cards */
    }

    .area-focus-section .card img {
        height: 160px;
    }

    .area-focus-section .card-title {
        font-size: 1.2rem;
    }

    .area-focus-section .card-text {
        font-size: 0.85rem;
    }


    .our-work {
        padding: 40px 0;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

    .our-work .card {
        margin-bottom: 1.5rem;
    }

    .our-work .card img {
        height: 160px;
    }

    .icon-circle {
        width: 70px;
        height: 70px;
        margin: -35px auto 1rem auto;
    }

    .icon-circle i {
        font-size: 2rem;
    }

    .our-work .card-title {
        font-size: 1.2rem;
    }

    .our-work .card-text {
        font-size: 0.85rem;
    }


    .logo-item {
        width: calc(100% - 1rem);
        /* Show 1 logo on small screens */
    }

    .carousel-container-custom {
        padding: 0 2rem;
    }

    .logo-track {
        gap: 1.5rem;
    }

    #partners-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }


    #cta-section {
        padding: 4rem 0;
    }

    .cta-box {
        padding: 2rem;
        border-radius: 1.5rem;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 0.9rem;
    }

    .btn-send {
        width: 100%;
    }


    #news-section {
        padding: 4rem 0;
    }

    #news-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 2.5rem;
    }

    .news-card {
        margin-bottom: 1.5rem;
    }

    .news-card-img {
        height: 180px;
    }

    .news-title {
        font-size: 1.2rem;
    }

    .btn-read-all {
        width: 100%;
    }


    .site-footer {
        padding-top: 2.5rem;
    }

    .site-footer h5 {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }

    .social-icons a {
        font-size: 1.3rem;
        margin-right: 1rem;
    }

    .newsletter-form .input-group {
        width: 90%;
    }

    .newsletter-form .form-control,
    .newsletter-form .btn-subscribe {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }
}