/* === EUDALIE - What is Eudalie? (изолированная секция) === */
.eud-section-what {
  padding: 80px 0;
  background: #fff;
}

.eud-what {
  position: relative;
}

.eud-title {
  text-align: center;
  margin-bottom: 30px;
}

.eud-text {
  max-width: 800px;
  margin: 0 auto 50px;
  font-size: 18px;
  line-height: 1.7;
  color: #24384e;
  text-align: center;
}

.eud-features {
  display: flex;
  gap: 30px;
  justify-content: center;
  flex-wrap: wrap;
}

.eud-feature {
  flex: 1;
  min-width: 250px;
  max-width: 320px;
  text-align: center;
}

.eud-feature-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.eud-feature-icon svg {
  width: 100%;
  height: 100%;
}

.eud-feature-title {
  font-size: 22px;
  color: #d2ada5;
  font-weight: 700;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.eud-feature-desc {
  color: #24384e;
  line-height: 1.6;
  margin: 0;
}





/* === EUDALIE - Effects Section with Background Image === */
.eud-section-effects-bg {
  position: relative;
  background-size: cover;
  background-position: center right; /* Лицо — справа */
  background-repeat: no-repeat;
  padding: 100px 0;
  border-radius: 0;
  overflow: hidden;
  min-height: 600px;
}

/* Полупрозрачный оверлей для читаемости текста */
.eud-section-effects-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.92) 0%, rgba(255,255,255,0.75) 60%, rgba(255,255,255,0.5) 100%);
  z-index: 1;
}

.eud-effects-overlay {
  position: relative;
  z-index: 2;
}

.eud-effects-content {
  max-width: 600px;
  margin-left: 0;
  padding: 20px;
  background: rgba(255,255,255,0.8);
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.eud-effects-title {
  margin-bottom: 20px;
  color: #24384e;
}

.eud-effects-text {
  color: #24384e;
  line-height: 1.7;
  margin-bottom: 30px;
  font-size: 17px;
}

.eud-effects-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px 0;
}

.eud-effects-list li {
  color: #24384e;
  line-height: 1.7;
  margin-bottom: 12px;
  position: relative;
  padding-left: 15px;
}

.eud-effects-list li::before {
  content: '•';
  color: #d2ada5;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.eud-effects-cta {
  text-align: center;
  margin-top: 20px;
}

.eud-btn-primary {
  display: inline-block;
  background: #d2ada5;
  color: white;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: 0.3s;
}

.eud-btn-primary:hover {
  background: #c59c98;
  transform: translateY(-2px);
}

/* === Адаптивность === */
@media (max-width: 991px) {
  .eud-section-effects-bg {
    min-height: auto;
    padding: 60px 0;
  }

  .eud-section-effects-bg::before {
    background: rgba(255,255,255,0.9);
  }

  .eud-effects-content {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .eud-effects-cta {
    text-align: center;
  }
}

@media (max-width: 576px) {
  .eud-effects-content {
    padding: 20px;
    background: white;
  }

  .eud-section-effects-bg {
    background-position: center center;
    background-size: auto 100%;
  }
}







/* === EUDALIE - Active Ingredients Section === */
.eud-section-ingredients {
  padding: 80px 0;
  background: #fff;
}

.eud-ingredients-title {
  text-align: center;
  margin-bottom: 20px;
}

.eud-ingredients-intro {
  max-width: 800px;
  margin: 0 auto 50px;
  text-align: center;
  color: #24384e;
  font-size: 18px;
  line-height: 1.7;
}

.eud-ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 20px;
}

.eud-ingredient-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: 0.3s;
}

.eud-ingredient-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.eud-ingredient-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.eud-ingredient-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eud-ingredient-name {
  font-size: 20px;
  color: #d2ada5;
  font-weight: 700;
  margin: 15px 15px 10px;
  text-transform: uppercase;
}

.eud-ingredient-desc {
  color: #24384e;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 15px 15px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .eud-ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .eud-ingredients-grid {
    grid-template-columns: 1fr;
  }

  .eud-ingredients-intro,
  .eud-ingredient-desc {
    font-size: 16px;
  }

  .eud-ingredient-name {
    font-size: 18px;
  }
}






