/* Genel Stiller */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  overflow-x: hidden;
  font-family: Arial, sans-serif;
}


/* İletişim Sayfası */
.map_contact
{
  position: relative;
  top:180px;
  height: 110rem;
}
.container h3
{
  text-align: center;
  padding-bottom: 50px;
  font-size: 30px;
  color: #06233b;
}
.contact-content {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 600px;
  margin: auto;
  padding: 20px;
}
.communication
{
  display: flex;
  justify-content: center;
  align-items: center;
}
.office-location {
  text-align: center;
  margin: 60px 30px;
}

.icon i {
  font-size: 50px;
  color: #4D4949;
}
.title-contact
{
  font-size: 25px;
}
.map {
  width: 100%;
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  overflow: hidden;
  margin: 20px auto;
}

.map iframe {
  width: 100%;
  height: 400px;
}

.google-form-container {
  width: 100%;
  max-width: 600px;
  margin: 20px auto;
}

.google-form-container iframe {
  width: 100%;
}

/* Responsive Tasarım */
@media (max-width: 768px) {
  .map {
    display: block;
    justify-content: centers;
    width: 350px;
    height: 300px;
  }
  .google-form-container iframe {
    height: 800px;
  }
  .map_contact
  {
    height: 120rem;
  }
  .communication
  {
    display: block;
    justify-content: center;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .map iframe {
    height: 250px;
  }
  .google-form-container iframe {
    height: 350px;
  }
}