* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Roboto, sans-serif;
}
body {
  background: #fef4e8;
  color: #333;
  font-size: 20px;
}
li {
  display: block;
  padding: 10px;
}
h2 {
  margin-bottom: 20px;
}
.container {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}
.section {
  max-width: 800px;
  padding-top: 50px;
  text-align: center;
}
header {
  background-color: #1a2e3e;
  color: #fff;
}
.header {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header img {
  width: 64px;
}
.header .title {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: baseline;
}
.header .title .name {
  font-size: 2rem;
  font-weight: bold;
}
.header .title .copyright {
  position: relative;
  bottom: 2px;
}
.hero {
  background-color: #1a2e3e;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  color: #fff;
  padding: 0 50px 30px;
}
.hero h1 {
  font-size: 2.5rem;
}
.hero img {
  height: 500px;
}
.hero .content {
  flex: 1;
  text-align: center;
}
.hero p {
  margin: 20px 0;
  line-height: 1.5;
}
.plans {
  display: flex;
  flex-direction: row;
}
.plan {
  background: #fff;
  margin: 10px;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 1px 1px 3px gray;
}
.contact {
  padding-bottom: 50px;
}
.btn {
  display: inline-block;
  background-color: #73d2d6;
  color: white;
  text-shadow: 0 0 1px gray;
  padding: 16px 40px;
  text-decoration: none;
  border-radius: 5px;
  text-shadow: 0 0 1px black;
  box-shadow: 0 0 3px black;
  font-size: 20px;
  font-weight: bold;
  font-size: 20px;
  font-weight: bold;
}
footer {
  text-align: center;
  padding: 20px;
  background-color: #1a2e3e;
  color: white;
  font-size: 16px;
}
@media (max-width: 768px) {
  .hero h1 {
      font-size: 2rem;
  }
  .plans {
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .header .title {
    gap: 0;
  }
  .hero .container {
    flex-wrap: wrap-reverse;
  }
}