/* === EUDALIE - Package Leaflet Section === */
.eud-section-leaflet {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.eud-leaflet {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

/* Обводка как в .problem__body */
.eud-leaflet::before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px;
  border: 1px solid #c5d7e0;
}

.eud-leaflet-title {
  text-align: center;
  margin-bottom: 40px;
}

.eud-leaflet-content {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.eud-leaflet-item {
  margin: 0;
}

.eud-leaflet-subtitle {
  font-size: 20px;
  color: #d2ada5;
  font-weight: 700;
  margin: 0 0 10px;
  text-transform: uppercase;
}

.eud-leaflet-text {
  color: #24384e;
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .eud-leaflet {
    padding: 20px;
  }

  .eud-leaflet-content {
    gap: 20px;
  }

  .eud-leaflet::before {
    top: 15px;
    right: 15px;
    bottom: 15px;
    left: 15px;
  }
}

@media (max-width: 576px) {
  .eud-leaflet-title {
    font-size: 36px;
  }

  .eud-leaflet-subtitle {
    font-size: 18px;
  }

  .eud-leaflet-text {
    font-size: 15px;
  }
}






/* === EUDALIE - Expert Recommendation Section === */
.eud-section-expert {
  padding: 60px 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.eud-expert {
  display: flex;
  min-height: 500px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  background: #f9f9f9;
}

.eud-expert-media {
  flex: 1;
  min-width: 300px;
}

.eud-expert-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.eud-expert-info {
  flex: 1;
  background: white;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eud-expert-title {
  margin: 0 0 10px;
  font-size: 44px;
}

.eud-expert-subtitle {
  font-size: 18px;
  color: #d2ada5;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.eud-expert-description {
  margin: 20px 0;
  color: #24384e;
  line-height: 1.7;
}

.eud-expert-description p {
  margin: 0 0 15px;
  font-size: 16px;
}

.eud-expert-description p:last-child {
  font-weight: 600;
  color: #24384e;
  margin-top: 10px;
}

.eud-expert-id {
  margin-top: 15px;
}

.eud-expert-id img {
  max-width: 120px;
  height: auto;
}

/* === Адаптивность === */
@media (max-width: 991px) {
  .eud-expert {
    flex-direction: column;
  }

  .eud-expert-media img {
    height: 250px;
  }

  .eud-expert-info {
    padding: 30px 20px;
  }
}

@media (max-width: 576px) {
  .eud-section-expert {
    padding: 40px 0;
  }

  .eud-expert-title {
    font-size: 36px;
  }

  .eud-expert-subtitle {
    font-size: 16px;
  }

  .eud-expert-description p {
    font-size: 15px;
    line-height: 1.6;
  }
}







/* === EUDALIE - Customer Reviews Section === */
.eud-section-reviews {
  padding: 80px 0;
  background: #fff;
}

.eud-reviews-title {
  text-align: center;
  margin-bottom: 20px;
}

.eud-reviews-intro {
  max-width: 800px;
  margin: 0 auto 20px;
  color: #24384e;
  line-height: 1.7;
  font-size: 17px;
  text-align: center;
}

.eud-reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.eud-review-card {
  background: #f9f9f9;
  padding: 25px;
  border-radius: 12px;
  border-left: 4px solid #d2ada5; /* Акцентная полоса — как доверие */
  box-shadow: 0 3px 10px rgba(0,0,0,0.05);
}

.eud-review-header {
  font-size: 18px;
  color: #24384e;
  margin-bottom: 12px;
  font-weight: 600;
}

.eud-review-text {
  color: #24384e;
  font-style: normal;
  line-height: 1.6;
  margin: 0;
  font-size: 16px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .eud-reviews-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .eud-reviews-intro {
    font-size: 16px;
    padding: 0 20px;
  }
}

@media (max-width: 576px) {
  .eud-section-reviews {
    padding: 60px 0;
  }

  .eud-review-card {
    padding: 20px;
  }
}





/* === EUDALIE - FAQ Section === */
.eud-section-faq {
  padding: 80px 0;
  background: #fff;
}

.eud-faq-title {
  text-align: center;
  margin-bottom: 50px;
}

.eud-faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.eud-faq-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #eaeaea;
}

.eud-faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.eud-faq-question {
  font-size: 19px;
  color: #d2ada5;
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.4;
}

.eud-faq-answer {
  color: #24384e;
  line-height: 1.7;
  margin: 0;
  font-size: 16px;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .eud-section-faq {
    padding: 60px 0;
  }

  .eud-faq-question {
    font-size: 18px;
  }

  .eud-faq-answer {
    font-size: 15px;
  }
}








/* === EUDALIE — ФОРМА ЗАКАЗА: ФИНАЛЬНАЯ КОМПАКТНАЯ ВЕРСИЯ (обновлённая) === */

/* === Правая часть: форма === */
.face__box form {
  background: white;
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
  width: 100%;
}

.form__body {
  display: flex;
  flex-direction: column;
  gap: 5px; /* Уменьшено — поля ближе друг к другу */
}

/* Заголовок скидки */
.form__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.form__head p {
  margin: 0;
  font-size: 15px;
  color: #24384e;
  font-weight: 600;
}

.form__head p span {
  color: #d2ada5;
}

.form__discont {
  background: #d2ada5;
  color: white;
  font-weight: 700;
  font-size: 15px;
  padding: 4px 9px;
  border-radius: 30px;
  white-space: nowrap;
}

/* === Блок цен — с !important для борьбы с конфликтами === */
.form__price {
  background: #f9f9f9 !important;
  padding: 9px !important;
  border-radius: 10px !important;
  border: 1px dashed #c5d7e0 !important;
  margin-bottom: 10px !important;
  box-sizing: border-box !important;
  width: 100% !important;
}

.form__price-new {
  font-size: 18px !important;        /* Увеличили для акцента */
  color: #24384e !important;
  font-weight: 700 !important;
  margin: 0 0 4px 0 !important;
  line-height: 1.3 !important;
  display: block !important;
}

.form__price-new .price_main {
  font-size: 22px !important;        /* Главная цена — крупная */
  color: #d2ada5 !important;
  font-weight: 800 !important;
  letter-spacing: -0.5px !important;
}

.form__price-old {
  font-size: 12px !important;
  color: #888 !important;
  margin: 4px 0 0 0 !important;
  padding: 0 !important;
  line-height: 1.3 !important;
  display: block !important;
}

.form__price-old .price_old {
  text-decoration: line-through !important;
  font-weight: 500 !important;
  color: #888 !important;
  font-size: 12px !important;
}

/* Поля ввода */
.form__label {
  position: relative;
  width: 100%;
}

.form__field {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #c5d7e0;
  border-radius: 8px;
  font-size: 15px;
  transition: 0.3s;
  box-sizing: border-box;
  line-height: 1.4;
}

.form__field:focus {
  border-color: #d2ada5;
  outline: none;
  box-shadow: 0 0 0 2px rgba(210, 173, 165, 0.2);
}

.form__field::placeholder {
  color: #999;
  font-size: 14px;
}

/* Кнопка — увеличена по высоте и отступу сверху */
.form__btn {
  background: #d2ada5;
  color: white;
  font-weight: 700;
  font-size: 16px;
  padding: 16px 12px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  text-transform: uppercase;
  transition: 0.3s;
  margin-top: 14px; /* Увеличенный отступ перед кнопкой */
  width: 100%;
  display: block;
  letter-spacing: 0.8px;
  box-shadow: 0 3px 8px rgba(210, 173, 165, 0.2);
}

.form__btn:hover {
  background: #c59c98;
  transform: translateY(-1px);
}

/* Таймер */
.form__time {
  text-align: center;
  margin-top: 10px;
  padding-top: 7px;
  border-top: 1px solid #eee;
  color: #24384e;
  font-size: 13px;
}

.form__time-title {
  font-size: 13px;
  margin-bottom: 4px;
  color: #24384e;
}

.form__time-box {
  display: flex;
  justify-content: center;
  gap: 3px;
  font-weight: 700;
  font-size: 14px;
}

.form__time-count {
  display: flex;
  align-items: center;
  gap: 2px;
}

.form__time-count span:first-child {
  color: #d2ada5;
  min-width: 26px;
  text-align: center;
}

/* === Адаптивность === */
@media (max-width: 768px) {
  .face__box form {
    padding: 12px;
  }

  .form__body {
    gap: 4px;
  }

  .form__price {
    padding: 8px;
    margin-bottom: 9px;
  }

  .form__price-new .price_main {
    font-size: 17px;
  }

  .form__field {
    padding: 8px 12px;
    font-size: 14px;
  }

  .form__btn {
    font-size: 15px;
    padding: 14px 12px;
    margin-top: 12px;
  }

  .form__time-title {
    font-size: 12px;
  }

  .form__time-box {
    font-size: 13px;
    gap: 2px;
  }
}

@media (max-width: 576px) {
  .form__head p {
    font-size: 13px;
  }

  .form__discont {
    font-size: 14px;
    padding: 4px 8px;
  }

  .form__price-new {
    font-size: 15px;
  }

  .form__price-new .price_main {
    font-size: 16px;
  }

  .form__price-old {
    font-size: 12px;
  }

  .form__btn {
    font-size: 15px;
    padding: 14px 12px;
    margin-top: 12px;
    letter-spacing: 0.5px;
  }
}





/* === Страница contatti — изолированные стили === */
.eudalie-contact-section {
  padding: 60px 20px 80px;
  background: #f8f9fa; /* фон как на других секциях */
}

.eudalie-contact-section .eudalie-content-wrapper {
  max-width: 900px;
  margin: 0 auto; /* Добавьте эту строку */
}

.eudalie-contact-section .eudalie-main-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a3a5f;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.3;
}

.eudalie-contact-description {
  font-size: 18px;
  color: #444;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.eudalie-contact-block {
  max-width: 800px;
  margin: 0 auto;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-family: 'Roboto', sans-serif;
}

.eudalie-contact-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  text-align: center;
}

.eudalie-contact-entry {
  flex: 1 1 250px;
  min-width: 200px;
}

.eudalie-contact-symbol {
  font-size: 24px;
  margin-bottom: 12px;
}

.eudalie-contact-entry h3 {
  font-size: 18px;
  font-weight: 600;
  color: #1a3a5f;
  margin: 0 0 8px;
}

.eudalie-contact-entry p {
  margin: 0;
  color: #444;
  font-size: 16px;
}

.eudalie-contact-entry a {
  color: #1a3a5f;
  text-decoration: none;
}

.eudalie-contact-entry a:hover {
  text-decoration: underline;
}

.eudalie-operating-hours {
  margin: 4px 0 0;
  color: #666;
  font-size: 14px;
}

.eudalie-contact-footer-note {
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid #eee;
  text-align: center;
}

.eudalie-contact-footer-note p {
  font-size: 16px;
  color: #555;
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .eudalie-contact-section {
    padding: 40px 15px 60px;
  }
  .eudalie-contact-block {
    padding: 20px 15px;
  }
  .eudalie-contact-entry {
    flex: 1 1 100%;
  }
}


/* === Страницы legal (privacy, cookies) === */
.eudalie-legal-section {
  padding: 60px 20px 80px;
}

.eudalie-legal-content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  line-height: 1.7;
  color: #333;
  font-size: 16px;
}

