/* Success Section Styles */
.success-section {
    padding: 80px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.content-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-container {
    flex: 1;
    margin-right: 30px;
    position: relative;
}

.text-container {
    flex: 1;
    text-align: left;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.text-heading {
    font-size: 1.8rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
}

.text-content {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.highlight {
    font-weight: bold;
    background-color: rgba(128, 0, 128, 0.15);
    color: #800080;
    padding: 5px 10px;
    display: inline-block;
    margin: 10px 0;
}

@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
    }
    
    .video-container {
        margin-right: 0;
        margin-bottom: 30px;
        width: 100%;
    }
    
    .text-container {
        width: 100%;
    }
}
