body {
    margin: 0 !important;
    padding: 0 !important;
}

@media (width >=1440px) {
    body {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}

.entertainment-industry-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

@media (width >=1440px) {
    .entertainment-industry-section {
        display: flex;
        align-items: center;
        justify-content: center;
    }

}


a:visited,
a {
    color: rgba(6, 14, 29, 1);
}

.privacy-container {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    align-items: center;
    font-family: Inter;
}

.main-nav {
    justify-content: space-between;
    align-items: center;
    background: #242933;
    backdrop-filter: blur(2px);
    align-self: stretch;
    display: flex;
    width: 100%;
    gap: 40px 100px;
    flex-wrap: wrap;
    padding: 23px 72px;
    font: 600 14px Inter, sans-serif;
}



.hero-image {
    aspect-ratio: 6.25;
    object-fit: contain;
    width: 100%;
    border-radius: 16px;
    margin-top: 48px;
    /* max-width: 1296px; */
}

.intro-text {
    color: #454952;
    margin-top: 32px;
    font: 500 20px/30px Inter, sans-serif;
}

.content-wrapper {
    /* margin-top: 32px; */
    width: 100%;
    /* max-width: 1296px; */
    display: flex;
    gap: 20px;
}

.sidebar {
    width: 24%;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    padding: 16px;
    border-radius: 16px;
    background: #fff;
    box-shadow: 0px 0px 24px 0px rgba(101, 115, 143, 0.16);
}

.sidebar-nav a {
    text-decoration: none;
}

.nav-item {
    border-radius: 14px;
    padding: 10px 16px;
    margin-top: 8px;
    text-align: left;
    font-feature-settings: 'liga' off, 'clig' off;
    /* width: 100%; */
}

.nav-item.active {
    background-color: #242933;
    color: #fff;
}

.main-content {
    width: 76%;
}

.section {
    /* margin-top: 24px; */
}

.section-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 8px;
}

.section-text {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: #454952;
}

ul {
    color: #454952;
}


.copyright {
    color: #a2a4a9;
    font: 400 14px Inter, sans-serif;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 24px;
    aspect-ratio: 1;
    object-fit: contain;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

@media (max-width: 991px) {
    .main-nav {
        padding: 0 20px;
    }

    .hero-image {
        margin-top: 40px;
    }

    .content-wrapper {
        flex-direction: column;
    }

    .sidebar,
    .main-content {
        width: 100%;
    }

    .footer {
        margin-top: 40px;
        padding: 0 20px;
    }
}