/* Body styles */
body {
  background-color: #fffedf;
  font-family: Arial, sans-serif;
  margin-left: 2mm;
}

/* Header styles */
header {
  background-color: #ffdb58;
  text-align: center;
  padding: 30px 0;
  margin-bottom: 30px;
}

header h1 {
  font-size: 36px;
  font-weight: bold;
  margin: 0;
  color: #fff;
}

/* Map styles */
#istanbul-map {
  display: block;
  margin: 0 auto;
  width: 80%;
  height: auto;
  margin-bottom: 30px;
}

/* Main content styles */
main {
  max-width: 800px;
  margin: 0 auto;
}

/* Text content styles */
article {
  background-color: #fff;
  padding: 20px;
}

article h2 {
  font-size: 24px;
  margin-top: 0;
  margin-bottom: 20px;
}

article p {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

/* Table styles */
table {
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 16px;
  width: 80%;
  margin: 0 auto;
}

table, th, td {
  border: 1px solid black;
}

th, td {
  padding: 10px;
  text-align: center;
}

th {
  background-color: #ffdb58;
  border-left: 10px solid white;
}

td {
  background-color: #fff;
  border-left: 10px solid white;
}

tr:nth-child(even) {
  background-color: #f2f2f2;
}

/* Footer styles */
footer {
  background-color: #ffdb58;
  padding: 20px;
  text-align: center;
  color: #fff;
  font-size: 14px;
}

footer p {
  margin: 0;
}