/* Privacy Policy Page Styles */

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #133C72 0%, #1f3a8a 100%);
    padding: 120px 5% 80px;
    color: white;
    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 1000 100" preserveAspectRatio="none"><path d="M500,97C126.7,96.3,0.8,19.8,0,0v100l1000,0V1C1000,19.4,873.3,97.8,500,97z" fill="%23ffffff"/></svg>');
    background-size: 100% 100px;
    background-position: bottom;
    background-repeat: no-repeat;
    opacity: 0.1;
}

.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: white;
    font-weight: 500;
}

.privacy-hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-weight: 500;
}

.hero-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.policy-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.summary-item i {
    font-size: 18px;
    color: white;
}

.summary-item span {
    font-size: 14px;
    font-weight: 500;
    color: white;
}

/* Main Content */
.privacy-main {
    padding: 80px 5%;
    background-color: #f9fbfe;
}

.privacy-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

/* Policy Sections */
.policy-section {
    margin-bottom: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid #e2e8f0;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.section-header {
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 32px;
    color: #162c6b;
    margin-bottom: 10px;
    font-weight: 700;
}

.section-subtitle {
    font-size: 16px;
    color: #64748b;
    font-weight: 500;
}

.policy-text {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 20px;
}

.policy-text:last-child {
    margin-bottom: 0;
}

.policy-note {
    background: #eef5ff;
    border-left: 4px solid #1f3a8a;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 25px 0;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.policy-note i {
    color: #1f3a8a;
    font-size: 18px;
    margin-top: 2px;
}

.policy-note span {
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
}

/* Information Categories */
.info-category {
    margin-bottom: 40px;
}

.info-category h3 {
    font-size: 20px;
    color: #162c6b;
    margin-bottom: 20px;
    font-weight: 600;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef5ff;
}

.policy-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.policy-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    color: #4a5568;
    font-size: 15px;
    line-height: 1.6;
    border-bottom: 1px solid #f1f5f9;
}

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #1f3a8a;
    font-size: 20px;
    font-weight: bold;
}

.policy-list li strong {
    color: #162c6b;
    font-weight: 600;
}

/* Information Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.info-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.info-card i {
    font-size: 32px;
    color: #1f3a8a;
    margin-bottom: 15px;
    display: block;
}

.info-card h4 {
    font-size: 16px;
    color: #162c6b;
    margin-bottom: 8px;
    font-weight: 600;
}

.info-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Usage Grid */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.usage-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.usage-card:hover {
    background: #eef5ff;
    border-color: #1f3a8a;
}

.usage-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f3a8a, #133C72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 24px;
}

.usage-card h4 {
    font-size: 16px;
    color: #162c6b;
    margin-bottom: 10px;
    font-weight: 600;
}

.usage-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Advertising Information */
.ad-info {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-top: 25px;
}

.ad-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4285f4, #34a853);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ad-icon i {
    font-size: 36px;
    color: white;
}

.ad-content {
    flex: 1;
}

.ad-content h3 {
    font-size: 22px;
    color: #162c6b;
    margin-bottom: 15px;
    font-weight: 600;
}

.external-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1f3a8a;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    background: #eef5ff;
    border-radius: 6px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.external-link:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
}

/* Third-Party Services */
.third-party-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 25px 0;
}

.provider-card {
    background: #f8fafc;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.provider-card:hover {
    transform: translateY(-5px);
    border-color: #cbd5e1;
}

.provider-logo {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.provider-logo i {
    font-size: 24px;
    color: #1f3a8a;
}

.provider-card h4 {
    font-size: 16px;
    color: #162c6b;
    margin-bottom: 8px;
    font-weight: 600;
}

.provider-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Disclosure Section */
.disclosure-card {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-top: 25px;
}

.disclosure-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.disclosure-header i {
    font-size: 32px;
    color: #dc2626;
}

.disclosure-header h3 {
    font-size: 24px;
    color: #162c6b;
    margin: 0;
    font-weight: 700;
}

.disclosure-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.disclosure-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: white;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.disclosure-item i {
    font-size: 20px;
    color: #1f3a8a;
    margin-top: 2px;
}

.disclosure-item h4 {
    font-size: 16px;
    color: #162c6b;
    margin-bottom: 5px;
    font-weight: 600;
}

.disclosure-item p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Controls Grid */
.controls-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 30px;
}

