/* Privacy Policy Page Styles */
body{
    background-color: #0b1221;
}

.privacy-section {
    padding: 80px 0;
    background-color: #0b1221;
    background-image: none;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    min-height: 100vh;
}

.container-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
    z-index: 1;
    display: none;
}

.privacy-header {
    text-align: center;
    padding-bottom: 50px;
    z-index: 2;
    position: relative;
}

.privacy-title {
    color: var(--light-text);
    margin-bottom: 20px;
    font-size: 4.5rem;
    font-weight: bold;
}

.privacy-title span {
    color: var(--primary-color);
}

.hero-subtitle {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 2;
    position: relative;
    background: rgba(15, 26, 39, 0.95);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-content {
    margin-bottom: 40px;
}

.section-content:last-child {
    margin-bottom: 0;
}

h3.privacy-description {
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 20px;
    margin-top: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}

h4.privacy-description {
    color: var(--light-text);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
    margin-top: 25px;
}

.privacy-description {
    color: var(--light-text);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    text-align: left;
    max-width: none;
}

.privacy-description strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Contact section styling */
.section-content:last-child {
    background: rgba(0, 232, 132, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 10px;
    padding: 25px;
    margin-top: 30px;
}

.section-content:last-child h3.privacy-description {
    border-bottom: none;
    margin-top: 0;
    margin-bottom: 20px;
}

.section-content:last-child .privacy-description {
    margin-bottom: 8px;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .privacy-section {
        padding: 60px 0;
    }

    .privacy-title {
        font-size: 3rem;
    }

    .privacy-content {
        margin: 0 20px;
        padding: 25px;
    }

    h3.privacy-description {
        font-size: 1.6rem;
    }

    h4.privacy-description {
        font-size: 1.2rem;
    }

    .privacy-description {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-title {
        font-size: 2.5rem;
    }

    .privacy-content {
        margin: 0 10px;
        padding: 20px;
    }

    h3.privacy-description {
        font-size: 1.4rem;
    }
}