body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: #f8f8f8;
  color: #333;
  text-align: center;
}

.header {
  background-color: #FFFFFF;
  padding: 20px 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 10px 0;
  box-sizing: border-box;
  max-width: 100%;
  flex-wrap: nowrap;
}

.logo-container a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-ikod,
.logo-tckb,
.logo-valilik {
  max-height: 80px;
  height: auto;
  width: auto;
  object-fit: contain;
}

@media (max-width: 768px) {
  .logo-container {
    justify-content: space-between;
    padding: 10px 20px;
  }

  .logo-container a {
    flex: 1;
  }

  .logo-ikod,
  .logo-tckb,
  .logo-valilik {
    max-height: 60px;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .logo-ikod,
  .logo-tckb,
  .logo-valilik {
    max-height: 50px;
  }
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.icon {
  background-color: #333;
  color: #fff;
  font-size: 24px;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  text-decoration: none;
  box-shadow: 0 4px 6px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.icon:hover {
  transform: scale(1.2);
  color: #fff;
  background-color: #f39c12;
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

.intro {
  margin: 40px 0 20px;
}

.intro h1 {
  font-size: 24px;
  color: #222;
}

.tours {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.tour {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  cursor: pointer;
  transition: transform 0.2s ease;
  width: 180px;
}

.tour:hover {
  transform: scale(1.05);
}

.tour img {
  width: 100%;
  border-radius: 12px 12px 0 0;
}

.tour p {
  margin: 10px 0;
  font-weight: bold;
}

html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.wrapper {
  flex: 1;
}

.footer {
  background-color: #ffffff;
  color: black;
  padding: 30px 20px;
  text-align: center;
}

.footer .contact-info {
  margin-bottom: 15px;
}

.footer h3 {
  margin-bottom: 10px;
  font-size: 1.2em;
}

.footer p {
  margin: 5px 0;
  font-size: 0.95em;
}

.footer .copyright {
  border-top: 1px solid #555;
  margin-top: 15px;
  padding-top: 10px;
  font-size: 0.85em;
  color: #aaa;
}

.contact-info {
  text-align: center;
  margin-bottom: 20px;
}

.contact-info p {
  color: #000000;
  margin: 8px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 16px;
}

.contact-info i {
  color: #f39c12;
  min-width: 20px;
}

.footer {
  background-color: #ffffff;
  padding: 10px 0;
  text-align: center;
  font-size: 14px;
}

.contact-info {
  margin-bottom: 10px;
}

.contact-info h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.contact-info p {
  margin: 4px 0;
  font-size: 14px;
}

.contact-link {
  color: inherit;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}

.contact-link::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: #f39c12;
  transition: width 0.3s ease;
}

.contact-link:hover {
  color: #f39c12;
}

.contact-link:hover::after {
  width: 100%;
}
