/* Privacy Page Specific Styles */

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.privacy-hero::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.privacy-hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.privacy-hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.9;
    line-height: 1.6;
}

.privacy-hero .last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255,255,255,0.2);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.3);
}

.privacy-hero .last-updated i {
    color: #ffd700;
}

/* Quick Summary */
.quick-summary {
    padding: 80px 0;
    background: #f8fafc;
}

.summary-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    max-width: 1000px;
    margin: 0 auto;
}

.summary-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.summary-content h2 {
    font-size: 2rem;
    color: #1a202c;
    margin-bottom: 1rem;
}

.summary-content p {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
}

/* Table of Contents */
.table-of-contents {
    padding: 80px 0;
    background: white;
}

.toc-card {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
}

.toc-card h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 3rem;
}

.toc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

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

.toc-column li {
    margin-bottom: 1rem;
}

.toc-column a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: 12px;
    text-decoration: none;
    color: #4a5568;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.toc-column a:hover {
    background: #667eea;
    color: white;
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
}

.toc-number {
    background: #667eea;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.toc-column a:hover .toc-number {
    background: white;
    color: #667eea;
}

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

.content-wrapper {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Sidebar Navigation */
.sidebar-nav {
    position: relative;
}

.nav-sticky {
    position: sticky;
    top: 100px;
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.nav-sticky h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.sidebar-links {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.sidebar-links li {
    margin-bottom: 0.5rem;
}

.sidebar-link {
    display: block;
    padding: 0.75rem 1rem;
    color: #4a5568;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.sidebar-link:hover,
.sidebar-link.active {
    background: #667eea;
    color: white;
}

.privacy-highlights h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: 600;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.highlight-item i {
    color: #48bb78;
    font-size: 1rem;
}

/* Main Content */
.main-content {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    border: 1px solid #e2e8f0;
}

.content-section {
    padding: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.content-section:last-child {
    border-bottom: none;
}

.content-section h2 {
    color: #1a202c;
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #667eea;
    display: inline-block;
}

.content-section h3 {
    color: #2d3748;
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.content-section p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.styled-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.styled-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    color: #4a5568;
    line-height: 1.6;
}

.styled-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Important Notice */
.important-notice {
    background: linear-gradient(135deg, #fef5e7, #fed7aa);
    border: 1px solid #f6ad55;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.notice-icon {
    color: #ed8936;
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.notice-content {
    color: #744210;
    line-height: 1.6;
}

/* Data Collection Grid */
.not-collected-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.not-collected-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: #f0fff4;
    border: 1px solid #9ae6b4;
    border-radius: 8px;
    color: #22543d;
}

.not-collected-item i {
    color: #e53e3e;
    font-size: 1.1rem;
}

/* Data Table */
.data-table-wrapper {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.data-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
}

.data-table th {
    background: #667eea;
    color: white;
    padding: 1.25rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.data-table td {
    padding: 1.25rem;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    vertical-align: top;
}

.data-table tr:hover {
    background: #f7fafc;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.usage-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.usage-card.primary {
    background: linear-gradient(135deg, #ebf8ff, #bee3f8);
    border-color: #90cdf4;
}

.usage-card.secondary {
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    border-color: #9ae6b4;
}

.usage-card h3 {
    color: #1a202c;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

/* AI Processing Card */
.ai-processing-card {
    background: linear-gradient(135deg, #faf5ff, #e9d8fd);
    border: 1px solid #d6bcfa;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
}

.ai-processing-card h3 {
    color: #553c9a;
    margin-bottom: 1rem;
}

.ai-processing-card p {
    color: #553c9a;
    margin-bottom: 1rem;
}

/* No Sell Banner */
.no-sell-banner {
    background: linear-gradient(135deg, #f0fff4, #c6f6d5);
    border: 2px solid #48bb78;
    border-radius: 12px;
    padding: 2rem;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.banner-icon {
    color: #38a169;
    font-size: 2rem;
    flex-shrink: 0;
}

.banner-content {
    color: #22543d;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Sharing Scenarios */
.sharing-scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.scenario-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    text-align: center;
    transition: all 0.3s ease;
}

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

.scenario-icon {
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.5rem;
}

.scenario-content h4 {
    color: #1a202c;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.scenario-content p {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Storage Security Grid */
.storage-security-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.storage-card,
.security-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.storage-items,
.security-items {
    margin-top: 1.5rem;
}

.storage-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.storage-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.storage-item strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.25rem;
}

.storage-item p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    margin-bottom: 1rem;
}

.security-item i {
    color: #48bb78;
    font-size: 1.2rem;
}

.security-item span {
    color: #4a5568;
    font-size: 0.95rem;
}

/* Rights Tabs */
.rights-tabs {
    margin: 2rem 0;
}

.tab-buttons {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
}

.tab-btn {
    padding: 1rem 2rem;
    background: none;
    border: none;
    color: #4a5568;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.tab-btn.active,
.tab-btn:hover {
    color: #667eea;
    border-bottom-color: #667eea;
}

.tab-content {
    display: none;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.tab-content.active {
    display: block;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.right-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.right-item strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.5rem;
}

.right-item p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Cookies Info */
.cookies-info {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.cookie-purposes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cookie-purpose {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.cookie-purpose i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.cookie-purpose strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.5rem;
}

.cookie-purpose p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
}

/* Third Party Services */
.third-party-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #667eea;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-content h4 {
    color: #1a202c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.service-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #553c9a;
}

/* Children Privacy */
.children-privacy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.age-restriction,
.parental-guidance {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.age-restriction i,
.parental-guidance i {
    color: #667eea;
    font-size: 2rem;
    margin-top: 0.5rem;
}

.age-restriction h3,
.parental-guidance h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.age-restriction p,
.parental-guidance p {
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

/* International Compliance */
.international-compliance {
    margin: 2rem 0;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.compliance-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.compliance-item i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.compliance-item strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.5rem;
}

.compliance-item p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Policy Changes */
.policy-changes {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
}

.change-process {
    margin-top: 2rem;
}

.change-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.change-step i {
    color: #667eea;
    font-size: 1.2rem;
}

.change-step span {
    color: #4a5568;
    line-height: 1.5;
}

/* Contact Section */
.contact-section {
    margin: 2rem 0;
}

.contact-card {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

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

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-method i {
    color: #667eea;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.contact-method strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.5rem;
}

.contact-method p {
    color: #4a5568;
    margin: 0;
    font-size: 0.95rem;
}

.response-times {
    margin-top: 2rem;
}

.response-times h4 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

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

.response-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.response-type {
    color: #4a5568;
    font-size: 0.9rem;
}

.response-time {
    color: #667eea;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Legal Basis */
.legal-basis {
    background: #f8fafc;
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    margin: 3rem 0;
}

.legal-basis-card h3 {
    color: #1a202c;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.legal-basis-card p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.legal-basis-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.basis-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.basis-item i {
    color: #48bb78;
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.basis-item strong {
    color: #1a202c;
    display: block;
    margin-bottom: 0.5rem;
}

.basis-item p {
    color: #4a5568;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

/* Privacy CTA */
.privacy-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.privacy-cta .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.cta-buttons .btn-primary {
    background: white;
    color: #667eea;
}

.cta-buttons .btn-primary:hover {
    background: #f7fafc;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

.cta-buttons .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: #667eea;
    transform: translateY(-2px);
}

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

@media (max-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .sidebar-nav {
        order: 2;
    }
    
    .main-content {
        order: 1;
    }
    
    .nav-sticky {
        position: static;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .usage-grid,
    .storage-security-grid,
    .children-privacy {
        grid-template-columns: 1fr;
    }
    
    .summary-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 60px;
    }
    
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .privacy-hero p {
        font-size: 1.1rem;
    }
    
    .quick-summary,
    .table-of-contents,
    .privacy-content,
    .privacy-cta {
        padding: 60px 0;
    }
    
    .summary-card,
    .toc-card,
    .content-section {
        padding: 2rem;
    }
    
    .contact-card,
    .legal-basis {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .summary-card,
    .toc-card,
    .content-section,
    .contact-card,
    .legal-basis {
        padding: 1.5rem;
    }
    
    .content-section h2 {
        font-size: 1.5rem;
    }
    
    .sharing-scenarios,
    .compliance-grid,
    .legal-basis-grid,
    .contact-methods,
    .rights-grid {
        grid-template-columns: 1fr;
    }
}