@charset "UTF-8";
/* CSS Document */

body {
    font-family: Arial, sans-serif;
    margin: 20;
	margin-bottom: 2
    padding: 0;
    background-color: #f8f8f8;
}

header {
    background-color: black;
    padding: 15px 0;
    text-align: center;
}
header {
  display: flex;
  justify-content: flex-end;
  padding: 20px;
}

.logo {
  width: 100px; /* Ajuste la taille du logo */
  height: auto;
}

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

nav ul li {
    display: inline;
    margin: 0 15px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 50px;
    background-color: #fff;
    margin: 20px;
    border-radius: 10px;
}

footer {
    background-color: red;
    color: white;
    text-align: center;
    padding: 10px;
    position: fixed;
    bottom: 0;
    width: 100%;
}
.btn-inscrire {
    position: absolute;
    right: 9px;
    top: 46px;
    transform: translateY(-50%);
}

.btn-inscrire a {
    background-color: white;
    color: red;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
}

.btn-inscrire a:hover {
    background-color: #ddd;
}
.sections-container {
  display: flex;
  justify-content: space-between;
  padding: 20px;
}

.section {
  width: 30%;
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: center;
}

.section h2 {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.section p {
  font-size: 1em;
}
