 .pharmacy-benefits-section {
        position: relative;
        color: white;
        padding: 100px 0 180px 0;
        overflow: hidden;
    }

    .pharmacy-benefits-section::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -10%;
        width: 120%;
        height: 150px;
        background: white;
        border-radius: 90% 90% 0 0;
        z-index: 2;
    }

    .pharmacy-content {
        position: relative;
        z-index: 3;
    }

    /* Video container styles */
    .video-background-container {
        position: absolute;
        inset: 0;
        z-index: 0;
    }

    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Gradient overlays for better text readability */
    .video-overlay {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(135deg, rgba(30, 34, 40, 0.8) 0%, rgba(45, 55, 72, 0.7) 50%, rgba(3, 101, 169, 0.6) 100%);
    }

    .video-overlay-secondary {
        position: absolute;
        inset: 0;
        z-index: 1;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    }