/* Success Story Container */
.success-story-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    background: #f8f9fc;
    padding: 20px;
    border-radius: 8px;
}

/* Video Section */
.success-story-video {
    flex: 1 1 50%; /* Video takes up half the width */
    max-width: 50%;
}

.success-story-video iframe {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Content Section */
.success-story-content {
    flex: 1 1 50%; /* Content takes up half the width */
    max-width: 50%;
    padding: 20px;
}

.success-story-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    color: #002147; /* Dark navy color */
}

.success-story-description {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
}

/* Buttons */
.success-story-buttons {
    display: flex;
    gap: 15px;
}

.success-story-buttons .button {
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.success-story-buttons .read-more {
    background: #007bff;
    color: #fff;
}

.success-story-buttons .see-all {
    background: transparent;
    color: #007bff;
    border: 2px solid #007bff;
}

.success-story-buttons .see-all:hover {
    background: #007bff;
    color: #fff;
}