.eudalie-legal-heading {
  font-size: 32px;
  font-weight: 700;
  color: #1a3a5f;
  margin-bottom: 30px;
  text-align: center;
}

.eudalie-cookie-policy-block {
  margin-bottom: 28px;
}

.eudalie-cookie-policy-block h2 {
  font-size: 22px;
  font-weight: 700;
  color: #1a3a5f;
  margin: 0 0 16px;
}

.eudalie-cookie-policy-block p {
  margin: 0 0 14px;
}

.eudalie-cookie-policy-block ul,
.eudalie-cookie-policy-block ol {
  margin: 0 0 16px 0;
  padding-left: 24px;
}

.eudalie-cookie-policy-block li {
  margin-bottom: 8px;
}

.eudalie-last-revised {
  font-style: italic;
  color: #666;
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

/* Адаптивность */
@media (max-width: 768px) {
  .eudalie-legal-content-wrapper {
    padding: 25px 20px;
    font-size: 15px;
  }

  .eudalie-legal-heading {
    font-size: 26px;
  }

  .eudalie-cookie-policy-block h2 {
    font-size: 20px;
  }
}




/* === Блог === */
.eudalie-blog-index {
  padding: 60px 20px 80px;
}

.eudalie-page-heading {
  font-size: 36px;
  font-weight: 700;
  color: #1a3a5f;
  text-align: center;
  margin-bottom: 40px;
}

.eudalie-article-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 32px;
  margin-bottom: 40px;
}

