
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, Helvetica, sans-serif;
}


body {
    background-color: #f5f7fa;
    color: #333;
    line-height: 1.6;
}


h1 {
    font-size: 2.8em;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e2a38;
}

h2 {
    font-size: 1.6em;
    color: #e61811;
}

h3 {
    margin-bottom: 10px;
    color: #ffffff;
}


table {
    width: 80%;
    border-collapse: collapse;
    margin: auto;
}

.bande {
	background-color:#f2ac3e;
}

td {
    width: 33%;
    padding: 25px;
    vertical-align: top;
}


p {
    font-size: 1.05em;
    margin-top: 10px;
    color: #444;
}


td p {
    background-color: #ffffff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}


body > center > p {
    width: 70%;
    margin: auto;
    font-size: 1.1em;
    font-style: italic;
}


footer {
    background-color: #082640;
    color: #ffffff;
    margin-top: 60px;
    padding: 30px 20px;
    width: 100%;
}

footer p {
    color: #e0e0e0;
    margin: 8px 0;
}


a {
    color: #4db6ff;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}


.social a {
    font-weight: bold;
}


.copyright {
    margin-top: 20px;
    font-size: 0.9em;
    opacity: 0.8;
}

/* Responsive (mobile) */
@media screen and (max-width: 900px) {
    table, tr, td {
        display: block;
        width: 100%;
    }

    td {
        margin-bottom: 20px;
    }

    body > center > p {
        width: 90%;
    }
}

