* {
  box-sizing: border-box;
}
body {
  margin: 0;
  font-family: "PT Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  font-style: normal;
  background-color: #ffd539;
  color: #000;
}
.wrapper {
  margin: 0 auto;
  max-width: 1000px;
}
.head {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: center;
  padding: 60px 0;
}
header .header {
  max-width: 400px;
  text-align: center;
}
header h1 {
  text-align: left;
  font-size: 52px;
  font-weight: 700;
  margin: 0;
}
header p.subtitle {
  font-size: 30px;
  font-weight: 500;
  margin: 10px 0;
  text-align: justify;
}
header .evakuator {
  background: url(evakuator.png) no-repeat center center;
  height: 246px;
  width: 100%;
}
.call-button {
  display: block;
  text-decoration: none;
  background: rgba(255,255,255,.0);
  color: #000;
  border: 2px solid #000;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 20px;
  font-family: "Huninn", sans-serif;
  font-size: 18px;
  font-weight: 600;
  transition: background-color 0.3s ease, color 0.3s ease;
  width: 100%;
}
.call-button:hover {
  background: #fff;
}
.phone-number {
  font-size: 24px;
  font-weight: bold;
  color: #000;
  margin-top: 15px;
}
.section_title {
  font-size: 28px;
  font-weight: 600;
  text-align: center;
  font-family: "Huninn", sans-serif;
  margin: 0;
  margin-bottom: 50px;
}
.section_title::after {
  content: "";
  display: block;
  height: 2px;
  width: 80px;
  background-color: #ffd539;
  margin: 10px auto;
}
.section_title.white::after {
  background-color: #ffffff;
}
section.advantages {
  background-color: #fff;
  padding: 50px 0;
}
section .advantages__icon {
  border-radius: 50px;
  height: 100px;
  width: 100px;
  border: 3px solid #ffd539;
  font-size: 50px;
  color: #000;
}
section .advantages__advantage {
  text-align: center;
  flex: 1;
  gap: 20px;
}
section .advantages__title {
  color: #000;
  font-size: 20px;
  font-weight: 600;
  font-family: "Huninn", sans-serif;
}
section.about {
  padding: 40px 0;
}
section.about img {
  font-size: 18px;
  border-radius: 4px;
  max-width: 400px;
  height: 100%;
  box-shadow: 0px 0px 5px #dbb220;
}
section.about .text {
  background-color: rgba(255,255,255,.7);
  padding: 30px;
  border-radius: 4px;
  box-shadow: 0px 0px 5px #dbb220;
}
section.feedbacks {
  background-color: #fff;
  padding: 30px 0;
}
section.feedbacks img {
  width: 60px;
  height: 60px;
  box-shadow: 0px 0px 5px #dbb220;
  border-radius: 30px;
}
section.feedbacks .feedback__item {
  padding: 10px;
  margin: 10px;
}
section.feedbacks .text {
  position: relative;
  padding: 20px;
  min-height: 180px;
  margin: 10px 0;
  background-color: rgba(255,213,57,.8);
  border-radius: 20px;
  border-end-end-radius: 0;
  font-style: italic;
  font-size: 17px;
}
section.feedbacks .text .text-icon {
  position: absolute;
  right: 10px;
  bottom: 0px;
  font-size: 50px;
  color: rgba(255,255,255,.5)
}
section.feedbacks .name {
  font-family: "Huninn", sans-serif;
  font-size: 18px;
  font-weight: 600;
}
section.feedbacks .location {
  font-size: 14px;
  color: #838383;
  text-align: right;
}
section.feedbacks .slick-prev:before, section.feedbacks .slick-next:before {
  color: #ffd539;
}
section.pricing {
  background-color: #ffffff;
  padding: 30px 0;
}

.scrollable-table {
  overflow-x: scroll;
  white-space: nowrap
}

.evacuation-prices {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.evacuation-prices tr {
  transition: background-color 0.3s ease, color 0.3s ease;
}

.evacuation-prices tr:hover {
  background-color: #ffde65;
}

.evacuation-prices th,
.evacuation-prices td {
  border: 1px solid #ffd539;
  padding: 10px 12px;
  text-align: left;
}

.evacuation-prices th {
  background-color: #ffd539;
}

.payment-info h3 {
  margin-top: 20px;
  font-size: 20px;
}

.payment-info ul {
  list-style-type: disc;
  padding-left: 20px;
}
.features {
  padding: 20px;
}
.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 18px;
}
.features li::before {
  display: inline-block;
  background: url(https://img.icons8.com/ios-filled/20/checkmark.png) no-repeat center center;
  content: '';
  width: 20px;
  height: 20px;
  margin-right: 10px;
  color: black;
  font-weight: bold;
}
.services {
  padding: 30px 20px;
}
.services h2 {
  font-size: 24px;
  margin-bottom: 20px;
  text-align: center;
}
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 20px;
}
.service {
  background-color: rgba(255,255,255,.8);
  border: 2px solid #000;
  padding: 20px;
  text-align: center;
  border-radius: 10px;
}
.service img {
  width: 50px;
  height: 50px;
  margin-bottom: 10px;
}
.service p {
  font-size: 16px;
}
.cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  background-color: #000;
  color: #fff;
  padding: 30px 20px;
  text-align: center;
}
.cta h3 {
  font-size: 42px;
  font-weight: 700;
  margin: 0;
  color: #ffd539;
}
.cta a {
  display: block;
  background-color: #ffd539;
  border: none;
  padding: 10px 20px;
  font-size: 22px;
  font-weight: 500;
  cursor: pointer;
  color: #000;
  border-radius: 10px;
  text-decoration: none;
}

/* Responsive */
@media (max-width: 900px) {
  .head {
    display: block;
    text-align: center;
  }
  header .header {
    max-width: none;
    margin: 0 auto;
  }
  header h1 {
    text-align: center;
    font-size: 32px;
  }
  header h1 br {
    display: none;
  }
  header p.subtitle {
    text-align: center;
    font-size: 24px;
  }
  header .evakuator {
    background-size: contain;
  }
  .call-button {
    padding: 16px 20px;
    margin: 0 20px;
    width: auto;
    display: block;
  }
  .phone-number {
    font-size: 20px;
  }
  .features ul {
    font-size: 16px;
  }
  .service-grid {
    grid-template-columns: 1fr;
  }
  .service img {
    width: 40px;
    height: 40px;
  }
  .cta {
    flex-direction: column;
  }
  .cta h3 {
    font-size: 20px;
  }
  .cta a {
    font-size: 16px;
  }
  section.about .flex-row,
  section.advantages .flex-row {
    display: block;
    padding: 20px;
  }
  section.about img {
    max-width: 100%;
  }
  section.advantages {
    padding: 30px 0;
  }
  section.advantages .advantages__advantage {
    margin-bottom: 40px;
  }
  section.pricing .wrapper {
    padding: 0 20px;
  }
}


.flex-row {
  display: flex;
  flex-direction: row;
}
.flex-col {
  display: flex;
  flex-direction: column;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.items-center {
  align-items: center;
}
.gap {
  gap: 0.5rem;
}
.gap-1 {
  gap: 1rem;
}
.gap-2 {
  gap: 2rem;
}
