/* Privacy Policy Page Styles */
.privacy-page {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 100vh;
    line-height: 1.6;
}

.privacy-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem;
}

/* Page Header */
.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    background: linear-gradient(135deg, #005fa3, #0066b3);
    color: white;
    padding: 3rem 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 95, 163, 0.2);
    position: relative;
}

/* Home Icon Navigation */
.home-icon-nav {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.75rem;
    border-radius: 50%;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    z-index: 10;
}

.home-icon-nav:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    color: white;
    text-decoration: none;
}

.privacy-header .breadcrumb {
    margin-bottom: 1rem;
    opacity: 0.9;
}

.privacy-header .breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.privacy-header .breadcrumb a:hover {
    opacity: 1;
}

.privacy-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.privacy-header .last-updated {
    font-size: 1.1rem;
    opacity: 0.9;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1rem;
}

/* Privacy Sections */
.privacy-section {
    background: white;
    border-radius: 12px;
    margin-bottom: 2rem;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.privacy-section:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.privacy-section h2 {
    color: #005fa3;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #e9ecef;
    font-weight: 600;
}

.privacy-section .section-content {
    color: #555;
}

.privacy-section p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.privacy-section ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    color: #666;
}

/* Highlight Box */
.highlight-box {
    background: linear-gradient(135deg, #e8f4f8, #f0f9fc);
    border-left: 5px solid #005fa3;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-box.privacy {
    background: linear-gradient(135deg, #e8f5e8, #f0f9f0);
    border-left-color: #28a745;
}

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

.highlight-content h4 {
    color: #005fa3;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-content p {
    margin: 0;
    color: #666;
}

/* Analytics Section */
.analytics-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.analytics-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.analytics-item:hover {
    border-color: #005fa3;
    transform: translateY(-2px);
}

.analytics-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.analytics-content h4 {
    color: #005fa3;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.analytics-content ul {
    margin: 0;
}

.analytics-content li {
    color: #666;
    font-size: 0.95rem;
}

/* Third-Party Notice */
.third-party-notice {
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.third-party-notice h4 {
    color: #856404;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.third-party-notice p {
    color: #856404;
    margin: 0;
}

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

.app-card {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.app-card:hover {
    border-color: #005fa3;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 95, 163, 0.15);
}

.app-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.app-card h4 {
    color: #005fa3;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.app-card p {
    color: #666;
    margin-bottom: 1rem;
}

.app-link {
    color: #005fa3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.app-link:hover {
    color: #003d6b;
}

/* Terms & Conditions */
.terms-updated {
    background: #e8f4f8;
    padding: 1rem;
    border-radius: 8px;
    color: #005fa3;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
}

.terms-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.terms-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #005fa3;
}

.terms-item h4 {
    color: #005fa3;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.terms-item p {
    color: #666;
    margin-bottom: 0.5rem;
}

.terms-item ul {
    margin-top: 0.5rem;
}

/* Disclaimer Section */
.privacy-section.disclaimer {
    background: linear-gradient(135deg, #fff3cd, #fef7e0);
    border: 2px solid #ffeaa7;
}

.disclaimer-box {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.7);
    padding: 1.5rem;
    border-radius: 8px;
}

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

.disclaimer-content p {
    color: #856404;
    margin-bottom: 0.5rem;
}

.disclaimer-content strong {
    color: #6c4e00;
}

/* Accessibility Features */
.accessibility-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 1.5rem 0;
}

.feature-item {
    background: #f8f9fa;
    padding: 1.25rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: #005fa3;
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.feature-item h4 {
    color: #005fa3;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.feature-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #005fa3, #0066b3);
    color: white;
    border-radius: 12px;
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
    box-shadow: 0 8px 32px rgba(0, 95, 163, 0.2);
}

.contact-section h2 {
    color: white;
    margin-bottom: 1rem;
    font-size: 1.8rem;
    border: none;
}

.contact-section p {
    opacity: 0.9;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

.contact-method {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.contact-info h4 {
    color: white;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.contact-link {
    color: white;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    transition: all 0.3s ease;
}

.contact-link:hover {
    background: white;
    color: #005fa3;
}

/* Responsive Design */
@media (max-width: 767px) {
    .privacy-container {
        padding: 1rem;
    }

    .privacy-header {
        padding: 2rem 1.5rem;
    }

    .privacy-header h1 {
        font-size: 2.2rem;
    }

    /* Mobile adjustments for home icon */
    .home-icon-nav {
        top: 1rem;
        left: 1rem;
        width: 45px;
        height: 45px;
        font-size: 1.3rem;
        padding: 0.6rem;
    }

    .privacy-section {
        padding: 1.5rem;
    }

    .privacy-section h2 {
        font-size: 1.5rem;
    }

    .analytics-info {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .apps-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .accessibility-features {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 0.75rem;
    }

    .contact-methods {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .highlight-box {
        flex-direction: column;
        text-align: center;
    }

    .disclaimer-box {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .privacy-header h1 {
        font-size: 1.8rem;
    }

    .privacy-section {
        padding: 1rem;
    }

    .privacy-section h2 {
        font-size: 1.3rem;
    }

    .contact-section {
        padding: 1.5rem;
    }
}
