.elementor-14147 .elementor-element.elementor-element-22b9e92 > .elementor-container{max-width:1326px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-fa33a92 *//* Import de la police Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&display=swap');

:root {
  --ws-primary: #18223b; 
  --ws-secondary: #5baf92; 
  --ws-accent: #f0f7f4; 
  --ws-text-main: #333333;
  --ws-text-light: #555555;
  --ws-border: #e2e8f0;
  --ws-radius: 8px;
}

/* Effet de sélection de texte personnalisé */
::selection {
  background-color: var(--ws-secondary);
  color: #ffffff;
}

/* Animations de base */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(15px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Typographie et structure */
.ws-blog-post {
  font-family: 'Montserrat', sans-serif;
  color: var(--ws-text-main);
  line-height: 1.7; /* Légèrement augmenté pour plus d'aération */
  max-width: 800px;
  margin: 0 auto;
  font-size: 18px; 
  animation: fadeIn 0.8s ease-out; 
}

/* Style des textes en gras (Highlighter) */
.ws-blog-post strong {
  color: var(--ws-primary);
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.ws-blog-post strong::after {
  content: '';
  position: absolute;
  bottom: 3px;
  left: 0;
  width: 100%;
  height: 6px;
  background-color: rgba(91, 175, 146, 0.25); /* Vert transparent */
  z-index: -1;
  border-radius: 2px;
  transition: height 0.2s ease;
}

.ws-blog-post strong:hover::after {
  height: 100%; /* Le surlignage remplit le mot au survol */
}

/* Lettrine pour le premier paragraphe de l'intro */
.ws-intro p:first-of-type::first-letter {
  float: left;
  font-size: 3.8rem;
  line-height: 0.8;
  font-weight: 800;
  color: var(--ws-secondary);
  margin-right: 12px;
  margin-top: 6px;
  text-shadow: 2px 2px 0px rgba(24, 34, 59, 0.1); /* Petite ombre portée */
}

.ws-blog-post h2 {
  color: var(--ws-primary);
  font-size: 26px; 
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 800;
  position: relative;
  padding-left: 15px;
}

/* Petite barre verticale à gauche des H2 */
.ws-blog-post h2::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10%;
  height: 80%;
  width: 4px;
  background-color: var(--ws-secondary);
  border-radius: 4px;
}

.ws-blog-post h3 {
  color: var(--ws-primary);
  font-size: 24px; 
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.ws-blog-post p, .ws-blog-post li {
  font-size: 18px;
}

/* Séparateurs de section */
.ws-section {
  position: relative;
  padding-bottom: 2.5rem;
  margin-bottom: 1.5rem;
}

.ws-section:not(:last-of-type)::after {
  content: "• • •";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  color: #cbd5e1; /* Gris clair */
  letter-spacing: 12px;
  font-size: 18px;
}

/* Header */
.ws-header {
  text-align: center;
  margin-bottom: 3rem;
  animation: fadeIn 1s ease-out;
}

.ws-title {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 0.8rem;
  color: var(--ws-primary);
  line-height: 1.3;
}

.ws-subtitle {
  font-size: 24px;
  color: var(--ws-secondary);
  font-weight: 600;
}

/* Boutons & CTAs */
.ws-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--ws-secondary); 
  color: #ffffff; 
  padding: 14px 28px;
  border-radius: var(--ws-radius);
  text-decoration: none;
  font-weight: 700;
  font-size: 18px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(91, 175, 146, 0.3); 
}

.ws-btn:hover {
  background-color: var(--ws-primary); 
  color: #ffffff;
  transform: translateY(-3px) scale(1.02); 
  box-shadow: 0 6px 20px rgba(24, 34, 59, 0.4);
}

.ws-btn-secondary {
  background-color: transparent;
  color: var(--ws-secondary);
  border: 2px solid var(--ws-secondary);
  box-shadow: none;
}

.ws-btn-secondary:hover {
  background-color: var(--ws-secondary);
  color: #ffffff;
}

.ws-cta-banner {
  background: linear-gradient(135deg, var(--ws-primary) 0%, #2a3b63 100%);
  color: #ffffff;
  padding: 2.5rem 2rem;
  border-radius: var(--ws-radius);
  text-align: center;
  margin: 3rem 0;
  box-shadow: 0 10px 30px rgba(24, 34, 59, 0.15);
  transition: transform 0.3s ease;
  animation: fadeIn 1.2s ease-out;
}

.ws-cta-banner:hover {
  transform: translateY(-5px); 
}

.ws-cta-banner p {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #ffffff;
}

/* L'essentiel à retenir (Highlight Box) */
.ws-highlight-box {
  background-color: var(--ws-accent);
  border-left: 6px solid var(--ws-secondary);
  padding: 2rem;
  border-radius: 0 var(--ws-radius) var(--ws-radius) 0;
  margin: 3rem 0;
  transition: all 0.3s ease;
  animation: slideInLeft 1s ease-out; 
}

.ws-highlight-box:hover {
  box-shadow: 0 8px 25px rgba(91, 175, 146, 0.1);
  border-left-width: 10px; 
}

.ws-highlight-box h2 {
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: 24px;
  color: var(--ws-primary);
  padding-left: 0;
}
.ws-highlight-box h2::before { display: none; } /* On retire la barre du H2 ici */

/* Sommaire */
.ws-toc {
  background: #ffffff;
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
  padding: 2rem;
  margin: 3rem 0;
  box-shadow: 0 4px 15px rgba(0,0,0,0.03);
  transition: box-shadow 0.3s ease;
}

.ws-toc:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.ws-toc h2 {
  margin-top: 0;
  font-size: 24px;
  padding-left: 0;
}
.ws-toc h2::before { display: none; }

.ws-toc ul {
  list-style-type: none;
  padding-left: 0;
}

.ws-toc li {
  margin-bottom: 1rem;
  border-bottom: 1px dashed var(--ws-border);
  padding-bottom: 0.5rem;
}
.ws-toc li:last-child { border-bottom: none; margin-bottom: 0; }

.ws-toc a {
  color: var(--ws-primary);
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.ws-toc a:hover {
  color: var(--ws-secondary);
  transform: translateX(5px); 
}

/* Listes personnalisées avec effet Hover */
.ws-check-list {
  list-style: none;
  padding-left: 0;
}

.ws-check-list li {
  position: relative;
  padding-left: 2.2rem;
  margin-bottom: 1rem;
  transition: transform 0.2s ease, color 0.2s ease;
}

.ws-check-list li:hover {
  transform: translateX(8px);
  color: var(--ws-primary);
}

.ws-check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--ws-secondary);
  font-weight: 800;
  font-size: 20px;
}

.ws-salary-list {
  background: #ffffff;
  border: 1px solid var(--ws-border);
  padding: 1.5rem 2rem;
  border-radius: var(--ws-radius);
  list-style-type: none;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.ws-salary-list:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.ws-salary-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--ws-border);
  display: flex;
  justify-content: space-between; /* Aligne le niveau et le salaire */
}

