body {
  font-family: Arial, sans-serif;
  background-color: #eaf0f1;
  color: #333;
  margin: 0;
  padding: 0;
}
header {
  background-color: #004f8c;
  text-align: center;
  padding: 0;
  box-shadow: none;
}
header h1 {
  margin: 0;
  font-size: 24px;
  color: white;
}
header p {
  font-size: 18px;
  margin-top: 5px;
  color: #d0e1f4;
}
nav {
  display: flex;
  justify-content: center;
  padding: 15px;
  background-color: #004d40;
}
nav a {
  background-color: #00695c;
  color: white;
  padding: 15px 30px;
  margin: 5px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: bold;
  transition: background-color 0.3s;
  font-size: 18px;
}
nav a:hover {
  background-color: #001b3e;
}
.content {
  padding: 30px;
  text-align: center;
}
.content img {
    width: 100%;
    height: auto;
    margin: 20px 0;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    max-width: 500px;
}
footer {
  background-color: #004d3f;
  text-align: center;
  padding: 20px;
  box-shadow: none;
  margin-top: 0;
  color: white;
}
header a {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  line-height: 1;
  gap: 5px;
  background: #FF0000;
  padding: 5px 10px;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  max-width: max-content;
  margin: 0 auto;
}
header a span {
  font-size: 34px;
  line-height: 1;
}
.mail-contact {
  background: #02796b;
  position: sticky;
  bottom: 0;
  padding: 15px;
  z-index: 1;
}
.mail-contact a {
  display: flex;
  background: #FF0000;
  color: white;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 100px;
  max-width: max-content;
  margin: 0 auto;
  padding: 10px;
  font-size: 20px;
  font-weight: 800;
}
iframe {
  width: 100%;
  max-width: 100%;
  display: block
}
.fixed_phone {
    padding: 20px
}
@media (max-width:768px) {
  nav {
    overflow-x: scroll;
    justify-content: flex-start;
    margin-top: 85px;
  }
  .fixed_phone {
    position: fixed;
    background: #00796b;
    top: 0;
    padding: 10px 0 10px;
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    max-width: 100%;
  }
    .content img {
        max-width: 100%
    }
}