/* Reset et base */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    color: #333;
    background-color: #f4f4f4;
    margin-bottom: 60px;
}

.main-content {
    padding-bottom: 80px; /* Assurez-vous que cette valeur est supérieure ou égale à la hauteur de votre pied de page */
}

header, nav, section, article, aside, footer {
    margin: 10px;
    padding: 10px;
    border: 1px solid #ddd;
}

/* Style spécifique pour le pied de page principal */
footer.pied-de-page {
    margin: 0;
    padding: 10px;
    border: none;
    width: 100%;
    box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
    color: #444;
}

h1 {
    font-size: 2.5em;
}

h2 {
    font-size: 2em;
}

h3 {
    font-size: 1.5em;
}

h4, h5, h6 {
    font-size: 1em;
}

/* Liens */
a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Listes */
ul, ol {
    margin-left: 20px;
}

/* Tableaux */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

th {
    background-color: #f2f2f2;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
}

/* Formulaires */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="color"],
input[type="search"],
input[type="number"],
input[type="range"],
textarea,
select {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

/* Boutons */
input[type="submit"],
input[type="reset"],
input[type="button"] {
    background-color: #4CAF50;
    color: white;
    padding: 10px 15px;
    margin: 5px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

input[type="submit"]:hover,
input[type="reset"]:hover,
input[type="button"]:hover {
    background-color: #45a049;
}

/* Pied de page */
.pied-de-page {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

.instagram-button {
    background-color: #E1306C;
    color: white;
    padding: 10px 15px;
    text-decoration: none;
    border-radius: 4px;
}

.instagram-button:hover {
    background-color: #C13584;
}
