/* PRIVACY POLICY PAGE STYLES */

/* Privacy Hero Section */
.privacy-hero-section {
    padding: 0 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px dashed var(--ghosxt-black);
}

.privacy-hero-container {
    padding: 3rem 0 3rem 0;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.privacy-hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    color: var(--ghosxt-red-0);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.privacy-hero-subtitle {
    font-size: 1.125rem;
    color: var(--ghosxt-black);
    font-family: var(--font-family-2);
    opacity: 0.7;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 0 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: auto;
}

.privacy-content-container {
    padding: 5rem 0;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

/* Introduction */
.privacy-intro {
    background: var(--ghosxt-white);
    border: 1px dashed var(--ghosxt-black);
    border-radius: 15px;
    padding: 2rem;
}

.privacy-intro p {
    font-size: 1.0625rem;
    color: var(--ghosxt-black);
    font-family: var(--font-family-2);
    line-height: 1.7;
    margin: 0;
}

/* Table of Contents */
.privacy-toc {
    background: var(--ghosxt-white);
    border: 1px solid var(--ghosxt-black);
    border-radius: 15px;
    padding: 2rem;
}

.privacy-toc-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--ghosxt-black);
    margin: 0 0 1.5rem 0;
    padding-bottom: 1rem;
    border-bottom: 1px dashed var(--ghosxt-black);
}

.privacy-toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.privacy-toc-list li {
    margin: 0;
}

.privacy-toc-list a {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--ghosxt-white);
    border: 1px dashed var(--ghosxt-black);
    border-radius: 8px;
    color: var(--ghosxt-black);
    text-decoration: none;
    font-family: var(--font-family-2);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.privacy-toc-list a:hover {
    background: var(--ghosxt-gray);
    transform: translateX(4px);
}

/* Privacy Sections */
.privacy-sections {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.privacy-section {
    scroll-margin-top: 100px;
}

.privacy-section-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--ghosxt-black);
    margin: 0 0 1.5rem 0;
    padding-bottom: 0.75rem;
}

.privacy-subsection-title {
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--ghosxt-black);
    margin: 2rem 0 1rem 0;
}

.privacy-text {
    font-size: 1rem;
    color: var(--ghosxt-black);
    font-family: var(--font-family-2);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.privacy-text:last-child {
    margin-bottom: 0;
}

.privacy-text a {
    color: var(--ghosxt-red-0);
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.privacy-text a:hover {
    opacity: 0.7;
}

.privacy-highlight {
    background: var(--ghosxt-white);
    border-left: 3px solid var(--ghosxt-red-0);
    padding: 1rem 1.5rem;
    border-radius: 4px;
    margin: 1.5rem 0;
}

/* Privacy Lists */
.privacy-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-list li {
    font-size: 1rem;
    color: var(--ghosxt-black);
    font-family: var(--font-family-2);
    line-height: 1.7;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
}

.privacy-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--ghosxt-red-0);
    font-weight: 600;
    font-size: 1.25rem;
}

.privacy-list li strong {
    font-weight: 600;
    color: var(--ghosxt-black);
}

/* Contact Box */
.privacy-contact-box {
    background: var(--ghosxt-white);
    border: 1px dashed var(--ghosxt-black);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.privacy-contact-item {
    font-size: 1rem;
    color: var(--ghosxt-black);
    font-family: var(--font-family-2);
    line-height: 1.7;
}

.privacy-contact-item strong {
    font-weight: 600;
    display: inline-block;
    min-width: 80px;
}

.privacy-contact-item a {
    color: var(--ghosxt-red-0);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.privacy-contact-item a:hover {
    opacity: 0.7;
    text-decoration: underline;
}

/* RESPONSIVE STYLES */
@media (max-width: 968px) {
    .privacy-hero-container {
        padding: 3rem 0 2rem 0;
    }

    .privacy-hero-title {
        font-size: 2.75rem;
    }

    .privacy-hero-subtitle {
        font-size: 1rem;
    }

    .privacy-content-container {
        padding: 3rem 0;
        gap: 2.5rem;
    }

    .privacy-toc-list {
        grid-template-columns: 1fr;
    }

    .privacy-section-title {
        font-size: 1.75rem;
    }

    .privacy-subsection-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 640px) {
    .privacy-hero-section {
        min-height: auto;
    }

    .privacy-hero-container {
        padding: 2rem 0 1.5rem 0;
    }

    .privacy-hero-title {
        font-size: 2rem;
    }

    .privacy-hero-subtitle {
        font-size: 0.95rem;
    }

    .privacy-content-container {
        padding: 2rem 0;
        gap: 2rem;
    }

    .privacy-intro {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .privacy-intro p {
        font-size: 1rem;
    }

    .privacy-toc {
        padding: 1.5rem;
        border-radius: 12px;
    }

    .privacy-toc-title {
        font-size: 1.35rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.875rem;
    }

    .privacy-toc-list a {
        padding: 0.625rem 0.875rem;
        font-size: 0.9rem;
    }

    .privacy-sections {
        gap: 2.5rem;
    }

    .privacy-section-title {
        font-size: 1.5rem;
        margin-bottom: 1.25rem;
        padding-bottom: 0.625rem;
    }

    .privacy-subsection-title {
        font-size: 1.125rem;
        margin: 1.5rem 0 0.875rem 0;
    }

    .privacy-text {
        font-size: 0.95rem;
    }

    .privacy-list li {
        font-size: 0.95rem;
    }

    .privacy-contact-box {
        padding: 1.25rem;
    }

    .privacy-contact-item {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero-container {
        padding: 1.5rem 0 1rem 0;
    }

    .privacy-hero-title {
        font-size: 1.75rem;
    }

    .privacy-hero-subtitle {
        font-size: 0.9rem;
    }

    .privacy-content-container {
        padding: 1.5rem 0;
    }

    .privacy-intro {
        padding: 1.25rem;
    }

    .privacy-intro p {
        font-size: 0.95rem;
    }

    .privacy-toc {
        padding: 1.25rem;
    }

    .privacy-toc-title {
        font-size: 1.25rem;
    }

    .privacy-toc-list a {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .privacy-section-title {
        font-size: 1.35rem;
    }

    .privacy-subsection-title {
        font-size: 1.0625rem;
    }

    .privacy-text {
        font-size: 0.9rem;
    }

    .privacy-list li {
        font-size: 0.9rem;
        padding-left: 1.25rem;
    }

    .privacy-highlight {
        padding: 0.875rem 1.25rem;
    }

    .privacy-contact-box {
        padding: 1rem;
    }

    .privacy-contact-item {
        font-size: 0.9rem;
    }

    .privacy-contact-item strong {
        display: block;
        margin-bottom: 0.25rem;
    }
}

.footer-visible {
    display: flex !important;
}