

.video-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
    background-color: #ffffff;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}


.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #000;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

    .video-wrapper iframe,
    .video-wrapper video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border: none;
    }

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    color: white;
}

.play-button {
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease;
    margin-bottom: 20px;
}

    .play-button:hover {
        transform: scale(1.1);
        background-color: rgba(255, 255, 255, 1);
    }

    .play-button::after {
        content: '';
        width: 0;
        height: 0;
        border-left: 24px solid #667eea;
        border-top: 16px solid transparent;
        border-bottom: 16px solid transparent;
        margin-left: 6px;
    }

.video-placeholder h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.video-placeholder p {
    font-size: 1rem;
    opacity: 0.9;
}

.video-cta {
    margin-top: 40px;
}

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c2c2c;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

    .cta-button:hover {
        background-color: #444;
        transform: translateY(-2px);
    }

/* Responsive design */
@media (max-width: 768px) {
    .video-section {
        padding: 40px 20px;
    }

    .video-header h2 {
        font-size: 2rem;
    }

    .video-header p {
        font-size: 1rem;
    }

    .play-button {
        width: 60px;
        height: 60px;
    }

        .play-button::after {
            border-left: 18px solid #667eea;
            border-top: 12px solid transparent;
            border-bottom: 12px solid transparent;
        }

    .video-placeholder h3 {
        font-size: 1.25rem;
    }
}

