/* Privacy Policy Page Specific Styles */

.privacy-page {
    background: #b8b8b8;
}

.privacy-page .container_main_page {
    background: #FBFBFB;
    padding-bottom: 0;
    color: #1e1e1e;
}

/* Sticky Sidebar Badge */
.badge-privacy {
    position: sticky;
    top: 64px;
    background: #47e194;
    border-radius: 12px;
    padding: 24px 0;
    width: 90px;
    height: auto;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.78;
    box-sizing: border-box;
}

.badge-privacy span {
    font-family: 'Reenie Beanie', cursive;
    font-size: 64px;
    color: #fbfbfb;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    text-transform: uppercase;
    white-space: nowrap;
}

/* Main Content Layout */
.privacy-main {
    padding: 24px 80px 128px;
    max-width: 1440px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 60px;
    font-weight: 900;
    text-transform: uppercase;
    color: #1e1e1e;
    margin-bottom: 24px;
    margin-top: 0;
}

.privacy-updated-date {
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
    color: #1e1e1e;
    margin-bottom: 8px;
}

.privacy-disclaimer {
    font-size: 16px;
    font-weight: 400;
    font-style: italic;
    color: #505050;
    max-width: 518px;
    line-height: 1.55;
    margin-bottom: 48px;
}

/* Policy Content Sections */
.policy-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1156px;
}

.policy-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.policy-section h2 {
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #1e1e1e;
    margin: 0;
    line-height: 1.4;
}

.policy-section p {
    font-size: 18px;
    font-weight: 400;
    color: #1e1e1e;
    line-height: 1.4;
    margin: 0;
}

.policy-section ul {
    list-style: disc;
    padding-left: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.policy-section li {
    font-size: 18px;
    font-weight: 400;
    color: #1e1e1e;
    line-height: 1.4;
}

.policy-section a {
    color: #007efa;
    text-decoration: underline;
    transition: color 0.2s;
}

.policy-section a:hover {
    color: #0055c7;
}

/* Responsive */
@media (max-width: 1100px) {
    .privacy-main {
        padding: 32px 40px;
    }
    .privacy-title {
        font-size: 48px;
    }
    .policy-section p, .policy-section li {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .privacy-main {
        padding: 24px 20px;
    }
    .privacy-title {
        font-size: 36px;
    }
}
