@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --blue: #002e6d;
  --green: #4a9462;
}

.logo {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

body {
  margin-top: 5vw;
  font-family: sans-serif;
  padding: 20px;
}

a {
  color: var(--blue);
}

.info {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

h2 {
  text-align: center;
  color: var(--blue);
  font-size: 50px;
  line-height: 1;
  margin-bottom: 0.5em;
}

h3 {
  color: var(--green);
  font-size: 32px;
  text-align: center;
}

ul {
  list-style: none;
  font-size: 24px;
  margin-top: 0.5em;
  margin-bottom: 1.5em;
}
ul li {
  line-height: 1.4;
  margin-left: 1em;
  position: relative;
}
ul li:before {
  content: "• ";
  color: var(--green);
}

.price {
  text-align: center;
  font-size: 90px;
  font-weight: bold;
  background: var(--green);
  color: #fff;
  margin-bottom: 30px;
}
.price sup {
  font-size: 0.5em;
}

.phone, .email {
  font-size: 36px;
  font-weight: bold;
  text-align: center;
}
