.banner {
  position: relative;
  width: 100%;
  height: 300px;
  background-image: url('https://via.placeholder.com/1500x300');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  padding: 10px;
  border-radius: 10px;
  margin: 100px 0;
}

.banner h1 {
  font-size: 28px;
  margin-bottom: 10px;
  color: #aa1628;
  font-family: iranyekan;
}

.banner p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #6a818c;
  line-height: 42px;
}




/* بنر موبایل */
@media (max-width: 768px) {
  .banner h1 {
    font-size: 24px;
  }

  .banner p {
    font-size: 16px;
    text-align: justify;
  }
}