.eudalie-blog-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.eudalie-blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.eudalie-card-title {
  font-size: 22px;
  font-weight: 700;
  color: #1a3a5f;
  margin: 0 0 12px;
}

.eudalie-card-title a {
  color: inherit;
  text-decoration: none;
}

.eudalie-card-title a:hover {
  text-decoration: underline;
}

.eudalie-card-date {
  color: #666;
  font-size: 15px;
  margin: 0 0 14px;
}

.eudalie-card-summary {
  color: #444;
  line-height: 1.6;
  margin: 0 0 16px;
}

.eudalie-read-more-link {
  display: inline-block;
  color: #1a3a5f;
  font-weight: 600;
  text-decoration: none;
  font-size: 16px;
}

.eudalie-read-more-link:hover {
  text-decoration: underline;
}



/* Обертка для контента статьи */
.eudalie-content-wrapper {
  max-width: 800px; /* Оптимальная ширина для чтения */
  margin: 0 auto;
  padding: 40px 20px;
}

/* Страница статьи */
.eudalie-blog-article h1 {
  font-size: 32px;
  color: #1a3a5f;
  margin-bottom: 16px;
}

.eudalie-article-date {
  color: #666;
  font-size: 16px;
  margin-bottom: 24px;
}

.eudalie-blog-article p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #444;
}

