.how-it-works-section {
    padding: clamp(3rem, 5vw, 6rem) 1.25rem;
    background-color: var(--bg-color); /* Assuming there is a bg-color variable, or I'll check base.css */
    position: relative;
}

.how-it-works-section .container {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Add some decorative elements if needed, similar to other sections */
