body {
  margin: 0;
  padding: 0;
  background-color: #2b2b2b;
  color: white;
  font-family: Arial, sans-serif;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #1f1f1f;
  padding: 15px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.logo img {
  height: 50px;
}

.menu {
  display: flex;
  gap: 20px;
}

.menu a {
  color: white;
  text-decoration: none;
  padding: 10px 15px;
  background-color: #444;
  border-radius: 5px;
  transition: 0.3s;
}

.menu a:hover {
  background-color: #666;
}

.container {
  max-width: 1000px;
  margin: 40px auto 20px;
  padding: 20px;
  background-color: #3a3a3a;
  border-radius: 10px;
  text-align: center;
}

.widgets {
  display: flex;
  justify-content: space-evenly;
  gap: 20px;
  max-width: 1000px;
  margin: 20px auto;
  flex-wrap: wrap;
}

.widget {
  flex: 1 1 45%;
  background-color: #1f1f1f;
  padding: 10px;
  border-radius: 10px;
}

.follow-us {
  margin: 30px auto;
  text-align: center;
}

.platform-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 10px 0;
}

.platform-links a img {
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.platform-links a img:hover {
  opacity: 0.7;
}

.map {
  margin: 40px auto;
  max-width: 1000px;
  border-radius: 10px;
  overflow: hidden;
}

.contact-section {
  max-width: 1000px;
  margin: 40px auto;
  padding: 20px;
  background-color: #3a3a3a;
  border-radius: 10px;
}

.contact-info {
  text-align: center;
  margin-bottom: 20px;
}

.contact-form iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
}

.site-footer {
  background-color: #1f1f1f;
  color: #ddd;
  padding: 40px 20px 20px;
  font-size: 14px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}
.footer-section {
  flex: 1;
  min-width: 250px;
  margin-bottom: 20px;
}
.footer-section h4 {
  color: white;
  margin-bottom: 10px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social img {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  transition: 0.3s;
}
.footer-social img:hover {
  opacity: 0.7;
}
.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  padding-top: 15px;
  margin-top: 20px;
  font-size: 12px;
  color: #aaa;
}


/* --- Responsive Mobile Styles --- */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu {
    flex-direction: column;
    gap: 10px;
    width: 100%;
  }

  .container,
  .contact-section,
  .map {
    width: 90%;
    margin: 20px auto;
  }

  .widgets {
    flex-direction: column;
    align-items: center;
  }

  .widget {
    max-width: 100%;
    height: auto;
  }

  .platform-links {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
  }

  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-section {
    min-width: auto;
    width: 100%;
  }

  .logo img {
    height: 40px;
  }

  .platform-links a img,
  .footer-social img {
    width: 36px;
    height: 36px;
  }
}
