body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
}
.banner {
  background-color: #333;
  color: white;
  padding: 20px;
  text-align: center;
}
nav {
  background-color: #444;
  padding: 10px;
  text-align: center;
}
nav a {
  color: white;
  margin: 0 15px;
  text-decoration: none;
  font-weight: bold;
}
.phone-box {
  background-color: #f4f4f4;
  padding: 10px;
  text-align: center;
  font-size: 1.2em;
  margin-bottom: 20px;
}
.content {
  text-align: center;
  margin: 20px;
}
.content img {
  max-width: 100%;
  height: auto;
}
.text-content {
    margin: 20px auto;
    width: 100%;
    max-width: 800px;
    text-align: justify;
}
.banner-photos {
  display: flex;
  flex-direction: row;
  width: 100%;
}
.banner-photos div {
  flex: 1 1 auto;
  display: block;
}
.banner-photos img {
  width: 100%;
  max-width: max-content;
}
.adresses {
  display: flex;
  justify-content: center;
}
.adresses ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.adresses li {
  list-style: none;
}
.adresses li strong {
  display: block;
  background: #ea8e00;
  border-radius: 20px;
  padding: 5px;
}
footer {
background: #000;
    width: auto;
    height: auto;
    padding: 1em;
    display: block;
    margin: 0 auto;
    max-width: 100%;
}
footer p {
        color: white;
    max-width: max-content;
    margin: 0 auto;
}
footer a {
    color: white
}
.ggmaps {
        display: flex;
    gap: 2em;
    justify-content: center;
    width: 100%;
}
.ggmaps div {
    width: 100%;
    margin: 0;
    padding: 0;
    height: auto;
    display: flex;
    box-sizing: border-box;
    flex-direction: column;
}
.ggmaps h2 {
        text-align: center;
    background: #000;
    max-width: max-content;
    margin: 0 auto;
    border-radius: 10px 10px 0 0;
    color: white;
    padding: 5px;
    font-size: 20px;
}
.ggmaps iframe {
        width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
}
@media (max-width: 768px) {
  .text-content {
    width: 95%;
  }
    .adresses {
    display: flex;
    justify-content: center;
    flex-direction: column;
    }
    nav a {
    color: white;
    margin: 0 5px;
}
    .ggmaps div {
    width: 100%;
    margin: 0;
    padding: 0 1em;
    }
    .ggmaps {
    display: flex;
    gap: 2em;
    justify-content: center;
    width: 100%;
    flex-direction: column;
    }
    .adresses ul {
        padding: 0
    }
}