.incubator-showcase {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.enhanced-incubator-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    padding: 3rem 0;
}

.incubator-card {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    margin: 1rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.incubator-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.incubator-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.incubator-number {
    width: 40px;
    height: 40px;
    background: var(--color-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

.list-services {
    list-style: none;
    padding: 0;
    margin: 0;
}

.list-services li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

/* .list-services li::before {
    content: "→";
    color: var(--color-1);
    position: absolute;
    left: 0;
    top: 0;
} */

.why-join-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--color-1) 0%, var(--color-2) 100%);
    color: white;
}

.why-join-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.why-join-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: white;
}

.why-join-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.why-join-blockquote {
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 0 1rem 2rem;
    margin: 2rem 0;
    font-style: italic;
}

.incubator-testimonials {
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.incubator-testimonials .testimonials__slide {
    background: white;
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.incubator-cta {
    padding: 6rem 0;
    background: url('../images/intro-bg.jpg') center center/cover;
    position: relative;
}

.incubator-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
}

.incubator-cta .s-cta__content {
    position: relative;
    color: white;
}

.incubator-cta .btn {
    margin-top: 2rem;
}

@media screen and (max-width: 800px) {
    .enhanced-incubator-grid {
        grid-template-columns: 1fr;
    }
    
    .why-join-title {
        font-size: 2rem;
    }
}


/* Reduce incubator card header title size */
.incubator-card .list-items__item-title {
    font-size: var(--text-md); /* Changed from default larger size */
    line-height: 1.3;
    margin-bottom: 0;
}


