body {
  font-family: "Noto Sans Kurdish", sans-serif;
  background-color: #fffdf9;
  margin: 0;
  padding: 0;
  direction: rtl;
  color: #333;
}

.world-container {
  padding: 30px;
  max-width: 1000px;
  margin: auto;
  text-align: right;
}

h2, h3 {
  color: #f97316; /* orange */
  margin-bottom: 20px;
}

.map-section {
  position: relative;
  margin-bottom: 30px;
}

.main-map {
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.map-point {
  position: absolute;
  width: 14px;
  height: 14px;
  background-color: #f97316;
  border: 2px solid white;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.map-point:hover {
  transform: scale(1.5);
}

.info-box {
  position: absolute;
  background-color: #fff;
  border: 1px solid #f97316;
  padding: 8px 12px;
  border-radius: 6px;
  font-size: 14px;
  color: #000;
  display: none;
  max-width: 200px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 100;
}

iframe {
  display: block;
  margin: 30px auto;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.25);
}

p {
  line-height: 1.8;
  margin-bottom: 20px;
}

img {
  max-width: 100%;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}