/* Privacy Policy Page Styles */

/* Hero Section */
.privacy-hero {
    position: relative;
    height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #19365f 0%, #142a4a 50%, #fbc213 100%);
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

.privacy-hero .container {
    max-width: none;
    padding: 0;
    width: 100%;
}

.privacy-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 0 2rem;
}

.privacy-category {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.privacy-hero-title {
    font-size: clamp(4rem, 8vw, 4rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.privacy-hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.4rem);
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Content Section */
.privacy-content-section {
    padding: 6rem 0;
    background: #ffffff;
}

.privacy-content-wrapper {
    max-width: 1300px;
    margin: 0 auto;
}

.privacy-content {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    padding: 4rem;
    border: 1px solid #e9ecef;
}

.privacy-intro {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid #f8f9fa;
}

.privacy-last-updated {
    color: #fbc213;
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    background: #f8f9fa;
    padding: 0.8rem 1.5rem;
    border-radius: 10px;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.privacy-intro-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #495057;
    font-weight: 400;
}

.privacy-section {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f8f9fa;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #19365f;
    margin-bottom: 1.5rem;
    position: relative;
    padding-left: 1rem;
}

.privacy-section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 30px;
    background: linear-gradient(135deg, #19365f, #fbc213);
    border-radius: 2px;
}

.privacy-section-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.privacy-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
}

.privacy-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    top: 0;
    color: #fbc213;
    font-weight: bold;
    font-size: 1.2rem;
}

.privacy-contact-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #fbc213;
    margin-top: 1.5rem;
}

.privacy-contact-info p {
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    color: #495057;
}

.privacy-contact-info p:last-child {
    margin-bottom: 0;
}

.privacy-link {
    color: #19365f;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
}

.privacy-link:hover {
    color: #fbc213;
    border-bottom-color: #fbc213;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 1536px) {
    .privacy-hero-title {
        font-size: clamp(3.5rem, 8vw, 3.5rem);
    }
}

@media (max-width: 1280px) {
    .privacy-hero-title {
        font-size: clamp(3rem, 8vw, 3rem);
    }
}

@media (max-width: 1024px) {
    .privacy-hero-title {
        font-size: clamp(2.5rem, 8vw, 2.5rem);
    }
    
    .privacy-content {
        padding: 3rem;
    }
    
    .privacy-section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        height: 50vh;
    }
    
    .privacy-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .privacy-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-content-section {
        padding: 4rem 0;
    }
    
    .privacy-content {
        padding: 2rem;
        border-radius: 15px;
    }
    
    .privacy-section-title {
        font-size: 1.4rem;
    }
    
    .privacy-section-text {
        font-size: 1rem;
    }
    
    .privacy-list li {
        font-size: 1rem;
    }
    
    .privacy-intro-text {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .privacy-hero-title {
        font-size: clamp(1.8rem, 8vw, 1.8rem);
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        height: 45vh;
    }
    
    .privacy-hero-title {
        font-size: clamp(2rem, 8vw, 2rem);
    }
    
    .privacy-hero-subtitle {
        font-size: 1rem;
    }
    
    .privacy-content-section {
        padding: 3rem 0;
    }
    
    .privacy-content {
        padding: 1.5rem;
        border-radius: 10px;
    }
    
    .privacy-section-title {
        font-size: 1.2rem;
        padding-left: 0.8rem;
    }
    
    .privacy-section-title::before {
        width: 3px;
        height: 25px;
    }
    
    .privacy-section-text {
        font-size: 0.95rem;
    }
    
    .privacy-list li {
        font-size: 0.95rem;
        padding-left: 1.5rem;
    }
    
    .privacy-intro-text {
        font-size: 1rem;
    }
    
    .privacy-contact-info {
        padding: 1.5rem;
    }
    
    .privacy-contact-info p {
        font-size: 1rem;
    }
    
    .privacy-last-updated {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

/* Print Styles */
@media print {
    .privacy-hero {
        height: auto;
        background: #ffffff;
        color: #000000;
    }
    
    .privacy-hero-title,
    .privacy-hero-subtitle,
    .privacy-category {
        color: #000000;
    }
    
    .privacy-content {
        box-shadow: none;
        border: 1px solid #000000;
    }
    
    .privacy-link {
        color: #000000;
        text-decoration: underline;
    }
}

@media (max-width: 360px) {
    .privacy-hero-title {
        font-size: clamp(1.2rem, 8vw, 1.2rem);
    }
}
