@charset "UTF-8";
.tab6Area {
  display: flex;
  flex-direction: column;
  width: 90%;
  margin: 20px auto;
}
.tab6Area span {
  color: #707070;
  font-weight: 400;
}
.tab6Area h2 {
  margin: 0;
  color: #8a39a5;
  font-size: 2rem;
}

.tab5Content {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  width: 90%;
  gap: 5px;
  margin: auto;
  background-color: #E9E7EC;
  /* Üst ve yan kenarlar düz, alt kenar eğik */
  color: #000;
  box-sizing: border-box;
  /* Padding ve border eklenmesini sağlar */
  margin-bottom: 40px;
}
.tab5Content p {
  color: #707070;
  font-weight: 500;
}
.tab5Content span {
  width: 100%;
  text-align: center;
}
.tab5Content span a {
  text-decoration: none;
  color: white;
  font-weight: 600;
  font-size: 18px;
  margin-top: 30px;
  transition: color 0.3s ease;
  text-align: center;
  background-color: #8a39a5;
  padding: 10px 20px;
  border-radius: 5px;
}
.tab5Content span a:hover {
  background-color: #ec6608;
}