.cta-custom-section {
    background-color: #2563ea; /* Azul como en el header */
    color: #fff;
    padding: 50px 20px;
    text-align: center;
    border-radius: 15px;
    
    margin-top: 0px;
}

.cta-custom-container {
    max-width: 900px;
    margin: 0 auto;
}

.cta-custom-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 15px;
   
}

.cta-custom-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #e0f7fa;
}

.cta-custom-button {
    display: inline-block;
    padding: 15px 30px;
    font-size: 1.2em;
    color: #2563ea;
    background-color: #fff;
    text-decoration: none;
    border-radius: 30px;
    
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-custom-button:hover {
    background-color: #e0f7fa;
    color: #2563ea;
    transform: scale(1.05);
    
}