/* styles-offres.css */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    color: #3c2f2f;
}
main {
    padding: 40px 20px;
    text-align: center;
}

h1 {
    color: #3c2f2f;
    margin-bottom: 10px;
}

.intro {
    font-size: 1.1em;
    color: #5c4b4b;
    margin-bottom: 40px;
}

.support-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.support-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 30px 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.2s ease;
}

.support-card:hover {
    transform: scale(1.03);
}

.support-card img {
    width: 60px;
    margin-bottom: 15px;
}

.support-card h2 {
    color: #2f583c;
    margin-bottom: 10px;
}

.support-card p {
    font-size: 0.95em;
    color: #5e4d4d;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #3CB371;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: bold;
}

.btn:hover {
    background-color: #2e8b57;
}
