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

body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-image: url("../public/flamme2.png");
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
    background-attachment: scroll;
    min-height: 100vh;
}

.container {
    background-color: rgba(255, 255, 255, 0.85);
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px 40px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

h1, h2 {
    color: #863939;
    margin-bottom: 20px;
}

h1 {
    font-size: 2.8rem;
    font-weight: 700;
    text-align: center;
}

h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
}

p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

ul {
    margin-left: 20px;
    margin-bottom: 20px;
    list-style-type: disc;
    color: #555;
}

ul li {
    margin-bottom: 10px;
}

.btn {
    display: inline-block;
    background-color: #ee8c3d;
    color: #fff;
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    margin-top: 30px;
    text-align: center;
}

.btn:hover, .btn:focus {
    background-color: #cc771f;
    outline: none;
}

@media (max-width: 768px) {
    .container {
        margin: 20px;
        padding: 20px;
    }

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.4rem;
    }

    p, ul li {
        font-size: 1rem;
    }
}