* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Arial", sans-serif;
}

/* Header Section */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  padding: 15px 35px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  transition: 0.3s;
}
.btn--blue {
  background-color: #23A6F0;
  color: #FFFFFF;
  border: none;
}
.btn--blue:hover {
  opacity: 0.8;
}
.btn--outline {
  background: transparent;
  color: #23A6F0;
  border: 1px solid #23A6F0;
}
.btn--outline:hover {
  background: #23A6F0;
  color: #FFFFFF;
}
.btn--full {
  width: 100%;
  border-radius: 5px;
  cursor: pointer;
}
.btn--quote {
  padding: 10px 20px;
}
@media (max-width: 768px) {
  .btn--quote {
    display: none;
  }
}

.header {
  position: absolute;
  width: 100%;
  z-index: 10;
  padding: 20px 0;
}
.header .nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .nav .logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}
.header .nav .menu {
  display: flex;
  list-style: none;
  gap: 20px;
}
.header .nav .menu a {
  text-decoration: none;
  color: white;
  font-weight: 600;
}
.header .nav .menu a:hover {
  color: #23A6F0;
}
@media (max-width: 768px) {
  .header .nav .menu {
    display: none;
  }
}

.hero {
  min-height: 100vh;
  background: url("background.png") no-repeat center center/cover;
  display: flex;
  align-items: center;
  padding-top: 100px;
}
.hero__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
@media (max-width: 768px) {
  .hero__content {
    flex-direction: column;
    text-align: center;
    gap: 50px;
  }
}
.hero__text {
  max-width: 500px;
  color: #252B42;
}
.hero__text .hero__title {
  font-size: 58px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: white;
}
@media (max-width: 768px) {
  .hero__text .hero__title {
    font-size: 40px;
  }
}
.hero__text .hero__descr {
  font-size: 20px;
  color: white;
  margin-bottom: 35px;
}
.hero__text .hero__actions {
  display: flex;
  gap: 10px;
}
@media (max-width: 768px) {
  .hero__text .hero__actions {
    justify-content: center;
  }
}
.hero__form-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 10px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.hero__form-card h3 {
  margin-bottom: 30px;
  font-size: 24px;
  color: #252B42;
  text-align: center;
}
.hero__form-card .form-group {
  margin-bottom: 20px;
}
.hero__form-card .form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 10px;
  color: #252B42;
}
.hero__form-card .form-group input, .hero__form-card .form-group select {
  width: 100%;
  padding: 15px;
  background: #F9F9F9;
  border: 1px solid #E6E6E6;
  border-radius: 5px;
  outline: none;
}

/* Section Medicine  */
.medicine {
  padding: 80px 0;
  background-color: #FAFAFA;
}
.medicine__header {
  text-align: center;
  margin-bottom: 80px;
}
.medicine__header .medicine__title {
  font-size: 40px;
  color: #252B42;
  margin-bottom: 10px;
}
.medicine__header .medicine__subtitle {
  color: #737373;
  font-size: 14px;
  line-height: 1.5;
}
.medicine__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .medicine__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
}

