.explore-cta-section {
    background-color: #FBCFE8;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

.explore-cta-container {
    max-width: 800px; 
    width: 100%;
    margin: 0 auto;
}

.explore-cta-title {
    color: #EC4899; 
    font-size: 2rem; 
    font-weight: 700;
    margin-top: 0;
    margin-bottom: 20px;
    line-height: 1.3;
}

.explore-cta-description {
    color: #4B5563; 
    font-size: 1.1rem;
    line-height: 1.6;
    font-weight: 400;
    margin: 0;
}

@media (max-width: 768px) {
    .explore-cta-section {
        padding: 40px 16px;
    }
    
    .explore-cta-title {
        font-size: 1.5rem;
    }
    
    .explore-cta-description {
        font-size: 1rem;
    }
}