.container {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

/* درباره ما */
.about-section {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  color: #777;
  margin-bottom: 30px;
  margin-top: 30px;
  font-size: 1.8rem;
}

.about-text {
  font-size: 0.9rem;
  color: #666;
  text-align: justify;
  direction: rtl;
}

/* بخش شعار */
.slogan-section {
  margin-bottom: 40px;
}

.slogan-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.slogan-text h3 {
  color: #264d80;
  margin-bottom: 10px;
  direction: rtl;
}

.slogan-text p {
  font-size: 0.85rem;
  color: #555;
  direction: rtl;
}

.logo-placeholder img {
  width: 120px;
}

/* نقشه */
.map-section {
  height: 300px;
  background: url("map-bg.jpg") center/cover; /* تصویر نقشه را اینجا قرار دهید */
  position: relative;
  border-radius: 8px;
  margin-bottom: 30px;
  background-color: #e0e0e0; /* برای زمانی که عکس لود نشود */
  display: flex;
  justify-content: center;
  align-items: center;
}

.map-overlay {
  background: rgba(255, 255, 255, 0.8);
  padding: 10px 25px;
  border-radius: 5px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

/* فرم و اطلاعات */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  text-align: right;
  outline: none;
}

.contact-form button {
  width: 100%;
  padding: 12px;
  background-color: #264d80;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-info {
  display: flex;
  
  flex-direction: column;
  justify-content: space-around;
  padding-top: 10px;
}

.info-item {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  /*justify-content: flex-end;*/
  margin-bottom: 20px;
  font-size: 0.9rem;
  color: #333;
}

/* آیکون‌ها (نمادین) */
/*.info-item::after {*/
/*  content: "";*/
/*  width: 20px;*/
/*  height: 20px;*/
/*  background-color: #264d80;*/
/*  margin-right: 15px;*/
/*  border-radius: 50%;*/
/*  gap: 10px;*/
/*}*/

/* واکنش‌گرایی برای موبایل */
@media (max-width: 768px) {
  .contact-grid,
  .slogan-content {
    grid-template-columns: 1fr;
    flex-direction: column-reverse;
    text-align: center;
  }

  .info-item {
    justify-content: center;
  }
}