.ws-salary-list li:last-child {
  border-bottom: none;
}

/* Liens internes */
.ws-internal-link {
  background-color: var(--ws-accent);
  padding: 1.2rem 1.5rem;
  border-radius: var(--ws-radius);
  margin: 2rem 0;
  border-left: 4px solid var(--ws-secondary);
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.ws-internal-link:hover {
  transform: translateX(5px);
  background-color: #e6f2ed;
}

.ws-internal-link a {
  font-weight: 700;
  color: var(--ws-primary);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s ease;
}

.ws-internal-link a:hover {
  color: var(--ws-secondary);
  border-bottom: 1px solid var(--ws-secondary);
}

/* FAQ Accordéon */
.ws-faq {
  margin-top: 4rem;
  border-top: none;
}

.ws-faq-item {
  border: 1px solid var(--ws-border);
  border-radius: var(--ws-radius);
  margin-bottom: 1.2rem;
  background: #ffffff;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.ws-faq-item:hover {
  box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.ws-faq-item summary {
  padding: 1.5rem;
  cursor: pointer;
  font-weight: 700;
  color: var(--ws-primary);
  background: #ffffff;
  list-style: none;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.ws-faq-item summary:hover {
  background: var(--ws-accent);
  color: var(--ws-secondary);
}

.ws-faq-item summary::-webkit-details-marker {
  display: none;
}

.ws-faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  color: var(--ws-secondary);
  transition: transform 0.4s ease;
}

.ws-faq-item[open] summary::after {
  content: "−";
  transform: translateY(-50%) rotate(180deg);
}

.ws-faq-item summary h3 {
  margin: 0;
  font-size: 22px;
  display: inline-block;
  padding-right: 2rem;
}

.ws-faq-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  animation: fadeIn 0.4s ease-out;
}

/* Responsive pour mobile */
@media (max-width: 768px) {
  .ws-title { font-size: 28px; }
  .ws-blog-post h2 { font-size: 24px; }
  .ws-blog-post h3 { font-size: 22px; }
  .ws-blog-post p, .ws-blog-post li { font-size: 16px; }
  .ws-cta-banner { padding: 2rem 1.5rem; }
  .ws-salary-list li { flex-direction: column; } /* Sur mobile, on empile les infos de salaire */
}/* End custom CSS */