    .intro-block {
      display: flex;
      flex-wrap: wrap;
      background-color: #ffffff;
      border-radius: 10px;
      box-shadow: 0 0 10px rgba(0,0,0,0.05);
      padding: 20px;
      max-width: 1200px;
      margin: auto;
	  margin-bottom: 40px;
    }

    .intro-text {
      flex: 1 1 400px;
      padding: 20px;
    }

    .intro-text .intro-first {
      color: #222;
      font-size: 22px;
      margin-bottom: 10px;
      border-bottom: 2px solid #4ca8db;
      display: inline-block;
	  font-weight: bold;
    }

    .intro-text p {
      color: #444;
      font-size: 16px;
      line-height: 1.5;
    }

    .intro-list {
      list-style: none;
      padding: 0;
      margin-top: 20px;
    }

    .intro-list li {
      display: flex;
      align-items: center;
      margin-bottom: 10px;
      font-size: 16px;
      color: #333;
    }

    .intro-list li::before {
      content: "›";
      color: #ffa500;
      font-weight: bold;
      margin-right: 10px;
      font-size: 20px;
    }

    .intro-image {
      flex: 1 1 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .intro-image img {
      max-width: 100%;
      height: auto;
      border-radius: 10px;
    }

    @media (max-width: 768px) {
      .intro-block {
        flex-direction: column-reverse;
      }

      .intro-text, .intro-image {
        padding: 10px;
      }
    }
.promo-banner {
  width: 100%;
  background-color: #4ca8db; 
  background-image: url('/wp-content/uploads/bg5.png'); 
  background-size: initial;
  background-repeat: repeat;
  background-position: center;
  background-attachment: fixed;
  color: white;
  position: relative;

}

.promo-overlay {
  padding: 60px 20px;
}




.promo-container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

.promo-text {
  flex: 7;
}

.promo-text h2 {
font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.4;
}

.underline {
  width: 80px;
  height: 3px;
  background-color: #ffd17e;
  margin: 10px 0;
}

.promo-text p {
  font-size: 1rem;
  font-weight: 600;
}

.promo-action {
  flex: 3;
  display: flex;
  justify-content: center;
  align-items: center;
}

.promo-button {
  display: inline-block;
  background-color: #ffa500;
  color: white;
  padding: 14px 28px;
  font-weight: bold;
  border-radius: 6px;
  text-decoration: none;
  font-size: 1rem;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}

.promo-button:hover {
  background-color: #ffd17e;
}

/* Responsive */
@media (max-width: 768px) {
  .promo-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .promo-action {
    justify-content: flex-start;
    margin-top: 20px;
  }

  .promo-button {
    width: 100%;
    text-align: center;
  }
}
.seo-text h1, h2, h3, h4, h5{
	margin-bottom:20px !important;
}
.seo-text ul{
	list-style:circle !important;
  margin-left: 30px;
  margin-bottom: 20px;
}