body {
    font-family: Arial, sans-serif;
    background: #f7f7f7;
    margin: 0;
    padding: 0;
}

.card {
    max-width: 420px;
    background: white;
    margin: 30px auto;
    border-radius: 10px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}

.header {
    background: #344955;
    color: white;
    text-align: center;
    padding: 20px;
}

.header h2 {
    margin: 0;
    font-size: 20px;
}

.actions {
    display: flex;
}

.actions a {
    flex: 1;
    text-align: center;
    padding: 15px;
    text-decoration: none;
    color: white;
    background: #3c5d6f;
    transition: background 0.3s;
    font-size: 14px;
}

.actions a:hover {
    background: #496e83;
}

.actions i {
    margin-right: 6px;
}

.content {
    padding: 20px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
}

.section {
    margin-bottom: 20px;
}

.map-image {
    width: 100%;
    border-radius: 8px;
    margin-top: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15);
}

.special-mention {
    font-size: small;
}

.payment-wrapper {
    margin: 0;
    margin-top: -10px;
    text-align: right;
}

.payment-wrapper i {
    font-size: 30px;
}

hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
}

.contact-info {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.contact-info i {
    font-size: 22px;
    margin-right: 10px;
    color: #344955;
}

.contact-info a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.social {
    text-align: left;
}

.social i {
    font-size: 36px;
    color: #25D366;
    cursor: pointer;
}

.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 90%;
    margin: 15px auto;
    padding: 12px;
    text-align: center;
    border-radius: 6px;
    font-weight: bold;
    text-decoration: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-download {
    background: #e91e63;
    color: white;
}

/* Popup langue */
.lang-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.lang-box {
    background: white;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.2);
}

.flags {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.flags img {
    width: 50px;
    cursor: pointer;
    transition: transform 0.2s;
}

.flags img:hover {
    transform: scale(1.1);
}