.cta-section {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
}

.cta-separator {
    width: 1400px;
    height: 1px;
    background-color: #eb610e;
    margin: 0 auto;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 0px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 120px;
}

.cta-button-wrapper {
    flex-shrink: 0;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: #eb610e;
    color: #ffffff;
    padding: 16px 52px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 0;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #d4550c;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(235, 97, 14, 0.3);
}

.cta-arrow {
    width: 20px;
    height: 20px;
    color: #ffffff;
}

.cta-text-wrapper {
    flex: 1;
    text-align: right;
}

.cta-text-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: end;
}

.cta-title {
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.cta-question {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #2f4269;
    margin-bottom: 8px;
}

.cta-action {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: #eb610e;
}

.cta-description {
    font-size: 16px;
    line-height: 1.6;
    color: #636363;
    margin: 0;
    max-width: 600px;
}

@media (max-width: 1200px) {
    .cta-separator {
        width: 100%;
        max-width: 1200px;
    }
    
    .cta-container {
        max-width: 1200px;
    }
    
    .cta-content {
        gap: 80px;
    }
}

@media (max-width: 992px) {
    .cta-content {
        gap: 60px;
    }
    
    .cta-question,
    .cta-action {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .cta-separator {
        width: 95%;
    }
    
    .cta-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    
    .cta-text-wrapper {
        text-align: center;
        order: -1;
    }
    
    .cta-button-wrapper {
        order: 1;
    }
    
    .cta-question,
    .cta-action {
        font-size: 36px;
    }
    
    .cta-button {
        font-size: 16px;
        padding: 14px 28px;
    }
    
    .cta-container {
        padding: 40px 20px;
    }
     .cta-text-content {
        gap: 12px;
        align-items: center !important;
        padding: 0 25px;
    }
    .cta-description {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-separator {
        width: 90%;
    }
    
    .cta-question,
    .cta-action {
        font-size: 28px;
    }
    
    .cta-description {
        font-size: 14px;
        line-height: 1.5;
    }
    
    .cta-container {
        padding: 30px 15px;
    }
    
    .cta-content {
        gap: 30px;
    }
    
    .cta-button {
        font-size: 14px;
        padding: 12px 24px;
    }
    
    .cta-text-content {
        gap: 12px;
        align-items: center !important;
        padding: 0 25px;
    }
}