/* ===== PRIVACY POLICY PAGE SPECIFIC STYLES ===== */
/* Privacy Hero Section */
.privacy-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #2667FF 0%, #3B3B98 100%);
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg width='1440' height='720' viewBox='0 0 1440 720' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='a' x1='0%25' y1='100%25' x2='100%25' y2='0%25'%3E%3Cstop offset='0%25' stop-color='%232667FF' stop-opacity='0.1'/%3E%3Cstop offset='100%25' stop-color='%233B3B98' stop-opacity='0.1'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23a)' d='M0 0h1440v720H0z'/%3E%3Cpath fill='%23FFF' fill-opacity='0.05' d='M0 0h1440v720H0z'/%3E%3Cpath fill='none' stroke='%23FFF' stroke-width='2' stroke-opacity='0.05' d='M0 0h1440v720H0z'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.7;
}

.privacy-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 20px;
}

.privacy-hero-content .lead {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Privacy Content Section */
.privacy-content-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.privacy-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.privacy-article {
    background: white;
    border-radius: 15px;
    padding: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.privacy-article h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(38, 103, 255, 0.1);
}

.privacy-article h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--dark-color);
    margin: 30px 0 15px;
}

.privacy-article p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.privacy-article ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.privacy-article li {
    margin-bottom: 10px;
    line-height: 1.6;
    color: #555;
}

.privacy-article a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-article a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.contact-methods {
    list-style: none;
    padding-left: 0;
}

.contact-methods li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: white;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .privacy-hero-content h1 {
        font-size: 3rem;
    }
    
    .privacy-article {
        padding: 40px;
    }
}

@media (max-width: 991.98px) {
    .privacy-hero {
        padding: 80px 0;
    }
    
    .privacy-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .privacy-article h2 {
        font-size: 1.6rem;
    }
    
    .privacy-article h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .privacy-hero-content h1 {
        font-size: 2rem;
    }
    
    .privacy-hero-content .lead {
        font-size: 1.1rem;
    }
    
    .privacy-article {
        padding: 30px;
    }
    
    .privacy-article h2 {
        font-size: 1.4rem;
    }
    
    .privacy-article h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 575.98px) {
    .privacy-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .privacy-hero-content .lead {
        font-size: 1rem;
    }
    
    .privacy-article {
        padding: 20px;
    }
    
    .privacy-article h2 {
        font-size: 1.3rem;
    }
    
    .privacy-intro {
        font-size: 1rem;
    }
    
    .privacy-article p, .privacy-article li {
        font-size: 0.95rem;
    }
}
/* ===== BACK TO TOP BUTTON ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    background: var(--secondary-color);
    color: white;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}