/* === GLOBAL === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

html, body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #F9F9F9;
  color: #333;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

a {
  color: #4CAF50;
  text-decoration: none;
}

a:hover {
  color: #388E3C;
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* === HEADER === */
header {
  background-color: white;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}

header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}

.logo img {
  height: 40px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
  padding: 0;
  margin: 0;
}

nav li {
  display: inline;
}

/* === BANNER === */
.banner {
  width: 100%;
  height: 300px;
  background: url('/assets/banniere.webp') center/cover no-repeat;
}

.banner img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

/* === FOOTER === */
footer {
  background-color: #1e2d2f;
  color: white !important;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
  user-select: none;
}

footer a {
  color: white !important;
  margin: 0 12px;
  display: inline-block;
  transition: color 0.3s ease;
}

footer a:hover {
  color: #6ca27d !important;
}

footer * {
  color: white !important;
  fill: white !important;
}

/* === BLOG === */
.blog-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  padding: 20px;
}

.blog-item {
  border: 1px solid #ccc;
  padding: 10px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}

.blog-item:hover {
  transform: translateY(-4px);
}

.blog-item img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.blog-item h3 {
  margin-top: 10px;
  font-size: 1.2rem;
  color: #333;
}

.blog-item p {
  font-size: 1rem;
  color: #555;
}

.blog-item a {
  display: inline-block;
  margin-top: 10px;
  background-color: #4CAF50;
  color: white;
  padding: 10px 20px;
  border-radius: 25px;
  transition: background 0.3s;
}

.blog-item a:hover {
  background-color: #388E3C;
}

/* === ARTICLE === */
article {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  font-size: 1.1rem;
  line-height: 1.6;
}

article h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #1e2d2f;
}

article img {
  display: block;
  margin: 0 auto 20px auto;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

article a {
  display: inline-block;
  margin-top: 20px;
  text-align: center;
  padding: 10px 20px;
  background-color: #6ca27d;
  color: white;
  border-radius: 30px;
  text-decoration: none;
}

article a:hover {
  background-color: #588f6e;
}

/* === CTA BUTTON === */
.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: #6ca27d;
  color: white;
  border-radius: 30px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #588f6e;
}

/* === FAQ === */
.faq-container {
  max-width: 720px;
  margin: auto;
  padding: 40px 20px;
}

.faq-container h1,
.faq-container h2,
.faq-container p {
  text-align: left;
}

.faq-container h1 {
  color: #6ca27d;
  font-size: 2em;
  margin-bottom: 30px;
}

.faq-container h2 {
  color: #333;
  font-size: 1.2em;
  margin-top: 32px;
  margin-bottom: 8px;
}

.faq-container p {
  line-height: 1.6;
}

.faq-container a.return {
  display: inline-block;
  margin-top: 40px;
  font-weight: 600;
  color: #6ca27d;
  text-decoration: none;
}

/* === RESPONSIVE === */
@media screen and (max-width: 768px) {
  body {
    padding: 10px;
  }

  article {
    margin: 20px 10px;
    padding: 15px;
    font-size: 1rem;
  }

  article h2 {
    font-size: 1.5rem;
  }

  nav ul {
    flex-direction: column;
    gap: 10px;
  }

  .faq-container {
    padding: 20px 15px;
  }

  .faq-container h1 {
    font-size: 1.5em;
  }

  .faq-container h2 {
    font-size: 1.1em;
  }
  .calendly-inline-widget {
  width: 100% !important;
  max-width: 100% !important;
}
