/* Privacy Policy Page Styles */
.privacy-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 1rem 4rem;
    position: relative;
}

/* Logo Section */
.privacy-logo-section {
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease-out;
}

.privacy-logo {
    max-width: 100%;
    height: auto;
    max-height: 100px;
    filter: drop-shadow(0 4px 8px rgba(104, 175, 176, 0.3));
}

/* Title Section */
.privacy-title-section {
    margin-bottom: 3rem;
    text-align: center;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.privacy-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #68AFB0 0%, #ffffff 50%, #68AFB0 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.privacy-subtitle {
    font-size: clamp(1rem, 4vw, 1.2rem);
    font-weight: 300;
    color: #cccccc;
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.privacy-updated {
    font-size: 0.9rem;
    color: #888888;
    font-weight: 400;
}

/* Content Section */
.privacy-content {
    width: 100%;
    max-width: 800px;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section:last-child {
    margin-bottom: 0;
}

/* Data Deletion Section */
.privacy-deletion-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(104, 175, 176, 0.2);
}

.privacy-deletion-section h2 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 600;
    color: #68AFB0;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(104, 175, 176, 0.3);
}

.privacy-deletion-section .privacy-intro,
.privacy-deletion-section p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.deletion-form {
    background: rgba(26, 26, 26, 0.8);
    border: 1px solid rgba(104, 175, 176, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 1.5rem;
    backdrop-filter: blur(10px);
}

.deletion-form .form-group {
    margin-bottom: 1.5rem;
}

.deletion-form .submit-btn {
    width: 100%;
}

.privacy-section h2 {
    font-size: clamp(1.25rem, 4vw, 1.5rem);
    font-weight: 600;
    color: #68AFB0;
    margin-bottom: 0.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(104, 175, 176, 0.3);
}

.privacy-section h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #ffffff;
    margin: 1.5rem 0 0.75rem;
}

.privacy-intro {
    font-size: 0.95rem;
    color: #aaaaaa;
    font-style: italic;
    margin-bottom: 1rem;
}

.privacy-section p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-section ul,
.privacy-section ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
    color: #cccccc;
    line-height: 1.8;
}

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

.privacy-section a {
    color: #68AFB0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.privacy-section a:hover {
    color: #ffffff;
    text-decoration: underline;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .privacy-container {
        padding: 1.5rem 1rem 3rem;
    }
    
    .privacy-logo-section {
        margin-bottom: 1.5rem;
    }
    
    .privacy-logo {
        max-height: 80px;
    }
    
    .privacy-title-section {
        margin-bottom: 2rem;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-section ul,
    .privacy-section ol {
        padding-left: 1.25rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 1rem 0.75rem 2rem;
    }
    
    .privacy-logo {
        max-height: 60px;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 0.95rem;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .privacy-title {
        animation: none;
        background: #68AFB0;
        -webkit-text-fill-color: #68AFB0;
        background-clip: unset;
    }
    
    .privacy-logo-section,
    .privacy-title-section,
    .privacy-content {
        animation: none;
    }
}
