/* Styles généraux */

body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Styles pour l'en-tête */

header {
    background-color: #0b3a0c;
    color: #fff;
    padding: 20px;
}

header h1 {
    margin: 0;
    font-size: 36px;
}

header p {
    font-size: 18px;
}

/* Styles pour la navigation */

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ccc;
    padding: 10px;
}

nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav li {
    margin-right: 20px;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 18px;
}

nav a:hover {
    color: #003366;
}

/* Styles pour le contenu */

main {
    padding: 20px;
}

main h2 {
    font-size: 24px;
}

main p {
    font-size: 16px;
    margin-bottom: 20px;
}

/* Styles pour le pied de page */

footer {
    background-color: #003366;
    color: #fff;
    padding: 20px;
    text-align: center;
}

footer p {
    font-size: 14px;
}
nav ul ul {
  display: none;
}

nav ul li:hover > ul {
  display: inherit;
}

nav ul {
  background: #efefef;
  padding: 0;
  list-style: none;
  position: relative;
  display: inline-table;
}

nav ul li {
  float: left;
}

nav ul li:hover {
  background: #4b545f;
}

nav ul li:hover a {
  color: #fff;
}

nav ul li a {
  display: block;
  padding: 0 10px;
  color: #757575;
  text-decoration: none;
  line-height: 32px;
}

nav ul ul {
  background: #5f6975;
  border-radius: 0px;
  padding: 0;
  position: absolute;
  top: 100%;
}

nav ul ul li {
  float: none;
  position: relative;
}

nav ul ul li a {
  padding: 0 10px;
  color: #fff;
  line-height: 32px;
}

nav ul ul li a:hover {
  background: #4b545f;
}

nav ul ul ul {
  position: absolute;
  left: 100%;
  top:0;
}