.card {
  background: #FFFFFF;
  border: 1px solid #DEDEDE;
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.card__top {
  background-color: #8EC2F2;
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 15px;
}
.card__top .card__icon {
  width: 72px;
  height: 72px;
  background: #FFFFFF;
  border-radius: 50%;
  padding: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
.card__top .card__title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: bold;
}
.card__body {
  padding: 30px;
}
.card__body .card__list {
  list-style: none;
  margin-bottom: 20px;
}
.card__body .card__list li {
  font-size: 14px;
  color: #737373;
  margin-bottom: 15px;
  line-height: 1.4;
}
.card__body .card__link {
  color: #23A6F0;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
}
.card__body .card__link:hover {
  text-decoration: underline;
}

/* Section reviews */
.reviews {
  padding: 100px 0;
  background-color: #FFFFFF;
}
.reviews__header {
  text-align: center;
  margin-bottom: 80px;
}
.reviews__header .reviews__title {
  font-size: 40px;
  color: #252B42;
  margin-bottom: 15px;
}
.reviews__header .reviews__subtitle {
  color: #737373;
  font-size: 14px;
  line-height: 1.6;
}
.reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .reviews__grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

.review-card {
  background: #FFFFFF;
  border: 1px solid #E8E8E8;
  padding: 30px;
  border-radius: 5px;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.review-card__stars {
  display: flex;
  gap: 5px;
  margin-bottom: 20px;
}
.review-card__stars img {
  width: 18px;
  height: 18px;
}
.review-card__text {
  font-size: 14px;
  color: #737373;
  line-height: 1.6;
  margin-bottom: 25px;
  font-weight: 500;
}
.review-card__user .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Section FAq */
.faq {
  padding: 100px 0;
  background-color: #FAFAFA;
}
.faq__header {
  text-align: center;
  margin-bottom: 80px;
}
.faq__header .faq__title {
  font-size: 40px;
  color: #252B42;
  font-weight: 700;
  margin-bottom: 10px;
}
.faq__header .faq__subtitle {
  font-size: 14px;
  color: #737373;
  line-height: 1.5;
}
.faq__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .faq__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

.faq-card {
  background: #FFFFFF;
  padding: 25px;
  border-radius: 10px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.05);
}
.faq-card__icon img {
  width: 10px;
  margin-top: 5px;
}
.faq-card__content .faq-card__question {
  font-size: 16px;
  font-weight: 700;
  color: #252B42;
  margin-bottom: 10px;
  line-height: 1.4;
}
.faq-card__content .faq-card__answer {
  font-size: 14px;
  color: #737373;
  line-height: 1.6;
}

/* Section Pricing */
.pricing {
  padding: 100px 0;
  background-color: #FAFAFA;
}
.pricing__header {
  text-align: center;
  margin-bottom: 80px;
}
.pricing__header .pricing__title {
  font-size: 40px;
  color: #252B42;
  font-weight: 700;
  margin-bottom: 10px;
}
.pricing__header .pricing__subtitle {
  color: #737373;
  font-size: 14px;
}
.pricing__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
@media (max-width: 768px) {
  .pricing__grid {
    flex-direction: column;
    gap: 30px;
  }
}

.price-card {
  background: #FFFFFF;
  border: 1px solid #23A6F0;
  border-radius: 10px;
  padding: 50px 40px;
  text-align: center;
  width: 100%;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.price-card--featured {
  background-color: #252B42;
  color: #FFFFFF;
  padding: 70px 40px;
  border: none;
  z-index: 2;
}
.price-card--featured .price-card__tier, .price-card--featured .price-card__price .value {
  color: #FFFFFF;
}
.price-card--featured .price-card__descr {
  color: #FFFFFF;
}
.price-card--featured .price-card__features li {
  color: #FFFFFF;
}
.price-card__tier {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #252B42;
}
.price-card__descr {
  font-size: 14px;
  color: #737373;
  margin-bottom: 35px;
  font-weight: 700;
  max-width: 160px;
}
.price-card__price {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: #23A6F0;
  margin-bottom: 35px;
}
.price-card__price .value {
  font-size: 40px;
  font-weight: 700;
}
.price-card__price .currency {
  text-align: left;
}
.price-card__price .currency .symbol {
  font-size: 24px;
  font-weight: 700;
  display: block;
  line-height: 1;
}
.price-card__price .currency .period {
  font-size: 12px;
  font-weight: 700;
  color: #8EC2F2;
}
.price-card__features {
  list-style: none;
  text-align: left;
  width: 100%;
  margin-bottom: 35px;
}
.price-card__features li {
  font-size: 14px;
  font-weight: 600;
  color: #252B42;
  margin-bottom: 15px;
  padding-left: 35px;
  position: relative;
}
.price-card__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 25px;
  height: 25px;
  background: url("check") no-repeat center/contain;
}
.price-card__features li.active::before {
  background: url("check") no-repeat center/contain;
}

/* Section get in touch*/
.get-in-touch {
  background-color: #252B42;
  padding: 80px 0;
}
.get-in-touch__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media (max-width: 768px) {
  .get-in-touch__wrapper {
    flex-direction: column;
    text-align: center;
  }
}
.get-in-touch__text {
  color: #FFFFFF;
}
.get-in-touch__text .get-in-touch__title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}
.get-in-touch__text .get-in-touch__descr {
  font-size: 14px;
  line-height: 1.6;
  opacity: 0.8;
}
.get-in-touch__form {
  display: flex;
  width: 100%;
  max-width: 450px;
}
.get-in-touch__form input {
  flex-grow: 1;
  padding: 15px 20px;
  border: 1px solid #E6E6E6;
  border-radius: 5px 0 0 5px;
  outline: none;
  background-color: #F9F9F9;
  font-size: 14px;
}
.get-in-touch__form input::-moz-placeholder {
  color: #737373;
}
.get-in-touch__form input::placeholder {
  color: #737373;
}
.get-in-touch__form button {
  background-color: #23A6F0;
  color: #FFFFFF;
  border: none;
  padding: 15px 25px;
  border-radius: 0 5px 5px 0;
  cursor: pointer;
  font-weight: 600;
  transition: 0.3s;
}
.get-in-touch__form button:hover {
  background-color: rgb(14.2978723404, 139.1659574468, 209.7021276596);
}
@media (max-width: 480px) {
  .get-in-touch__form {
    flex-direction: column;
    gap: 10px;
  }
  .get-in-touch__form input, .get-in-touch__form button {
    border-radius: 5px;
  }
}

/* Footer */
.footer {
  padding-top: 80px;
  background-color: #FFFFFF;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding-bottom: 50px;
}
@media (max-width: 768px) {
  .footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.footer__title {
  font-size: 16px;
  font-weight: 700;
  color: #252B42;
  margin-bottom: 25px;
}
.footer__text {
  font-size: 14px;
  color: #737373;
  line-height: 1.5;
  margin-bottom: 20px;
}
.footer__socials {
  display: flex;
  gap: 20px;
}
@media (max-width: 480px) {
  .footer__socials {
    justify-content: center;
  }
}
.footer__socials img {
  width: 24px;
  transition: 0.3s;
}
.footer__socials img:hover {
  opacity: 0.7;
}
.footer__links {
  list-style: none;
}
.footer__links li {
  margin-bottom: 10px;
}
.footer__links li a {
  text-decoration: none;
  color: #737373;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
}
.footer__links li a:hover {
  color: #23A6F0;
}
.footer__bottom {
  background-color: #FAFAFA;
  padding: 25px 0;
  text-align: center;
}
.footer__bottom p {
  font-size: 14px;
  font-weight: 600;
  color: #737373;
}/*# sourceMappingURL=style.css.map */