/* Privacy Policy Styles */

/* Hero Section */
.policy-hero {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 100%);
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(124, 58, 237, 0.1), transparent 70%);
    pointer-events: none;
}

.policy-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.policy-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.policy-subtitle {
    font-size: 1.25rem;
    color: #e2e8f0;
    margin-bottom: 15px;
    line-height: 1.6;
}

.last-updated {
    font-size: 0.95rem;
    color: #a78bfa;
    font-style: italic;
    margin-top: 20px;
}

/* Content Section */
.policy-content {
    background: #000000;
    padding: 80px 0;
    min-height: 100vh;
}

.policy-wrapper {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Table of Contents */
.policy-toc {
    position: sticky;
    top: 100px;
    height: fit-content;
    background: rgba(45, 27, 78, 0.3);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 16px;
    padding: 30px;
}

.policy-toc h3 {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.policy-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-toc li {
    margin-bottom: 12px;
}

.policy-toc a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}

.policy-toc a:hover {
    color: #a78bfa;
    background: rgba(124, 58, 237, 0.1);
    transform: translateX(5px);
}

/* Main Content */
.policy-main {
    background: rgba(26, 11, 46, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.15);
    border-radius: 20px;
    padding: 50px;
}

.policy-section {
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.policy-section h2 {
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 15px;
}

.policy-section h2::before {
    content: '';
    width: 4px;
    height: 35px;
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    border-radius: 2px;
}

.policy-section h3 {
    font-size: 1.4rem;
    color: #e2e8f0;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

.policy-section p {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.policy-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.policy-section li {
    color: #cbd5e1;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 12px;
}

.policy-section li strong {
    color: #ffffff;
}

.policy-section a {
    color: #a78bfa;
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid transparent;
}

.policy-section a:hover {
    color: #c4b5fd;
    border-bottom-color: #a78bfa;
}

/* Special Content Boxes */
.use-case,
.sharing-item,
.security-item,
.right-item {
    background: rgba(124, 58, 237, 0.05);
    border-left: 3px solid #7c3aed;
    padding: 20px 25px;
    margin: 20px 0;
    border-radius: 8px;
}

.use-case h3,
.sharing-item h3,
.security-item h3,
.right-item h3 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-top: 0;
    margin-bottom: 10px;
}

.use-case p,
.sharing-item p,
.security-item p,
.right-item p {
    margin-bottom: 0;
}

/* Security Features Grid */
.security-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.security-item {
    background: rgba(45, 27, 78, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-left: 3px solid #7c3aed;
}

/* Rights List */
.rights-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.right-item {
    background: rgba(45, 27, 78, 0.4);
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* Important Notes */
.important-note,
.security-disclaimer {
    background: rgba(250, 204, 21, 0.1);
    border-left: 3px solid #fbbf24;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 8px;
    color: #fef3c7;
    font-size: 1rem;
}

.important-note strong,
.security-disclaimer strong {
    color: #fbbf24;
}

/* Contact Info Box */
.contact-info {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 12px;
    padding: 30px;
    margin: 25px 0;
}

.contact-info p {
    margin-bottom: 15px;
}

.contact-info strong {
    color: #ffffff;
    display: inline-block;
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .policy-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .policy-toc {
        position: static;
        margin-bottom: 30px;
    }

    .security-features,
    .rights-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding: 80px 0 60px;
    }

    .policy-hero h1 {
        font-size: 2.5rem;
    }

    .policy-subtitle {
        font-size: 1.1rem;
    }

    .policy-main {
        padding: 30px 20px;
    }

    .policy-section h2 {
        font-size: 1.6rem;
    }

    .policy-section h3 {
        font-size: 1.2rem;
    }

    .policy-section p,
    .policy-section li {
        font-size: 1rem;
    }

    .policy-content {
        padding: 40px 0;
    }
}

@media (max-width: 480px) {
    .policy-hero h1 {
        font-size: 2rem;
    }

    .policy-subtitle {
        font-size: 1rem;
    }

    .policy-main {
        padding: 20px 15px;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }

    .use-case,
    .sharing-item,
    .security-item,
    .right-item {
        padding: 15px 20px;
    }
}