/* Section Headings */
.home-page .section-heading {
    position: relative;
    margin-bottom: 3rem;
    text-align: center;
}

.home-page .section-heading h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #2b6cb0, #4299e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.home-page .section-heading p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.home-page .section-heading::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(45deg, #2b6cb0, #4299e1);
    margin: 1rem auto 0;
    border-radius: 2px;
}

.home-page .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    padding: 0 2.2rem;
}

.home-page .section-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(45deg, #2b6cb0, #4299e1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Responsive */
@media (max-width: 768px) {
    .home-page .section-heading h2 {
        font-size: 2rem;
    }
    
    .home-page .section-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
} 