/* Privacy Policy Page Styles */

.privacy-section {
    background: linear-gradient(135deg, #f8fafc 0%, #fef6e4 100%);
    background-attachment: scroll;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    min-height: auto;
    height: auto;
    overflow: visible;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: auto;
}

footer {
    position: relative;
    z-index: 10;
    margin-top: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
}

.privacy-section .bg-white {
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.privacy-section .w-32 {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.privacy-section img {
    transition: transform 0.3s;
}

.privacy-section img:hover {
    transform: scale(1.05) rotate(-2deg);
}

.privacy-section h1, .privacy-section h2 {
    font-family: inherit;
}

.privacy-section ul {
    margin-bottom: 1.5rem;
}

@media (max-width: 640px) {
    .privacy-section .w-32, .privacy-section .h-32 {
        width: 5rem;
        height: 5rem;
    }
    .privacy-section img {
        width: 2.5rem;
        height: 2.5rem;
    }
    .privacy-section h1 {
        font-size: 2rem;
    }
    .privacy-section .bg-white {
        padding: 1.5rem;
    }
} 