/* Layout for video + text */
.content-wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}
.video-container { flex: 1; max-width: 50%; }
.video-container video { width: 100%; height: auto; }
.text-container { flex: 1; max-width: 50%; }
.text-container p { margin: 10px 0; }

/* Responsive */
@media (max-width: 768px) {
    .content-wrapper { flex-direction: column; }
    .video-container, .text-container { max-width: 100%; }
}

/* CTA Button */
.cta-section { text-align: center; margin: 40px 0; }
.cta-container { display: flex; justify-content: center; margin: 20px 0 40px; }
.cta-button {
    padding: 15px 30px;
    background-color: #007bff;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}
.cta-button:hover { background-color: #0056b3; }

/* Sponsor Section */
.sponsor-section {
    margin: 40px auto;
    text-align: center;
    max-width: 800px; /* keeps it from stretching too wide */
    padding: 20px;
    background-color: #f9f9f9; /* subtle background */
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08); /* soft shadow */
}

.sponsor-section h3 {
    margin-bottom: 15px;
    font-size: 1.4em;
    color: #007bff;
    font-weight: 600;
}

.sponsor-content {
    display: flex;
    flex-direction: row;
    align-items: center; /* vertically center logo + text */
    justify-content: center;
    gap: 20px;
}

.sponsor-logo {
    flex: 0 0 auto;
}

.sponsor-logo-image {
    width: 100px !important;
    height: auto !important;
    object-fit: contain !important;
}

.sponsor-info {
    flex: 1;
    text-align: left;
}

.sponsor-info p {
    font-size: 1.1em;
    color: #444;
    margin: 0;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .sponsor-content {
        flex-direction: column;
    }
    .sponsor-info {
        text-align: center;
    }
    .sponsor-section {
        padding: 15px;
    }
}
