.category-section {
    background-color: #e8f7fe;
}
.category-section h2 {
    color: #d96736 !important;
}
.category-section p {
    font-size: larger;
    font-weight: 600;
}

.icon-fixed {
    width: 60px;
    height: 60px;
    object-fit: contain;
    flex-shrink: 0;
}

.apply-now-btn {
    background: #08b6a7;
    border: none;
    color: white;
    position: relative;
    transition: background 0.4s ease;
    z-index: 1;
    overflow: hidden;
}

.apply-now-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(-125deg, #e8f5e9 0%, #ffffff 50%, #14e7ec 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.apply-now-btn:hover::before {
    opacity: 1;
}

.link {
    margin-bottom: 2rem;
}

.link h4 {
    font-size: 1.3rem;
    color: #00796B;
    margin-bottom: 0.5rem;
    font-weight: 600;
    border-left: 4px solid #80cbc4;
    padding-left: 0.6rem;
}

.link ul {
    list-style: none;
    padding-left: 1.5rem;
    margin: 0;
}

.link li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.link .icon {
    font-size: 1.2rem;
    color: #26a69a;
    margin-right: 0.5rem;
}

.link a {
    display: inline-block;
    text-decoration: none;
    color: #00796B;
    font-weight: 600;
    transition: color 0.3s ease;
}

.link a::after {
    content: "";
    display: block;
    width: 0;
    height: 2px;
    background-color: #00796B;
    transition: width .3s ease;
    margin: 0 auto;
}

.link a:hover {
    font-weight: 700;
}

.link a:hover::after {
    width: 100%;
}

@media (max-width: 576px) {
    .banner-carousel {
        height: 20rem !important;
    }

    .banner-slide {
        height: 20rem !important;
    }
}
