/* Privacy Policy Page */
.privacy-policy-page {
    width: 100%;
    min-height: 100vh;
    background: linear-gradient(to bottom, #f5f5f5 0%, #ffffff 100%);
    padding-bottom: 2rem;
}

/* Animation pour le header */
.animate-header {
    animation: fadeInDown 0.8s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation pour les sections au scroll */
.animate-section {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-section.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Header avec image de fond */
.privacy-header {
    width: 75%;
    display: grid;
    max-width: 1200px;
    margin-left: auto;
    border-radius: 20px;
    margin-right: auto;
    align-content: center;
    height: 200px;
    background: url('../assets/img/privacy-banner.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.privacy-container{
    background: none;
    max-width: 1200px;
    width: 75%;
    margin: 0 auto;
    padding: 2rem 0;
}

.privacy-header h1 {
    color: white;
    font-size: 3rem;
    background: none;
    font-weight: 700;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Container principal */
.privacy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 2rem;
}

.policy-content {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

p ul li:hover{
    border: none;
}

/* Sections */
.policy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
    background: none;
}

.policy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Titres h2 */
.policy-section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    background: none;
    margin-bottom: 1rem;
    padding-left: 0;
}

.policy-item {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    background: none;
    text-align: justify;
    text-decoration: none;
    padding-left: 0;
}

/* Paragraphes */
.policy-section p {
    color: #4b5563;
    line-height: 1.8;
    font-size: 0.95rem;
    background: none;
    text-decoration: none;
    margin-bottom: 1rem;
    text-align: justify;
}

/* Contact Details */
.contact-details {
    background: none;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.policy-list {
    margin: 1rem 0;
    background: none;
    text-decoration: none;
}

.contact-details p {
    margin-bottom: 0.5rem;
    background: none;
    text-align: left;
}

.contact-details p strong {
    color: #111827;
    font-weight: 600;
    background: none;
}

/* Responsive - Tablette */
@media (max-width: 1024px) {
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    .privacy-container {
        max-width: 950px;
        width: 95%;
    }
    .policy-content {
        padding: 2.5rem;
    }

    .policy-section h2 {
        font-size: 1.4rem;
    }
    .privacy-header{
        max-width: 950px;
        width:80% ;
    }
}

/* Responsive - Tablette moyenne */
@media (max-width: 768px) {
    .privacy-header {
        height: 150px;
        width: 95%;
    }

    .privacy-header h1 {
        font-size: 2rem
    }

    .privacy-container {
        padding: 0;
    }

    .policy-content {
        padding: 2rem;
        border-radius: 10px;
    }

    .policy-section {
        margin-bottom: 2rem;
        padding-bottom: 1.5rem;
    }

    .policy-section h2 {
        font-size: 1.3rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.9rem;
    }

    .contact-details {
        padding: 1.25rem;
    }
}

/* Responsive - Mobile */
@media (max-width: 480px) {
    .privacy-header {
        height: 120px;
    }

    .privacy-header h1 {
        font-size: 1.5rem;
        padding: 0 1rem;
    }

    .privacy-container {
        padding: 0 1rem;
    }

    .policy-content {
        padding: 1.5rem;
        border-radius: 8px;
    }

    .policy-section {
        margin-bottom: 1.5rem;
        padding-bottom: 1.25rem;
    }

    .policy-section h2 {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.85rem;
        line-height: 1.7;
        text-align: left;
    }

    .policy-section ul li {
        padding-left: 1.25rem;
    }

    .contact-details {
        padding: 1rem;
    }

    .contact-details p {
        font-size: 0.85rem;
    }
}

/* Responsive - TrÃ¨s petit mobile */
@media (max-width: 360px) {
    .privacy-header h1 {
        font-size: 1.25rem;
    }

    .policy-content {
        padding: 1.25rem;
    }

    .policy-section h2 {
        font-size: 1.1rem;
    }

    .policy-section p,
    .policy-section ul li {
        font-size: 0.8rem;
    }
}

@media (max-width:1400px) {
    .privacy-header{
        max-width: 1100px;
    }
}

@media (min-width:1400px) {
    .privacy-header{
        width: 90%;
        max-width: 1500px;
    }
    .privacy-container{
        max-width: 1550px;
        width: 90%;
    }
}