/* Privacy Policy Page Styles */
.privacy-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.page-title {
    text-align: center;
    margin-bottom: 60px;
    color: #4CAF50;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background: linear-gradient(90deg, #4CAF50, #8BC34A);
    margin: 20px auto 0;
    border-radius: 2px;
}

.privacy-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.privacy-content > div {
    background-color: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-content h2 {
    color: #4CAF50;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e8f5e9;
}

.privacy-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Data Collection Table */
.data-table-container {
    overflow-x: auto;
    margin: 20px 0;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

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

.data-table th,
.data-table td {
    padding: 15px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.data-table th {
    background-color: #4CAF50;
    color: white;
    font-weight: 600;
}

.data-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

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

/* Lists */
.usage-list,
.security-list,
.coppa-list {
    padding-left: 20px;
    margin-bottom: 20px;
}

.usage-list li,
.security-list li,
.coppa-list li {
    margin-bottom: 10px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.usage-list li::before,
.security-list li::before,
.coppa-list li::before {
    content: '•';
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

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

.third-party-card {
    background-color: #f5f7fa;
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid #4CAF50;
}

.third-party-card h3 {
    color: #4CAF50;
    margin-bottom: 15px;
}

.third-party-card p {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.third-party-card a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.third-party-card a:hover {
    color: #2E7D32;
    text-decoration: underline;
}

/* CCPA Rights */
.rights-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 20px 0;
}

.right-item {
    background-color: #f5f7fa;
    padding: 25px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.right-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.right-item h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

/* Cookies Section */
.cookies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 20px 0;
}

.cookie-type {
    background-color: #e8f5e9;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.cookie-type h3 {
    color: #4CAF50;
    margin-bottom: 10px;
}

/* Contact Information */
.contact-info {
    background-color: #f5f7fa;
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-info a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-animate].animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-section {
        padding: 40px 0;
    }
    
    .page-title {
        font-size: 2.2rem;
    }
    
    .privacy-content > div {
        padding: 30px 20px;
    }
    
    .data-table th,
    .data-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .third-party-grid,
    .cookies-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .page-title {
        font-size: 1.8rem;
    }
    
    .privacy-content > div {
        padding: 25px 15px;
    }
    
    .data-table th,
    .data-table td {
        padding: 8px;
        font-size: 0.8rem;
    }
    
    .usage-list,
    .security-list,
    .coppa-list {
        padding-left: 15px;
    }
    
    .usage-list li,
    .security-list li,
    .coppa-list li {
        padding-left: 15px;
        font-size: 0.95rem;
    }
}

/* Accessibility Features */
@media (prefers-reduced-motion: reduce) {
    [data-animate] {
        transition: none;
        animation: none;
    }
    
    [data-animate].animate-in {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print Styles */
@media print {
    .privacy-section {
        background-color: white;
    }
    
    .privacy-content > div {
        box-shadow: none;
        border: 1px solid #e0e0e0;
    }
    
    .header,
    .footer {
        display: none;
    }
}