/* Privacy policy page specific styles */

.privacy-main {
    padding-top: 100px;
}

/* Privacy Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.privacy-hero .hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.privacy-hero .hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    opacity: 0.9;
}

/* Privacy Content Section */
.privacy-content {
    padding: 6rem 0;
    background: white;
}

.privacy-text {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    border-left: 4px solid #c53030;
}

.privacy-section h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-section p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.privacy-section ul {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.privacy-section li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
    color: #666;
    line-height: 1.6;
}

.privacy-section li:before {
    content: "•";
    color: #c53030;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.privacy-update {
    margin-top: 4rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 15px;
    text-align: center;
}

.privacy-update p {
    font-size: 1rem;
    margin: 0;
    opacity: 0.9;
}

.privacy-update strong {
    color: #ffd700;
    font-weight: 600;
}

/* Privacy CTA Section */
.privacy-cta {
    padding: 4rem 0;
    background: #f8f9fa;
    text-align: center;
}

.privacy-cta .cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #333;
}

.privacy-cta .cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    font-weight: 300;
}

.privacy-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #c53030 0%, #a02626 100%);
    color: white;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(197, 48, 48, 0.3);
}

.privacy-cta .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(197, 48, 48, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-hero .hero-content h1 {
        font-size: 2rem;
    }
    
    .privacy-hero .hero-content p {
        font-size: 1.1rem;
    }
    
    .privacy-content {
        padding: 3rem 0;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-section p,
    .privacy-section li {
        font-size: 1rem;
    }
    
    .privacy-cta .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .privacy-main {
        padding-top: 80px;
    }
    
    .privacy-hero {
        padding: 2rem 0;
    }
    
    .privacy-hero .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-text {
        padding: 0 1rem;
    }
    
    .privacy-section {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .privacy-section h2 {
        font-size: 1.2rem;
    }
    
    .privacy-cta {
        padding: 3rem 0;
    }
    
    .privacy-cta .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .privacy-cta .cta-content p {
        font-size: 1rem;
    }
}

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

.privacy-section {
    animation: fadeInUp 0.6s ease forwards;
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}
