/* Exact adjustments for the design */
.bg-topbar { background-color: #006eff; }
.text-shadow { text-shadow: 2px 2px 4px rgba(0,0,0,0.8); }
.hero-container {
    position: relative;
    z-index: 10;
}
.grey-block { background-color: #f4f6f9; border-radius: 0 12px 12px 0; }
.form-block { border-radius: 12px 0 0 12px; }
@media (max-width: 768px) {
    .grey-block { border-radius: 0 0 12px 12px; }
    .form-block { border-radius: 12px 12px 0 0; }
    .hero-container { margin-top: 20px; }
}
.video-section {
    position: relative;
    cursor: pointer;
}
.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: red;
    background: white;
    border-radius: 50%;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    padding-left: 5px; /* Center play icon visually */
}
.navbar-nav { text-transform: uppercase; font-size: 14px; font-weight: 700; gap: 15px; }
.navbar-nav .nav-link { color: #000 !important; }
.navbar-nav .nav-link:hover { color: #f8ba00 !important; }

/* Fix sticky nav overlap on anchor links */
section { scroll-margin-top: 90px; }
