/* Privacy Page Styles */

.privacy-hero {
    padding: 8rem 0 4rem;
    position: relative;
    z-index: 1;
}

.privacy-last-update {
    font-size: 0.9rem;
    color: var(--secondary-color);
    margin-top: 1.5rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(7, 244, 158, 0.1);
    border-radius: 20px;
}

.privacy-content {
    padding: 2rem 0 5rem;
}

.privacy-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 2rem;
    max-width: var(--container-xxl);
    margin: 0 auto;
}

.privacy-toc {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 0.8rem;
}

.toc-list a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-left: 2px solid transparent;
    padding-left: 1rem;
}

.toc-list a:hover, 
.toc-list a.active {
    color: var(--secondary-color);
    border-left: 2px solid var(--secondary-color);
    transform: translateX(5px);
}

.privacy-text section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.privacy-text section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.privacy-text h2 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.privacy-text h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 1rem;
    text-align: left;
}

.privacy-text p, 
.privacy-text ul {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.privacy-text ul {
    padding-left: 1.5rem;
}

.privacy-text ul li {
    margin-bottom: 0.5rem;
}

.privacy-text a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-text a:hover {
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(7, 244, 158, 0.5);
}

.contact-info {
    background: rgba(7, 244, 158, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

/* Responsive styles */
@media (max-width: 991.98px) {
    .privacy-container {
        grid-template-columns: 1fr;
    }
    
    .privacy-toc {
        position: relative;
        top: 0;
        margin-bottom: 2rem;
    }
    
    .privacy-hero {
        padding: 7rem 0 3rem;
    }
}

@media (max-width: 767.98px) {
    .privacy-hero {
        padding: 6rem 0 2.5rem;
    }
    
    .privacy-text h2 {
        font-size: 1.6rem;
    }
    
    .privacy-text h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 5rem 0 2rem;
    }
    
    .privacy-content {
        padding: 1.5rem 0 3rem;
    }
    
    .privacy-text section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }
}