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

body {
  color: #111;
  background: #fff;
}

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

h1, h2 {
  margin-bottom: 20px;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.btn--primary {
  background: #2563eb;
  color: #fff;
}

.btn--outline {
  border: 2px solid #2563eb;
  color: #2563eb;
}

.header {
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero {
  padding: 80px 0;
  background: #f7f9fc;
  text-align: center;
}

.hero__subtitle {
  margin-bottom: 30px;
  color: #555;
}

.forwho {
  padding: 60px 0;
}

.forwho ul li {
  margin-bottom: 10px;
}

.author {
  padding: 80px 0;
  background-color: #f7f9fc;
}

.author h2 {
  text-align: center;
  margin-bottom: 50px;
}

.author__content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.author__photo img {
  width: 220px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.author__info h3 {
  margin-bottom: 20px;
}

.author__info p {
  margin-bottom: 16px;
  line-height: 1.6;
}

.author__accent {
  font-weight: 600;
}

.author__disclaimer {
  font-size: 14px;
  color: #666;
  margin-top: 20px;
}


.reviews {
  padding: 80px 0;
  background-color: #ffffff;
}

.reviews h2 {
  text-align: center;
  margin-bottom: 50px;
}

.reviews__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.review {
  padding: 30px;
  border-radius: 16px;
  background-color: #f7f9fc;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.review__text {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.review__author {
  font-size: 14px;
  color: #666;
}

.review__name {
  font-weight: 600;
  color: #000;
}

.review__city {
  display: block;
}


.preview {
  padding: 80px 0;
  background-color: #f7f9fc;
}

.preview h2 {
  text-align: center;
  margin-bottom: 10px;
}

.preview__subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 50px;
}

.preview__gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.preview__item img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.preview__item img:hover {
  transform: scale(1.03);
}


.price {
  padding: 80px 0;
}

.price__box {
  background: #f7f9fc;
  padding: 40px;
  border-radius: 20px;
  text-align: center;
}

.price__old {
  text-decoration: line-through;
  color: #999;
}

.price__current span {
  font-size: 28px;
  font-weight: bold;
}

.faq {
  padding: 80px 0;
  background-color: #ffffff;
}

.faq h2 {
  text-align: center;
  margin-bottom: 50px;
}

.faq__item {
  max-width: 800px;
  margin: 0 auto 30px;
}

.faq__item h3 {
  margin-bottom: 10px;
}

.faq__item p {
  color: #555;
  line-height: 1.6;
}

