* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.popup-overlay.hidden {
    display: none;
}

/* Container */
.popup-container {
    background-color: white;
    border: 3px solid black;
    padding: 50px;
    max-width: 900px;
    width: 90%;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    position: relative;
}

/* Bouton Fermer (Croix) */
.close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 40px;
    font-weight: bold;
    color: #1a1a1a;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-btn:hover {
    color: #FF8C00;
    transform: scale(1.2);
}

/* Logo */
.logo-orange {
    width: 70px;
    height: 70px;
    margin-bottom: 30px;
}

.logo-orange svg {
    width: 100%;
    height: 100%;
}

/* Contenu */
.popup-content h2 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #1a1a1a;
}

.popup-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 15px;
}

.popup-content u {
    text-decoration: underline;
    cursor: pointer;
    color: #1a1a1a;
}

.purposes {
    color: #0066cc;
    font-weight: 600;
    margin: 20px 0;
}

.view-partners {
    display: block;
    text-align: center;
    color: #0066cc;
    text-decoration: underline;
    font-size: 15px;
    margin: 25px 0 0 0;
    cursor: pointer;
    font-weight: 500;
}

.view-partners:hover {
    color: #0052a3;
}

/* Responsive */
@media (max-width: 768px) {
    .popup-container {
        padding: 30px;
    }

    .popup-content h2 {
        font-size: 18px;
    }

    .popup-content p {
        font-size: 14px;
    }

    .close-btn {
        top: 15px;
        right: 15px;
        font-size: 30px;
    }
}
