/* Privacy Policy Specific Styles */

/* Header Section */
.privacy-header {
    background: linear-gradient(135deg, #2d3748 0%, #4a5568 100%);
    min-height: 40vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
    border-bottom: 3px solid #718096;
}

/* Animated Logo Container */
.animated-logo-container {
    position: relative;
    width: 350px;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

/* Animated Spirals */
.spiral-1, .spiral-2, .spiral-3 {
    position: absolute;
    border-radius: 50%;
    border: 3px solid transparent;
    animation: spin 8s linear infinite;
}

.spiral-1 {
    width: 320px;
    height: 320px;
    border-top: 3px solid rgba(74, 144, 226, 0.6);
    border-right: 3px solid rgba(74, 144, 226, 0.3);
    animation-duration: 8s;
}

.spiral-2 {
    width: 250px;
    height: 250px;
    border-top: 3px solid rgba(45, 55, 72, 0.5);
    border-left: 3px solid rgba(45, 55, 72, 0.2);
    animation-duration: 6s;
    animation-direction: reverse;
}

.spiral-3 {
    width: 180px;
    height: 180px;
    border-top: 3px solid rgba(113, 128, 150, 0.4);
    border-bottom: 3px solid rgba(113, 128, 150, 0.2);
    animation-duration: 10s;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Logo Center */
.logo-center {
    position: relative;
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    padding: 20px;
    border: 3px solid #2d3748;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
}

.main-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
}

/* Header Text */
.privacy-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0.5rem;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

.privacy-subtitle {
    font-size: 1.2rem;
    color: #e2e8f0;
    text-align: center;
    font-weight: 400;
    margin-bottom: 0;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

/* Main Content */
.privacy-content {
    background: #ffffff;
    padding: 3rem 0;
    font-family: 'Arial', 'Helvetica', sans-serif;
}

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

/* Intro Section */
.intro-section {
    text-align: center;
    margin-bottom: 2rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 6px;
    color: #2d3748;
    border: 1px solid #e2e8f0;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    color: #2d3748;
}

/* Policy Sections */
.policy-section {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.section-title {
    background: #f8f9fa;
    color: #2d3748;
    padding: 1rem 1.5rem;
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: 'Arial', 'Helvetica', sans-serif;
    border-bottom: 2px solid #e2e8f0;
}

.section-title i {
    font-size: 1.3rem;
    color: #4a90e2;
}

.section-content {
    padding: 1.5rem;
    line-height: 1.6;
    font-size: 0.95rem;
}

.section-content p {
    margin-bottom: 1rem;
    color: #333333;
    font-weight: 400;
}

/* Lists */
.data-list,
.purpose-list,
.rights-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.data-list li,
.purpose-list li,
.rights-list li {
    padding: 0.8rem 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: background-color 0.3s ease;
    color: #2d3748;
    font-weight: 400;
}

.data-list li:hover,
.purpose-list li:hover,
.rights-list li:hover {
    background-color: #f8f9fa;
    padding-left: 1rem;
    border-radius: 8px;
}

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

.data-list li i,
.purpose-list li i,
.rights-list li i {
    color: #4a90e2;
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

/* Contact Info */
.contact-info {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
    border: 1px solid #e2e8f0;
}

.contact-info p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #2d3748;
    font-weight: 500;
}

.contact-info i {
    color: #4a90e2;
    width: 20px;
    text-align: center;
}

/* Contact Channels */
.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    color: #2d3748;
}

.contact-item:hover {
    background: #e9ecef;
}

.contact-item i {
    color: #4a90e2;
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

/* Back to Home */
.back-to-home {
    text-align: center;
    margin-top: 3rem;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 2rem;
    background: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 1px solid #2d3748;
}

.back-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 55, 72, 0.3);
    color: white;
    text-decoration: none;
    background: #4a5568;
}

/* Footer */
.privacy-footer {
    background: #2d3748;
    color: white;
    text-align: center;
    padding: 2rem 0;
    border-top: 3px solid #4a5568;
}

.privacy-footer p {
    margin: 0;
    opacity: 0.9;
    font-weight: 400;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-header {
        min-height: 50vh;
        padding: 1rem;
    }
    
    .animated-logo-container {
        width: 250px;
        height: 250px;
    }
    
    .spiral-1 {
        width: 230px;
        height: 230px;
    }
    
    .spiral-2 {
        width: 180px;
        height: 180px;
    }
    
    .spiral-3 {
        width: 130px;
        height: 130px;
    }
    
    .main-logo {
        width: 100px;
        height: 100px;
    }
    
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.2rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.3rem;
        padding: 1rem 1.5rem;
    }
    
    .section-content {
        padding: 1.5rem;
    }
    
    .intro-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .animated-logo-container {
        width: 200px;
        height: 200px;
    }
    
    .spiral-1 {
        width: 180px;
        height: 180px;
    }
    
    .spiral-2 {
        width: 140px;
        height: 140px;
    }
    
    .spiral-3 {
        width: 100px;
        height: 100px;
    }
    
    .main-logo {
        width: 80px;
        height: 80px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.2rem;
        padding: 1rem;
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    
    .contact-channels {
        gap: 0.8rem;
    }
    
    .contact-item {
        padding: 0.8rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
}