/* Адаптивность */
@media (max-width: 768px) {
  .eudalie-article-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .eudalie-page-heading {
    font-size: 28px;
  }
  .eudalie-content-wrapper {
    padding: 30px 15px;
  }
  .eudalie-blog-article h1 {
    font-size: 28px;
  }
}


/* === Футер === */
.eudalie-site-footer {
  padding: 40px 20px;
  background: #f8f9fa;
  margin-top: 60px;
  font-family: 'Roboto', sans-serif;
}

.eudalie-footer-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.eudalie-footer-navigation {
  margin-bottom: 20px;
}

.eudalie-footer-links-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  font-size: 15px;
}

.eudalie-footer-link-item {
  margin: 0;
}

.eudalie-footer-anchor {
  text-decoration: none;
  color: #1a3a5f;
  font-weight: 500;
}

.eudalie-footer-anchor:hover {
  text-decoration: underline;
}

.eudalie-copyright-notice {
  color: #666;
  font-size: 14px;
  margin: 0;
}



/* === Хедер (меню) — уникальные стили под каждый сайт === */
.eudalie-main-navigation {
  padding: 16px 0;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.eudalie-header-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.eudalie-header-links-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  text-align: center;
}

.eudalie-header-link-item {
  margin: 0;
  padding: 0;
}

.eudalie-header-anchor {
  text-decoration: none;
  color: #1a3a5f;
  font-weight: 600;
  font-size: 17px;
  white-space: nowrap;
  line-height: 1.4;
}

.eudalie-header-anchor:hover {
  text-decoration: underline;
}

.hreflang-section {
  width: 100%;
  margin: 15px 0;
}
.hreflang-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  justify-content: center;
}
.hreflang-list li a {
  padding: 4px 8px;
  border: 1px solid #ddd;
  border-radius: 4px;
  text-decoration: none;
  color: #666;
  font-size: 14px;
}
.hreflang-list li.active a {
  background: #000;
  color: #fff;
  border-color: #000;
  font-weight: bold;
}