body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
}

.language-selector {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 100;
}

.back-button {
    margin-top: 30px;
    margin-bottom: 60px;
    background-color: #ff751f;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline-block;
}

.back-button:hover {
    background-color: #e66a1c;
}

.back-button i {
    margin-right: 8px;
}

.language-selector select {
    background-color: #ff751f;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.language-selector select:hover {
    background-color: #e66a1c;
}

.language-selector select:focus {
    outline: 2px solid #e66a1c;
}

.container {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.offers-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logo {
    max-width: 400px;
    height: auto;
    margin-bottom: 20px;
}

.tagline {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    line-height: 1.5;
    color: #333;
    max-width: 600px;
    margin: 0 auto 30px auto;
    text-align: center;
}

.buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
}

.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #ff751f; /* Couleur principale contrôleur */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.button i {
    margin-right: 8px;
    color: white;
}

.button:hover {
    background-color: #e66a1c; /* Couleur hover contrôleur */
}

.decorative-plant {
    position: fixed;
    bottom: 40px;
    right: 0;
    max-width: 150px;
    height: auto;
    opacity: 0.8;
    z-index: -1;
    margin-right: 10px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ff751f;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    z-index: 1;
}

.footer a {
    color: white;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

/* Styles pour offres.html */
h1 {
    font-family: 'Montserrat', sans-serif;
    color: #1e293b;
    margin-bottom: 30px;
    margin-top: 0;
}

.offer {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
    position: relative;
}

.offer h2 {
    color: #ff751f;
    margin-bottom: 10px;
}

.pdf-links {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 10px;
}

.pdf-links a {
    color: #6366f1;
    text-decoration: none;
    font-size: 0.9rem;
}

.pdf-links a:hover {
    text-decoration: underline;
}

.apply-btn {
    margin-top: 10px;
    background: linear-gradient(135deg, #ff751f, #e66a1c);
    box-shadow: 0 4px 15px rgba(255, 117, 31, 0.3);
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 117, 31, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}

.modal-content a {
    margin-top: 20px;
}

/* Styles pour les listes à puces (page RGPD) */
.container > ul {
    text-align: left;
    padding-left: 0;
    list-style: none;
    margin: 15px 0;
}

.container > ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
    line-height: 1.5;
}

.container > ul li::before {
    content: "•";
    color: #ff751f;
    font-weight: bold;
    font-size: 1.2em;
    position: absolute;
    left: 5px;
    top: 0;
}

.container > h2 {
    color: #ff751f;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    margin-top: 25px;
    margin-bottom: 10px;
    text-align: left;
}

.container > p {
    text-align: left;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }
    
    .tagline {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 20px;
    }
    
    .buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .decorative-plant {
        max-width: 80px;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
        bottom: 40px;
    }
    
    .container {
        padding: 10px;
        padding-top: 12px;
    }
    
    h1 {
        padding-top: 42px;
    }
    
    .offer {
        padding: 15px;
        margin-bottom: 15px;
    }
    
    .actions {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
    }
    
    .pdf-links {
        position: static;
        flex-direction: column;
        gap: 5px;
        margin: 0;
        align-items: flex-start;
    }
}

/* Responsive design */
@media (max-width: 768px) {
    .logo {
        max-width: 250px;
    }
    
    .tagline {
        font-size: 1rem;
        max-width: 90%;
        margin-bottom: 20px;
    }
    
    .buttons {
        flex-direction: column;
        gap: 10px;
        padding: 0 20px;
    }
    
    .button {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .decorative-plant {
        max-width: 80px;
        left: 50%;
        transform: translateX(-50%);
        margin-right: 0;
        bottom: 40px;
    }
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ff751f;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 0.9rem;
    z-index: 1;
}

/* Styles pour offres.html */
.offer {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.offer h2 {
    color: #ff751f;
    margin-bottom: 10px;
}

.pdf-links {
    margin: 15px 0;
}

.pdf-links a {
    color: #6366f1;
    text-decoration: none;
    margin-right: 15px;
}

.pdf-links a:hover {
    text-decoration: underline;
}

.apply-btn {
    margin-top: 10px;
    background: linear-gradient(135deg, #ff751f, #e66a1c);
    box-shadow: 0 4px 15px rgba(255, 117, 31, 0.3);
    border: none;
    cursor: pointer;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 117, 31, 0.5);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 10;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 15% auto;
    padding: 20px;
    border-radius: 8px;
    width: 80%;
    max-width: 500px;
    position: relative;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close:hover {
    color: #000;
}