/* Privacy Policy Page Styles */

/* Main Content Container */
.privacy-content {
    padding-top: 90px; /* Account for fixed navbar */
    min-height: 100vh;
}

/* Hero Section */
.privacy-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0 60px;
    text-align: center;
}

.privacy-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.privacy-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.privacy-subtitle {
    font-size: 1.3rem;
    color: #64748b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.privacy-meta p {
    margin: 0;
    font-size: 1rem;
    color: #475569;
}

/* Main Content */
.privacy-main {
    padding: 80px 0;
    background: #fff;
}

.privacy-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-section {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.privacy-section:last-child {
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid #32CD32;
    display: inline-block;
}

.privacy-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 1.5rem;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

/* Privacy List */
.privacy-list {
    margin: 1.5rem 0;
    padding-left: 0;
    list-style: none;
}

.privacy-list li {
    position: relative;
    padding: 0.8rem 0 0.8rem 2rem;
    font-size: 1.1rem;
    line-height: 1.7;
    color: #475569;
    border-bottom: 1px solid #f1f5f9;
}

.privacy-list li:last-child {
    border-bottom: none;
}

.privacy-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0.8rem;
    color: #32CD32;
    font-weight: bold;
    font-size: 1.2rem;
}


/* Go to Top Button */
.go-to-top-btn {
    position: fixed;
    bottom: 100px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: #32CD32;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: 0 4px 12px rgba(50, 205, 50, 0.3);
    transition: all 0.3s ease;
    z-index: 998;
    opacity: 0;
    visibility: hidden;
}

.go-to-top-btn:hover {
    background: #228B22;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(50, 205, 50, 0.4);
}

.go-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
}

/* Responsive Design */
@media (max-width: 768px) {
    .privacy-title {
        font-size: 2.5rem;
    }
    
    .privacy-subtitle {
        font-size: 1.1rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .privacy-section h2 {
        font-size: 1.6rem;
    }
    
    .privacy-section p {
        font-size: 1rem;
    }
    
    .privacy-list li {
        font-size: 1rem;
        padding: 0.6rem 0 0.6rem 1.5rem;
    }
    
    
    
    .go-to-top-btn {
        bottom: 80px;
        right: 15px;
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .privacy-hero {
        padding: 60px 0 40px;
    }
    
    .privacy-title {
        font-size: 2rem;
    }
    
    .privacy-subtitle {
        font-size: 1rem;
    }
    
    .privacy-main {
        padding: 60px 0;
    }
    
    .privacy-section {
        margin-bottom: 2rem;
        padding: 1.5rem 0;
    }
    
    .privacy-section h2 {
        font-size: 1.4rem;
    }
    
    .privacy-meta {
        padding: 1rem;
        margin-top: 1rem;
    }
    
}

/* Print Styles */
@media print {
    .navbar,
    .sticky-ctas,
    .go-to-top-btn,
    .footer {
        display: none !important;
    }
    
    .privacy-content {
        padding-top: 0;
    }
    
    .privacy-hero {
        background: white !important;
        padding: 20px 0;
    }
    
    .privacy-title {
        color: black !important;
    }
    
    .privacy-subtitle {
        color: #666 !important;
    }
    
    .privacy-section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    .privacy-section h2 {
        color: black !important;
        border-bottom-color: black !important;
    }
    
    .privacy-section p,
    .privacy-list li {
        color: black !important;
    }
}
