/* Legal Pages Styles */
.page-main {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    padding: 2rem 0;
}

.page-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
}

.page-header h1 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.page-header h1 i {
    color: var(--primary-color);
    font-size: 2rem;
}

.last-updated {
    color: var(--gray-color);
    font-style: italic;
    font-size: 0.9rem;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Policy Sections */
.policy-section {
    background: white;
    margin-bottom: 2rem;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
}

.policy-section:hover {
    box-shadow: var(--shadow-medium);
    transform: translateY(-2px);
}

.policy-section h2 {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.policy-section h3 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin: 1.5rem 0 1rem 0;
    font-weight: 600;
}

.policy-section h4 {
    color: var(--dark-color);
    font-size: 1.1rem;
    margin: 1rem 0 0.5rem 0;
    font-weight: 600;
}

.policy-section p {
    color: var(--gray-color);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.policy-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.policy-section li {
    color: var(--gray-color);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Important Notice */
.important-notice {
    background: var(--gradient-primary);
    color: white;
    padding: 1.5rem;
    border-radius: 15px;
    margin: 1.5rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.important-notice i {
    font-size: 1.5rem;
    color: var(--warning-color);
}

/* Use Cases Grid */
.use-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.use-case {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.use-case:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.use-case i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.use-case h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.use-case p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Sharing Policy */
.sharing-policy {
    margin: 2rem 0;
}

.sharing-policy h3 {
    margin-bottom: 1rem;
}

.no-share {
    background: rgba(239, 68, 68, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ef4444;
    margin-bottom: 1.5rem;
}

.no-share li {
    color: #dc2626;
    font-weight: 500;
}

.no-share i {
    color: #ef4444;
    margin-right: 0.5rem;
}

.may-share {
    background: rgba(16, 185, 129, 0.1);
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #10b981;
}

.may-share li {
    color: #059669;
    font-weight: 500;
}

.may-share i {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Security Measures */
.security-measures {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.security-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.security-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.security-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.security-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.security-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Anonymity Guarantee */
.anonymity-guarantee {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.anonymity-guarantee::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="mask" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23mask)"/></svg>') repeat;
}

.anonymity-guarantee i {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.anonymity-guarantee h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.anonymity-guarantee p {
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

.anonymity-guarantee ul {
    text-align: left;
    max-width: 400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.anonymity-guarantee li {
    color: white;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.right-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.right-item i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.right-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.right-item p {
    font-size: 0.9rem;
    color: var(--gray-color);
}

/* Cookie Types */
.cookie-types {
    margin: 2rem 0;
}

.cookie-type {
    background: var(--light-color);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 1rem;
    border-left: 4px solid var(--primary-color);
}

.cookie-type h4 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.cookie-type i {
    color: var(--primary-color);
}

.cookie-type p {
    color: var(--gray-color);
    font-size: 0.9rem;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-light);
}

.contact-item i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
}

.contact-item span {
    color: var(--dark-color);
    font-weight: 500;
}

/* Disclaimer Section */
.disclaimer-section {
    border: 3px solid var(--primary-color);
    background: var(--light-color);
}

.disclaimer-box {
    background: var(--gradient-primary);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.disclaimer-box i {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--warning-color);
}

.disclaimer-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: white;
}

.disclaimer-box p {
    color: white;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

/* Terms Specific Styles */
.terms-list {
    counter-reset: terms-counter;
}

.terms-item {
    counter-increment: terms-counter;
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}

.terms-item::before {
    content: counter(terms-counter);
    position: absolute;
    left: 0;
    top: 0;
    background: var(--gradient-primary);
    color: white;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Refund Policy Specific */
.no-refund-banner {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
    padding: 3rem 2rem;
    border-radius: 20px;
    margin: 2rem 0;
    position: relative;
    overflow: hidden;
}

.no-refund-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="x" width="20" height="20" patternUnits="userSpaceOnUse"><text x="10" y="15" text-anchor="middle" fill="rgba(255,255,255,0.1)" font-size="16">✕</text></pattern></defs><rect width="100" height="100" fill="url(%23x)"/></svg>') repeat;
}

.no-refund-banner h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
    color: white;
    border: none;
}

.no-refund-banner p {
    font-size: 1.2rem;
    position: relative;
    z-index: 2;
    color: white;
    opacity: 0.9;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .page-main {
        padding: 1rem 0;
        margin-top: 70px;
    }

    .page-header {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .page-header h1 {
        font-size: 2rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .policy-section {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .use-cases,
    .security-measures,
    .rights-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .contact-info {
        padding: 1.5rem;
    }

    .anonymity-guarantee {
        padding: 1.5rem;
    }

    .no-refund-banner {
        padding: 2rem 1rem;
    }

    .no-refund-banner h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }

    .policy-section {
        padding: 1rem;
    }

    .use-case,
    .security-item,
    .right-item {
        padding: 1rem;
    }

    .no-refund-banner {
        padding: 1.5rem 0.5rem;
    }

    .no-refund-banner h2 {
        font-size: 1.8rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer {
        display: none;
    }

    .page-main {
        margin-top: 0;
        background: white;
    }

    .policy-section {
        box-shadow: none;
        border: 1px solid #ddd;
        page-break-inside: avoid;
    }

    .page-header {
        box-shadow: none;
        border-bottom: 2px solid var(--primary-color);
    }
} 