@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&family=Playball:wght@400&display=swap');

        :root {
            font-family: 'Inter', sans-serif;
        }

        .header-background-container {
            position: relative;
            overflow: hidden;
            height: 650px;
            margin-left: -16rem;
            width: calc(100% + 16rem);
        }

        .header-background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 0;
            min-height: 100%;
        }

        .header-background-overlay {
            position: absolute;
            inset: 0;
            background-color: rgba(0, 0, 0, 0.35);
            z-index: 1;
        }

        .main-content-wrapper {
            position: relative;
            z-index: 2;
            margin-left: 16rem;
            min-height: 100vh;
            background-color: #1a1a1a;
        }

        .review-card {
            background-color: #242424;
            border: 1px solid #374151;
            border-radius: 0.75rem;
            padding: 1.25rem 1.5rem;
        }

        @media (max-width: 1024px) {
            .main-content-wrapper {
                margin-left: 0 !important;
            }
            .header-background-container {
                margin-left: 0 !important;
                width: 100% !important;
                height: 300px !important;
            }
        }
