/* Privacy Policy Page Styles */

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

.privacy-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.privacy-hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Privacy Overview */
.privacy-overview {
    padding: 6rem 0;
    background: var(--surface);
}

.overview-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.overview-text > p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.privacy-principles {
    display: grid;
    gap: 1.5rem;
}

.principle {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.principle:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.principle-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.principle h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.principle p {
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

.overview-stats {
    display: grid;
    gap: 2rem;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Privacy Details */
.privacy-details {
    padding: 6rem 0;
}

.details-content {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Table of Contents */
.toc {
    position: sticky;
    top: 120px;
    height: fit-content;
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.toc h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

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

.toc li {
    margin-bottom: 0.75rem;
}

.toc a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 0.5rem 0;
    border-radius: 8px;
    padding-left: 1rem;
}

.toc a:hover {
    color: var(--primary-color);
    background: var(--surface);
    text-decoration: none;
}

.toc a.active {
    color: var(--primary-color);
    background: var(--surface);
}

/* Policy Sections */
.policy-sections {
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.policy-section {
    padding: 3rem;
    border-bottom: 1px solid var(--border);
}

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

.policy-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.policy-section h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-primary);
}

.policy-section p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.policy-section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.policy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.policy-section strong {
    color: var(--text-primary);
}

.contact-info {
    background: var(--surface);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
}

.contact-method {
    margin-bottom: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-method:last-child {
    margin-bottom: 0;
}

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

.promise-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #ffffff, #e0e7ff);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promise-content > p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.promise-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.promise-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    text-align: center;
}

.promise-point:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.point-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.promise-point h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.promise-point p {
    opacity: 0.9;
    line-height: 1.4;
    margin: 0;
    font-size: 0.9rem;
}

.promise-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Smooth Scrolling Offset */
.policy-section {
    scroll-margin-top: 120px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .privacy-hero h1 {
        font-size: 2.8rem;
    }
    
    .overview-content {
        gap: 3rem;
    }
    
    .details-content {
        gap: 3rem;
    }
    
    .promise-points {
        max-width: 800px;
        gap: 1.25rem;
    }
    
    .promise-point {
        padding: 1.25rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero h1 {
        font-size: 2.5rem;
    }
    
    .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .details-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .toc {
        position: static;
        order: -1;
    }
    
    .policy-section {
        padding: 2rem;
    }
    
    .promise-points {
        grid-template-columns: 1fr;
        max-width: 400px;
        gap: 1rem;
    }
    
    .promise-point {
        padding: 1.5rem;
    }
    
    .promise-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 640px) {
    .promise-points {
        grid-template-columns: 1fr;
        max-width: 350px;
    }
    
    .promise-point {
        padding: 1.25rem;
    }
    
    .point-icon {
        font-size: 1.8rem;
    }
    
    .promise-point h4 {
        font-size: 1rem;
    }
    
    .promise-point p {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 2rem;
    }
    
    .overview-text h2 {
        font-size: 2rem;
    }
    
    .policy-section h2 {
        font-size: 1.8rem;
    }
    
    .promise-content h2 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 1.5rem;
    }
    
    .promise-point {
        padding: 1rem;
    }
    
    .overview-stats {
        grid-template-columns: 1fr;
    }
}

/* Large screen optimization */
@media (min-width: 1200px) {
    .promise-points {
        max-width: 1000px;
        gap: 2rem;
    }
    
    .promise-point {
        padding: 1.75rem;
    }
    
    .point-icon {
        font-size: 2.2rem;
    }
    
    .promise-point h4 {
        font-size: 1.2rem;
    }
    
    .promise-point p {
        font-size: 0.95rem;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .privacy-promise {
        display: none;
    }
    
    .privacy-hero {
        background: none;
        color: black;
        padding: 2rem 0;
    }
    
    .privacy-hero h1 {
        color: black;
        background: none;
        -webkit-text-fill-color: initial;
    }
    
    .details-content {
        grid-template-columns: 1fr;
    }
    
    .toc {
        display: none;
    }
    
    .policy-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
} 