.control-card {
    background: white;
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.control-card:hover {
    border-color: #1f3a8a;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(31, 58, 138, 0.1);
}

.control-icon {
    width: 60px;
    height: 60px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #1f3a8a;
    font-size: 24px;
}

.control-card h4 {
    font-size: 16px;
    color: #162c6b;
    margin-bottom: 12px;
    font-weight: 600;
}

.control-card p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
    line-height: 1.6;
}

/* Children's Privacy */
.children-card {
    display: flex;
    gap: 30px;
    align-items: center;
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-top: 25px;
}

.children-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.children-icon i {
    font-size: 36px;
    color: white;
}

.children-content h3 {
    font-size: 22px;
    color: #162c6b;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Security Section */
.security-card {
    background: linear-gradient(135deg, #f8fafc, #eef5ff);
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-top: 25px;
}

.security-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.security-header i {
    font-size: 32px;
    color: #059669;
}

.security-header h3 {
    font-size: 24px;
    color: #162c6b;
    margin: 0;
    font-weight: 700;
}

.security-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.security-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: white;
    color: #162c6b;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e2e8f0;
}

.security-tag i {
    color: #059669;
    font-size: 12px;
}

/* Update Section */
.update-card {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-top: 25px;
}

.update-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1f3a8a, #133C72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.update-icon i {
    font-size: 24px;
    color: white;
}

.update-content h3 {
    font-size: 22px;
    color: #162c6b;
    margin-bottom: 15px;
    font-weight: 600;
}

/* Contact Section */
.contact-card {
    background: linear-gradient(135deg, #f8fafc, #eef5ff);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    margin-top: 25px;
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-header h3 {
    font-size: 28px;
    color: #162c6b;
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-header p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 30px 0;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.contact-method:hover {
    transform: translateY(-5px);
    border-color: #1f3a8a;
    box-shadow: 0 10px 25px rgba(31, 58, 138, 0.1);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1f3a8a, #133C72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.method-icon i {
    font-size: 20px;
    color: white;
}

.method-details h4 {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 5px;
    font-weight: 500;
}

.method-details a {
    font-size: 18px;
    color: #162c6b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.method-details a:hover {
    color: #1f3a8a;
}

.response-time {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
    padding-top: 25px;
    border-top: 1px solid #e2e8f0;
    color: #64748b;
    font-size: 15px;
    font-weight: 500;
}

.response-time i {
    color: #059669;
}

/* Quick Navigation */
.quick-nav {
    background: #f8fafc;
    border-radius: 16px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    margin-top: 50px;
}

.quick-nav h3 {
    font-size: 20px;
    color: #162c6b;
    margin-bottom: 20px;
    font-weight: 600;
    text-align: center;
}


/* Footer Active Link */
.footer-section .active {
    color: #1f3a8a !important;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .info-grid,
    .usage-grid,
    .third-party-grid,
    .controls-grid,
    .contact-methods {
        grid-template-columns: 1fr;
    }
    
    .ad-info,
    .children-card,
    .update-card {
        flex-direction: column;
        text-align: center;
    }
    
    .ad-icon,
    .children-icon,
    .update-icon {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 5% 60px;
    }
    
    .privacy-hero h1 {
        font-size: 36px;
    }
    
    .privacy-content {
        padding: 40px 30px;
    }
    
    .policy-section {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .policy-summary {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .nav-links {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .privacy-hero h1 {
        font-size: 32px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .privacy-content {
        padding: 30px 20px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .policy-text {
        font-size: 15px;
    }
    
    .info-card,
    .usage-card,
    .provider-card,
    .control-card,
    .contact-method {
        padding: 20px;
    }
}