/* Privacy Policy Specific Styles */
.privacy-policy-page {
    padding-top: 70px;
    min-height: 100vh;
    background: #f8fafc;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.1;
}

.page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.6;
}

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

.updated-label {
    opacity: 0.8;
}

.updated-date {
    font-weight: 500;
}

/* Privacy Content */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 60px;
}

/* Privacy Sections */
.privacy-section {
    padding: 40px;
    border-bottom: 1px solid #e2e8f0;
}

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

.section-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-title::before {
    content: '';
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    border-radius: 2px;
}

/* Summary Section */
.summary-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-bottom: none;
}

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

.summary-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-2px);
}

.summary-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.summary-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.summary-card p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Data Categories */
.data-category {
    margin-bottom: 32px;
}

.data-category:last-child {
    margin-bottom: 0;
}

.data-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.data-icon {
    font-size: 1.5rem;
}

.data-description p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
}

.data-list {
    list-style: none;
    padding: 0;
}

.data-list li {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    color: #64748b;
    line-height: 1.6;
}

.data-list li:last-child {
    border-bottom: none;
}

.data-list li strong {
    color: #1e293b;
}

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

.usage-item {
    text-align: center;
    padding: 24px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.usage-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.usage-item h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.usage-item p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

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

.security-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.security-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.security-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.security-content p {
    color: #64748b;
    line-height: 1.6;
}

/* Third Party Services */
.third-party-service {
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 20px;
    border-left: 4px solid #10b981;
}

.third-party-service h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.third-party-service p {
    color: #64748b;
    line-height: 1.6;
}

.third-party-service a {
    color: #2563eb;
    text-decoration: none;
}

.third-party-service a:hover {
    text-decoration: underline;
}

.no-tracking-notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: #ecfdf5;
    border-radius: 12px;
    border-left: 4px solid #10b981;
}

.notice-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.notice-content h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.notice-content p {
    color: #64748b;
    line-height: 1.6;
}

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

.right-item {
    padding: 20px;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.right-item h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.right-item p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Retention Info */
.retention-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.retention-item {
    padding: 16px;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.retention-item h4 {
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 6px;
}

.retention-item p {
    color: #64748b;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Changes List */
.changes-list {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.changes-list li {
    padding: 8px 0;
    color: #64748b;
    line-height: 1.6;
    position: relative;
    padding-left: 24px;
}

.changes-list li::before {
    content: '•';
    color: #2563eb;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.contact-info p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #64748b;
}

.contact-icon {
    font-size: 1.25rem;
}

.contact-method a {
    color: #2563eb;
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.response-time {
    font-size: 0.875rem;
    color: #64748b;
    font-style: italic;
    margin-top: 16px;
}

/* Consent Section */
.consent-section {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
}

.consent-box {
    text-align: center;
    padding: 32px;
    background: white;
    border-radius: 12px;
    border: 2px solid #2563eb;
}

.consent-box h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.consent-box p {
    color: #64748b;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-title {
        font-size: 2rem;
    }

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

    .privacy-section {
        padding: 24px;
    }

    .summary-cards {
        grid-template-columns: 1fr;
    }

    .usage-grid {
        grid-template-columns: 1fr;
    }

    .rights-grid {
        grid-template-columns: 1fr;
    }

    .security-feature {
        flex-direction: column;
        text-align: center;
    }

    .contact-methods {
        align-items: center;
    }
}

@media (max-width: 480px) {
    .page-header {
        padding: 60px 0;
    }

    .privacy-content {
        margin: 0 -20px 40px;
        border-radius: 0;
    }

    .privacy-section {
        padding: 20px;
    }

    .last-updated {
        flex-direction: column;
        gap: 4px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .data-title {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer {
        display: none;
    }

    .privacy-policy-page {
        padding-top: 0;
    }

    .page-header {
        background: none;
        color: black;
        padding: 20px 0;
    }

    .privacy-content {
        box-shadow: none;
        margin: 0;
    }

    .summary-section,
    .contact-section,
    .consent-section {
        background: none;
    }

    .summary-card,
    .security-feature,
    .usage-item,
    .right-item,
    .retention-item {
        background: none;
        border: 1px solid #e2e8f0;
    }
}