.privacy-page-wrapper * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.privacy-page-wrapper {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.privacy-page-wrapper .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.privacy-page-wrapper .home-btn {
    position: absolute;
    top: 1.5rem;
    left: 1rem;
    width: 45px;
    height: 45px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
}

.privacy-page-wrapper .home-btn:hover {
    background: #1d4ed8;
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(37, 99, 235, 0.4);
}

.privacy-page-wrapper .logo {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2563eb;
}

.privacy-page-wrapper .tagline {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 2rem;
}

.privacy-page-wrapper .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.privacy-page-wrapper .breadcrumb a {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

.privacy-page-wrapper .breadcrumb a:hover {
    color: #1d4ed8;
    text-decoration: underline;
}

.privacy-page-wrapper .breadcrumb span {
    margin: 0 0.5rem;
}

.privacy-page-wrapper .privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-page-wrapper .section-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1e293b;
    position: relative;
    padding-bottom: 0.5rem;
    text-align: center;
}

.privacy-page-wrapper .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #2563eb;
    border-radius: 3px;
}

.privacy-page-wrapper .last-updated {
    text-align: center;
    color: #64748b;
    margin-bottom: 2rem;
    font-style: italic;
}

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

.privacy-page-wrapper .policy-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1e293b;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 0.5rem;
}

.privacy-page-wrapper .policy-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.8rem;
    color: #374151;
}

.privacy-page-wrapper .policy-section p {
    margin-bottom: 1rem;
    color: #475569;
}

.privacy-page-wrapper .policy-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-page-wrapper .policy-section li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.privacy-page-wrapper .highlight-box {
    background: #dbeafe;
    border-left: 4px solid #2563eb;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.privacy-page-wrapper .highlight-box h3 {
    margin-bottom: 0.8rem;
    color: #1e293b;
}

.privacy-page-wrapper .contact-info {
    background: #f8fafc;
    border-radius: 12px;
    padding: 2rem;
    margin: 3rem 0;
    border: 1px solid #e2e8f0;
}

.privacy-page-wrapper .contact-info h3 {
    margin-bottom: 1rem;
    color: #1e293b;
}

.privacy-page-wrapper footer {
    text-align: center;
    padding: 2rem 0;
    color: #64748b;
    font-size: 0.9rem;
}

.privacy-page-wrapper .social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.privacy-page-wrapper .social-link {
    width: 40px;
    height: 40px;
    background: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-page-wrapper .social-link:hover {
    background: #2563eb;
    color: white;
    transform: translateY(-3px);
}

.privacy-page-wrapper .floating-shapes {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    z-index: -1;
}

.privacy-page-wrapper .shape {
    position: absolute;
    opacity: 0.1;
    animation: float 15s infinite ease-in-out;
    color: #2563eb;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(5deg); }
}

.privacy-page-wrapper .floating-home-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #2563eb;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 6px 15px rgba(37, 99, 235, 0.4);
    transition: all 0.3s ease;
    z-index: 100;
}

.privacy-page-wrapper .floating-home-btn:hover {
    background: #1d4ed8;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.5);
}

.privacy-page-wrapper .floating-home-btn span {
    position: absolute;
    background: #ef4444;
    color: white;
    font-size: 0.7rem;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    top: -5px;
    right: -5px;
    box-shadow: 0 2px 5px rgba(239, 68, 68, 0.3);
}

@media (max-width: 768px) {
    .privacy-page-wrapper .home-btn {
        top: 1rem;
        left: 1rem;
        width: 40px;
        height: 40px;
    }
    
    .privacy-page-wrapper .container {
        padding: 1rem;
    }
    
    .privacy-page-wrapper .logo {
        font-size: 2rem;
    }
    
    .privacy-page-wrapper .section-title {
        font-size: 1.5rem;
    }
    
    .privacy-page-wrapper .policy-section h2 {
        font-size: 1.3rem;
    }
    
    .privacy-page-wrapper .policy-section h3 {
        font-size: 1.1rem;
    }
}