body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  color: #333;
  background-color: #e0f7fa;
}
header {
  background-color: #ff4081;
  color: white;
  padding: 10px 0;
  text-align: center;
}
header .title h1 {
  margin: 0;
  display: inline-block;
}
header .phone {
  display: inline-block;
  margin-left: 20px;
  font-weight: bold;
  font-size: 1.2em;
}
nav {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
nav button {
  background-color: #ff80ab;
  border: 2px solid #ff4081;
  color: white;
  padding: 10px 20px;
  margin: 5px;
  cursor: pointer;
  font-size: 16px;
  border-radius: 5px;
}
nav button:hover {
  background-color: #ff4081;
}
.main-image {
  width: 400px;
  height: 400px;
  display: block;
  margin: 0 auto;
}
.intro {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.intro-text {
  max-width: 600px;
  padding: 20px;
}
.map {
  margin: 20px 0;
}
footer {
  background-color: #ff4081;
  color: white;
  text-align: center;
  padding: 10px 0;
  bottom: 0;
  width: 100%;
}
  header .phone a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 5px;
  }
  header .phone {
    display: inline-block;
    margin-left: 0;
    font-weight: bold;
    font-size: 1.5em;
    background: #FF0000;
    padding: 5px 10px;
    border-radius: 100px;
  }
@media (max-width: 768px) {
  nav {
    flex-direction: column;
  }
  .main-image {
    width: 100%;
    height: auto;
  }
  .intro {
    flex-direction: column;
  }
  .fixed_phone {
    position: fixed;
    background: #000;
    top: 0;
    padding: 5px 0 10px;
  }
  header .phone {
    display: inline-block;
    margin-left: 0;
    font-weight: bold;
    font-size: 1.5em;
    background: #FF0000;
    padding: 5px 10px;
    border-radius: 100px;
  }
  header .phone a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    line-height: 1;
    gap: 5px;
  }
  header .phone a span {
    font-size: 34px;
    line-height: 1;
  }
  header .title h1 {
    margin: 0;
    display: inline-block;
    font-size: 1.5em;
  }
  nav {
    margin-top: 95px;
  }
}