.hero-section {
            background: linear-gradient(135deg, var(--bg-dark-color) 0%, var(--brand-color) 100%);
            color: var(--title-color-dark);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: #00000085;
            z-index: 1;
        }

        .bg-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            /* z-index: -1;  */
            /* Sends the video behind the content */
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .section-title {
            color: var(--title-color);
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title.white {
            color: var(--title-color-dark);
        }

        .section-subtitle {
            color: var(--secondary-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 80px 0 60px;
            }
        }

        .button-3 {
            color: white;
            background: var(--title-color);
            transition: .3s all ease-in-out;
            padding: 16px 24px;
            width: max-content;
            font-size: 16px;

            &:hover {
                color: var(--title-color) !important;
                background: white;
                border: 1.2px solid var(--text-color) !important;
            }
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 25px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: white;
            background-color: var(--title-color);
        }

        .feature-description {
            display: block !important;
        }