body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
}

.philosopher-regular {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.philosopher-bold {
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.philosopher-regular-italic {
  font-family: "Philosopher", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.philosopher-bold-italic {
  font-family: "Philosopher", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.svg-container {
  position: absolute;
  bottom: -20px;
  right: 35px;
  width: auto;
  height: 95%; 
  opacity: 0.2; 
  transform: rotate(-10deg);
  pointer-events: none;
}

.center-content {
  position: absolute;
  top: 33%; /* 1/3 de la hauteur */
  left: 50%;
  transform: translate(-50%, -33%);
  text-align: center;
  width: 90%;
  max-width: 800px;
  z-index:10;
}

.center-content img {
  width: 100%;
  max-width: 850px;
  height: auto;
  margin-bottom: 20px;
}

.center-content h2 {
  font-size: 1.8rem;
  margin: 0 0 10px;
}

.center-content p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: #444;
}

.footer {
  position: fixed;
  box-sizing: border-box;
  bottom: 10px;
  left: 10px;
  right:10px;
  display: flex;
  z-index:10;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  font-size: 0.9rem;
  color: #333;
  background: transparent; /* ou blanc si tu veux un fond */
}

.footer span {
  pointer-events: auto; /* réactive les clics sur le texte */
}

/* Responsive */
@media (max-width: 768px) {
  .center-content img {
	max-width: 600px;
  }
  .center-content h2 {
	font-size: 1.2rem;
  }
  .center-content p {
	font-size: 0.9rem;
  }
  .svg-container {
	height: 90%;
	right: -100px;
	transform: rotate(-10deg);
  }
  .footer {
	font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .center-content img {
	 max-width: 300px;
  }
  .center-content h2 {
	font-size: 1rem;
  }
  .center-content p {
	font-size: 0.85rem;
  }
  .svg-container {
	height: 80%;
	transform: rotate(-10deg);
  }  
  .footer {
	font-size: 0.75rem;
	padding: 8px 12px;
  }
}

/* === CTA buttons === */
.cta-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5rem;
  margin-top: 1.25rem;
  flex-wrap: wrap;
  font-family:sans-serif;
}

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border-radius: 15px;
  border: 2px solid currentColor;
  transition: transform 0.15s ease, opacity 0.15s ease;
  text-align: center;
}
.btn:active { transform: scale(0.98); }

.btn-primary {
  color: #ffffff;
  background: #111111;
  border-color: #111111;
}
.btn-primary:hover { opacity: 0.9; }

.btn-outline {
  color: #111111;
  background: rgba(255,255,255,0.7);
  border-color: #111111;
}
.btn-outline:hover { opacity: 0.75; }

@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
    gap: 0.75rem;
  }
  .cta-buttons .btn {
    width: 100%;
    max-width: 320px;
  }
}