.center-btn {
  padding-top:40px
}

.btn-default1 {
	display: inline-block;
  padding: 15px 18px;
  background-color: #1F2A44;
  color: white;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  transition: background-color 0.3s ease;
}


.btn-default1:hover, .btn-default1:focus, .btn-default1.focus, .btn-default1:active, .btn-default1.active {
	color: #fff;
	background-color: #121d1f;
	border-color: #121d1f;
}


/* === SECTION COMPÉTENCES === */
.section-competence {
  padding: 60px 20px;
  background: linear-gradient(to bottom, #ffffff, #f3f4f6);
}

.section-competence h2 {
  text-align: center;
  font-size: 40px;
  margin-bottom: 50px;
  text-transform: uppercase;
  color: #0a2b4c;
  letter-spacing: 2px;
  border-bottom: 4px solid #0a2b4c;
  display: inline-block;
  padding-bottom: 10px;
}

.competence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.competence-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-left: 6px solid #0a2b4c;
}

.competence-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.1);
}

.competence-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: #0a2b4c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.competencecard p {
  font-size: 15px;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* === LISTES === */
ul {
  list-style: disc;
  margin-left: 20px;
  padding-left: 20px;
}

ul li::marker {
  color: #121d1f;
}


  .center-btn {
	display:flex;
	justify-content: center;
  }
  

  .wrapper {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
  }

  #content {
	flex: 1;
  }

  .copyright {
	background-color: #222;
	color: white;
	display: flex;
	justify-content: space-between;
	padding: 15px 30px;
	font-size: 14px;
	width: 100%;
	position: relative;
  }


.wrapper {
  min-height: 100vh;    
  display: flex;
  flex-direction: column;
}

/* Le contenu pousse le footer vers le bas */
.wrapper > * {
  flex: 1 0 auto;
}

/* Footer collé en bas */
.footer {
  background-color: transparent;
  text-align: center;
  padding: 5px 0;
  width: 100%;
  margin-top: 70px;          /* pousse le footer vers le bas */
  box-sizing: border-box;
}
