/* Reusable component styles */

/* Buttons */
.buttons_container {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 25px;
  grid-row-gap: 0px;
}

button {
  padding-left: 22px;
  padding-right: 22px;
  height: 62px;
  font-size: 15px;
  max-width: 240px;
  border-radius: 1000px;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  outline: none;
  color: white;
  background: #0ea0da;
  border: none;
  cursor: pointer;
}

.call {
  padding-left: 22px;
  padding-right: 22px;
  height: 62px;
  font-size: 15px;
  border-radius: 1000px;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  outline: none;
  color: white;
  background: #0ea0da;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

#number {
  color: #042733;
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #042733;
}

/* Leistungen (Services) */
.leistungen_container {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 30px;
  grid-row-gap: 50px;
  margin-top: 50px;
}

.leistungen {
  background: #f0f6fa;
  height: 280px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  border-radius: 15px;
}

.leistungen__inner {
  width: 80%;
}

.leistungen_title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
}

.leistungen_text {
  font-size: 13px;
}

/* Contact */
.contact__container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  margin-top: 50px;
}

.contact_item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding: 30px;
  background: #f0f6fa;
  border-radius: 15px;
  height: 200px;
}

.contact_icon {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.contact_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}

.contact_data {
  font-size: 14px;
  line-height: 1.6;
}

/* FAQ */
.faq__container {
  margin-top: 50px;
}

.faq_item {
  background: #f0f6fa;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 20px;
}

.faq_title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #042733;
}

.faq_description {
  font-size: 14px;
  line-height: 1.8;
  color: #042733;
}

/* Footer */
.bottom {
  margin-top: auto;
  padding-top: 50px;
  padding-bottom: 50px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.bottom a {
  margin-left: 50px;
  margin-right: 50px;
}
