.privacy {
  width: 100%;
  min-height: calc(100vh - var(--footer-height, 0px));
  background: linear-gradient(160deg, #f8f0e7 0%, #efe1d3 42%, #e7d2c0 100%);
  padding: 10cqw 0;
  display: flex;
  flex-direction: column;
  gap: 4cqw;
}

.privacy-inner {
    width: 90%;
    margin: 0 auto;
    box-shadow: var(--shadow);
    border-radius: 4cqw;
    background: var(--panel);
    backdrop-filter: blur(10px);
    padding: 5cqw 4cqw;
    font-size: 3cqw;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 4cqw;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 2cqw;
}

.privacy-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1cqw;
}

.privacy h1 {
    font-size: 5cqw;
    line-height: 1.5;
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
}

.privacy h2 {
    font-size: 3cqw;
}

.privacy span {
    font-size: 2.5cqw;
    line-height: 1.5;
    width: 100%;
    text-align: center;
}

.privacy-content h2 {
    font-size: 4cqw;
    line-height: 1.5;
}

.privacy-content p {
    font-size: 3cqw;
    line-height: 2;
}

.privacy-content p a,
.privacy-title-sub a {
    color: var(--accent-deep);
    text-decoration: underline;
}

.page-selector {
    width: 90%;
    margin: 2cqw auto;
    display: grid;
    grid-template-columns: repeat(3 ,1fr);
    gap: 2cqw;
}

.page-selector-home {
    display: flex;
    justify-content: center;
    margin-top: 4cqw;
    color: var(--primary-color);
}

.next-page,
.prev-page,
.backToHome {
    font-size: 3cqw;
}

.next-page,
.prev-page {
    color: var(--top-text-color);
}

.backToHome {
    color: var(--primary-text-color);
}

.page-selector-home .backToHome {
    color: var(--top-text-color);
}

.section-selector {
    display: flex;
    flex-direction: column;
    gap: 2cqw;
}

.section-item {
    width: max-content;
}