body {
  font-family: "DM Sans", sans-serif;
  margin: 0;
  padding: 0;
  color: #333;
  background: #f9f9f9;
}
html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 100px;
  background: white;
  border-bottom: 1px solid #eee;
}

.header__logo {
  font-size: 1.5rem;
  font-weight: 700;
}
.reviews {
  padding: 50px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.reviews__title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #333;
}

.reviews__container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.review-card {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  max-width: 350px;
  padding: 20px;
  text-align: left;
}

.review-card__content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.review-card__text {
  font-size: 1rem;
  color: #555;
}

.review-card__author {
  display: flex;
  align-items: center;
  gap: 15px;
}

.review-card__image {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ddd;
}

.review-card__name {
  font-size: 1.2rem;
  font-weight: bold;
  color: #333;
}

.review-card__details {
  font-size: 0.9rem;
  color: #777;
}

.header__nav {
  display: flex;
  gap: 40px;
}

.header__link {
  font-size: 1rem;
  font-weight: 500;
}

.header__cta {
  background: #ff5722;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
}
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: auto;
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: rgb(0, 0, 0);
  pointer-events: none;
}

.hero__title {
  font-weight: 700;
  margin-bottom: 20px;
}

.hero__button {
  background: #6200ea;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
  pointer-events: auto;
}

.directions {
  padding: 50px 100px;
  background: white;
}

.directions__title {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 30px;
}

.directions__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.photo {
  width: 100%;
}

.directions__item {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.directions__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.directions__item:hover .directions__image {
  transform: scale(1.1);
}

.directions__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.6);
  color: white;
  font-size: 1rem;
  font-weight: 500;
  text-align: center;
  padding: 10px 0;
  transition: background 0.3s ease;
}

.directions__item:hover .directions__caption {
  background: rgba(0, 0, 0, 0.8);
}

.pricing {
  text-align: center;
  padding: 50px 100px;
  background: white;
}

.pricing__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 40px;
}

.pricing__cards {
  display: flex;
  gap: 30px;
  justify-content: center;
}

.pricing__card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  width: 250px;
  text-align: center;
}

.pricing__card--highlight {
  border: 2px solid #ff5722;
}

.pricing__plan {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing__price {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.pricing__features {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-bottom: 20px;
}

.pricing__features li {
  font-size: 1rem;
  margin: 5px 0;
}

#phone-button {
  background: none;
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  border: none;
  color: #6c757d;
  text-decoration: none;
  cursor: pointer;
}
.news-section {
  max-width: 1200px;
  margin: 0 auto;
  height: 600px;
  padding: 20px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.news-title {
  font-size: 24px;
  font-weight: bold;
}

.news-all-link {
  font-size: 16px;
  text-decoration: none;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 5px 15px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.news-all-link:hover {
  background-color: #007bff;
  color: #fff;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.news-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.news-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-card__date {
  display: flex;
  align-items: center;
  padding: 10px;
  font-size: 14px;
  color: #555;
}

.news-card__date-icon {
  margin-right: 5px;
}

.news-card__title {
  font-size: 18px;
  font-weight: bold;
  margin: 10px;
  flex-grow: 1;
}

.news-card__link {
  text-decoration: none;
  font-size: 16px;
  text-align: center;
  margin: 10px;
  color: #007bff;
  border: 1px solid #007bff;
  padding: 10px;
  border-radius: 5px;
  transition: background-color 0.3s;
}

.news-card__link:hover {
  background-color: #007bff;
  color: #fff;
}

.pricing__button {
  background: #6200ea;
  color: white;
  padding: 15px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
}
.footer {
  background-color: #f0f6ff;
  padding: 40px;
}

.footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
}

.footer__column {
  flex: 1;
  margin-right: 20px;
}

.footer__column--application {
  flex: 0 0 auto;
}

.footer__title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 20px;
  color: #2a2a2a;
}

.footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__item {
  margin-bottom: 10px;
  color: #6c757d;
}

.footer__link {
  text-decoration: none;
  color: #6c757d;
}
.hero__button:hover {
  background: #3700b3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: 0.6s;
}

.footer__link:hover {
  text-decoration: underline;
  color: #2a2a2a;
}

.footer__button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  text-align: center;
}
.map-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.hero__iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  margin-left: 10px;
}
.burger span {
  display: block;
  height: 4px;
  width: 100%;
  background: #333;
  border-radius: 2px;
  margin: 5px 0;
  transition: 0.3s;
}

.burger.active span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.burger.active span:nth-child(2) {
  opacity: 0;
}
.burger.active span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

@media (max-width: 900px) {
  .burger {
    display: flex;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: -70vw;
    width: 70vw;
    max-width: 320px;
    height: 100vh;
    background: #fff;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 24px 24px 24px;
    box-shadow: -2px 0 16px rgba(0, 0, 0, 0.08);
    transition: right 0.3s;
    z-index: 1001;
  }
  .header__nav.open {
    right: 0;
  }
  .header__link {
    width: 100%;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    font-size: 1.1rem;
  }
  .header {
    flex-wrap: wrap;
    padding: 10px 10px;
  }
}

.burger-menu-backdrop {
  display: none;
}
.burger-menu-backdrop.active {
  display: block;
  position: fixed;
  z-index: 1000;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
}

.footer__button:hover {
  background-color: #0056b3;
}
@media (max-width: 480px) {
  body {
    padding: 0 5px;
  }

  .header {
    padding: 10px 5px;
    gap: 10px;
  }

  .header__logo {
    font-size: 1.1rem;
  }

  .header__link {
    padding: 6px 0;
    font-size: 0.95rem;
  }

  .header__cta {
    width: 100%;
    text-align: center;
    font-size: 1rem;
    margin-top: 5px;
    padding: 10px 0;
  }

  .hero {
    flex-direction: column;
    min-height: 350px;
    height: auto;
    padding: 10px 0;
  }

  .hero__title {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }

  .hero__button {
    font-size: 0.95rem;
    padding: 10px 20px;
  }

  .directions {
    padding: 10px 0;
  }

  .directions__title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .directions__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .directions__caption {
    font-size: 0.95rem;
    padding: 7px 0;
  }

  .news-section {
    padding: 10px 0;
    height: auto;
  }

  .news-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .news-title {
    font-size: 1.1rem;
  }

  .news-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .news-card__image {
    height: 140px;
  }

  .news-card__title {
    font-size: 1rem;
    margin: 8px;
  }

  .news-card__link {
    font-size: 0.95rem;
    padding: 8px;
    margin: 8px;
  }

  .reviews {
    padding: 20px 5px;
  }

  .reviews__title {
    font-size: 1.2rem;
    margin-bottom: 15px;
  }

  .reviews__container {
    flex-direction: column;
    gap: 12px;
  }

  .review-card {
    max-width: 100%;
    padding: 12px;
  }

  .review-card__text {
    font-size: 0.95rem;
  }

  .review-card__image {
    width: 40px;
    height: 40px;
  }

  .footer {
    padding: 10px 0;
  }

  .footer__container {
    flex-direction: column;
    gap: 10px;
    padding: 0 5px;
  }

  .footer__column {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .footer__title {
    font-size: 1rem;
    margin-bottom: 10px;
  }

  .footer__button {
    width: 100%;
    padding: 10px 0;
    font-size: 1rem;
  }
}
