  <style>
        /* Global styles */
        body, html {
            font-family: 'Poppins', sans-serif;
            margin: 0;
            padding: 0;
            background-color: #000;
            color: #fff !important; /* Force all text to be white */
        }

        /* Hero Banner */
        .hero-banner {
            position: relative;
            width: 100%;
            height: 75vh;
            min-height: 400px;
            background: url('https://www.apple.com/newsroom/images/2025/04/meet-four-emerging-filmmakers-bending-cultural-and-creative-lines-with-iphone-16-pro-max/tile/Apple-MAMI-Select-iPhone-16-Pro-Max-hero-lp.jpg.landing-gradient-large.jpg') no-repeat center center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .hero-banner::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 800px;
            padding: 20px;
        }

        .hero-content small {
            display: block;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            opacity: 0.85;
            margin-bottom: .5rem;
        }

        .hero-content h1 {
            font-size: clamp(2rem, 6vw, 3rem);
            font-weight: 600;
            margin-bottom: 1rem;
            color: #fff !important;
        }

        .hero-content p {
            font-size: clamp(1rem, 2.5vw, 1.25rem);
            color: #fff !important;
        }

        .hero-content .btn {
            margin-top: 1rem;
            padding: .75rem 1.5rem;
            background-color: #fff;
            color: #000;
            font-weight: 600;
            text-decoration: none;
            border-radius: 4px;
            transition: background-color .3s;
        }

        .hero-content .btn:hover {
            background-color: #e2e2e2;
        }

        /* Content Section */
        .apple-style-section {
            background-color: #000;
            padding: 40px 20px;
        }

        /* Drop-Cap Styling */
        .drop-cap {
            font-size: 4rem;
            font-weight: bold;
            float: left;
            margin-right: 10px;
            line-height: 1;
            color: #fff; /* Ensure the color is white */
        }

        .drop-cap + p {
            display: inline-block;
        }

        /* Blockquote Styling */
        blockquote {
            font-size: 1.2rem;
            font-style: italic;
            border-left: 3px solid #888;
            padding-left: 15px;
            color: #fff !important;
        }

        .social-icons a i {
            font-size: 1.1rem;
            opacity: 0.8;
            transition: opacity 0.3s;
        }

        .social-icons a:hover i {
            opacity: 1;
        }

        .badge-warning {
            background-color: #f90;
            color: #000;
            font-weight: 600;
        }

        hr.border-secondary {
            border-color: rgba(255, 255, 255, 0.2);
        }

        /* Ensuring all text is white across the site */
        body, p, blockquote, h1, h2, h3, h4, h5, h6, .hero-content, .social-icons a, .badge-warning {
            color: #fff !important;
        }

    </style>