/* Privacy Policy Specific Styles */

/* Ensure full black background */
body {
    background: #000000 !important;
    color: var(--white);
}

/* Hero Section */
.privacy-hero {
    background: #000000;
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content {
    max-width: 600px;
    margin: 0 auto;
}

.hero-icon {
    margin-bottom: 20px;
}

.hero-icon i {
    font-size: 4rem;
    color: var(--golden-yellow);
    opacity: 0.9;
}

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--white);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 30px;
    opacity: 0.9;
    line-height: 1.6;
    color: var(--white);
}

.last-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    color: var(--white);
}

.last-updated i {
    color: var(--golden-yellow);
}

/* Privacy Content */
.privacy-content {
    padding: 60px 0;
    background: #000000;
}

/* Table of Contents */
.toc-section {
    margin-bottom: 50px;
}

.toc-section h2 {
    text-align: center;
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 30px;
}

.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.toc-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #1a1a1a;
    border-radius: 12px;
    text-decoration: none;
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-left: 4px solid var(--secondary-teal);
}

.toc-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-left-color: var(--golden-yellow);
}

.toc-item i {
    font-size: 1.5rem;
    color: var(--secondary-teal);
    width: 30px;
    text-align: center;
}

.toc-item:hover i {
    color: var(--golden-yellow);
}

.toc-item span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Policy Sections */
.policy-sections {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 60px;
    scroll-margin-top: 100px; /* For smooth scrolling */
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
}

.section-badge i {
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.section-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.9;
}

.section-header h2 {
    color: var(--white);
    font-size: 2.25rem;
    font-weight: 700;
    margin: 0;
}

.section-content {
    background: #1a1a1a;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

/* Information Cards */
.info-card {
    margin-bottom: 30px;
    border: 2px solid #333333;
    border-radius: 12px;
    overflow: hidden;
    background: #1a1a1a;
}

.card-header {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 2px solid #333333;
}

.card-header i {
    color: var(--secondary-teal);
    font-size: 1.5rem;
}

.card-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin: 0;
    font-weight: 600;
}

.card-content {
    padding: 25px;
}

.card-content p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: var(--white);
    opacity: 0.9;
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: #2a2a2a;
    border-radius: 8px;
    border-left: 3px solid var(--secondary-teal);
}

.info-item i {
    color: var(--secondary-teal);
    font-size: 1.25rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.info-item strong {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
}

.info-item span {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Auto Data List */
.auto-data-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auto-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 10px;
    border-left: 4px solid var(--golden-yellow);
}

.auto-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--golden-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.auto-icon i {
    font-size: 1.25rem;
}

.auto-content h5,
.auto-content strong {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.auto-content p {
    color: var(--white);
    opacity: 0.8;
    margin: 0;
    line-height: 1.5;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.usage-card {
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 12px;
    border: 2px solid #333333;
    transition: all 0.3s ease;
}

.usage-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-teal);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.usage-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.usage-icon i {
    font-size: 1.5rem;
}

.usage-card h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.usage-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.usage-card li {
    padding: 8px 0;
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.usage-card li:not(:last-child) {
    border-bottom: 1px solid #333333;
}

/* Commitment Card */
.commitment-card {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    border-radius: 15px;
    margin-bottom: 30px;
}

.commitment-icon {
    margin-bottom: 15px;
}

.commitment-icon i {
    font-size: 3rem;
    color: var(--golden-yellow);
}

.commitment-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.commitment-card p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    margin: 0;
}

/* Sharing Scenarios */
.sharing-scenarios {
    margin-top: 30px;
}

.sharing-scenarios h4 {
    color: var(--white);
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.scenario-card {
    text-align: center;
    padding: 20px;
    background: #2a2a2a;
    border-radius: 10px;
    border-top: 4px solid var(--secondary-teal);
    transition: all 0.3s ease;
}

.scenario-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-top-color: var(--golden-yellow);
}

.scenario-card i {
    font-size: 2rem;
    color: var(--secondary-teal);
    margin-bottom: 15px;
}

.scenario-card:hover i {
    color: var(--golden-yellow);
}

.scenario-card h5 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.scenario-card p {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Security Features */
.security-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.security-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    border-radius: 12px;
    border-left: 5px solid var(--golden-yellow);
}

.security-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--golden-yellow);
    color: var(--primary-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.security-icon i {
    font-size: 1.5rem;
}

.security-content h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.security-content p {
    color: var(--white);
    opacity: 0.9;
    margin-bottom: 12px;
    line-height: 1.6;
}

.security-badge {
    display: inline-block;
    background: var(--secondary-teal);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.right-card {
    text-align: center;
    padding: 25px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.right-card:hover {
    transform: translateY(-5px);
    border-color: var(--secondary-teal);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.right-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 15px;
}

.right-icon i {
    font-size: 1.25rem;
}

.right-card h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.right-card p {
    color: var(--white);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.4;
    margin: 0;
}

/* Exercise Rights */
.exercise-rights {
    background: linear-gradient(135deg, #2a2a2a, #1a1a1a);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-teal);
}

.exercise-rights h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.exercise-rights i {
    color: var(--secondary-teal);
}

.exercise-rights p {
    color: var(--white);
    opacity: 0.9;
    margin: 0;
    line-height: 1.6;
}

/* Contact Section */
.contact-intro {
    text-align: center;
    margin-bottom: 40px;
}

.contact-intro p {
    font-size: 1.1rem;
    color: var(--white);
    opacity: 0.9;
    line-height: 1.6;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.contact-card {
    padding: 30px;
    background: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card.primary {
    border-color: var(--secondary-teal);
    background: linear-gradient(135deg, #2a2a2a, #1a3a3a);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--secondary-teal), var(--primary-blue));
    color: var(--white);
    border-radius: 50%;
    margin: 0 auto 20px;
}

.contact-card.primary .contact-icon {
    background: linear-gradient(135deg, var(--golden-yellow), #f39c12);
    color: var(--primary-blue);
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-details h4 {
    color: var(--white);
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.contact-details p {
    color: var(--white);
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.4;
}

.contact-link {
    color: var(--secondary-teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.1rem;
}

.contact-link:hover {
    color: var(--primary-blue);
    text-decoration: underline;
}

.contact-note {
    color: var(--white);
    opacity: 0.7;
    font-size: 0.9rem;
    font-style: italic;
}

/* Response Commitment */
.response-commitment {
    margin-top: 30px;
}

.commitment-box {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-teal));
    color: var(--white);
    border-radius: 12px;
    align-items: center;
}

.commitment-box i {
    font-size: 2rem;
    color: var(--golden-yellow);
    flex-shrink: 0;
}

.commitment-box strong {
    font-size: 1.2rem;
    margin-bottom: 8px;
    display: block;
}

.commitment-box p {
    margin: 0;
    opacity: 0.9;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .section-content {
        padding: 25px;
    }
    
    .info-grid,
    .usage-grid,
    .scenario-grid,
    .rights-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .security-item,
    .auto-item {
        flex-direction: column;
        text-align: center;
    }
    
    .commitment-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 0 15px;
    }
    
    .privacy-hero {
        padding: 60px 0 40px;
    }
    
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .section-badge {
        width: 60px;
        height: 60px;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
}