.sixth{
 background-color: var(--white);
}
        .community-section {
            position: relative;
            width: 100vw;
            height: 100dvh;
            display: flex;
            justify-content: center;
            align-items: center;
            overflow: hidden;
        }

        .community-text {
            position: relative;
            z-index: 10;
            text-align: center;
            font-size: clamp(3rem, 8vw, 8rem);
            font-weight: 700;
            letter-spacing: -0.02em;
            line-height: 1.1;
            pointer-events: none;
            user-select: none;
        }

        .community-text .line {
            display: block;
        }

        .community-text .normal {
            color: #121923;
        }

        .community-text .accent {
            color: #F1854A;
        }

   

        @media (max-width: 768px) {
            .community-text {
                padding: 0 1rem;
            }
        }