/* CTA Section - Based on Figma Design */
.cta-section {
    background-image: url('../images/cta-background.png');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    width: 100%;
    min-height: 400px;
}

.cta-container {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 48px;
    flex-grow: 1;
    align-items: center;
    justify-content: center;
    min-height: 1px;
    min-width: 1px;
    padding: 64px;
    position: relative;
    flex-shrink: 0;
    width: 1281px;
    max-width: 100%;
}

.cta-headline {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    justify-content: flex-start;
    padding: 0;
    position: relative;
    flex-shrink: 0;
}

.cta-title {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 48px;
    position: relative;
    flex-shrink: 0;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.64px;
    width: 685.573px;
    max-width: 100%;
}

.cta-underline {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
    transform: rotate(180deg);
}

.cta-underline img {
    width: 219.588px;
    height: auto;
    display: block;
    max-width: none;
}

.cta-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 42px;
    line-height: 48px;
    position: relative;
    flex-shrink: 0;
    color: #ffffff;
    text-align: center;
    letter-spacing: -0.84px;
    width: 833.958px;
    max-width: 100%;
}

.cta-newsletter {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    position: relative;
    flex-shrink: 0;
}


.cta-button {
    background: #1649ff;
    box-sizing: border-box;
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    padding: 0 32px;
    position: relative;
    border-radius: 7px;
    flex-shrink: 0;
    height: 48px;
    text-transform: capitalize;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 48px;
    color: #ffffff;
    text-align: left;
    white-space: nowrap;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background: #0b63e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(22, 73, 255, 0.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .cta-container {
        width: 100%;
        padding: 48px 32px;
    }
    
    .cta-title {
        font-size: 28px;
        line-height: 40px;
        width: 100%;
    }
    
    .cta-description {
        font-size: 32px;
        line-height: 40px;
        width: 100%;
    }
    
    .cta-newsletter {
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    .cta-container {
        gap: 32px;
        padding: 40px 20px;
    }
    
    .cta-title {
        font-size: 24px;
        line-height: 32px;
    }
    
    .cta-description {
        font-size: 20px;
        line-height: 28px;
    }
    
    .cta-newsletter {
        flex-direction: column;
        gap: 12px;
    }
    
    .cta-button {
        width: 100%;
        justify-content: center;
    }
    
    .cta-underline img {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .cta-title {
        font-size: 20px;
        line-height: 28px;
    }
    
    .cta-description {
        font-size: 18px;
        line-height: 24px;
    }
}