.about-section {
  background: linear-gradient(to bottom right, #fffaf5, #fef6ef);
  padding: 5rem 1.5rem;
  position: relative;
  overflow: hidden;
}

.container-forus {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: 3rem;
  text-align: center;
  color: var(--primary);
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.6s ease;
}

.highlight {
  color: #d2691e;
  background: linear-gradient(to right, #d2691e, #ffb347);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about-intro {
  font-size: 1.2rem;
  max-width: 700px;
  text-align: center;
  margin: 0 auto 2rem;
  color: var(--dark);
  line-height: 1.8;
  animation: fadeInUp 0.8s ease;
}

.about-block {
  margin-bottom: 3rem;
  text-align: center;
  animation: fadeInUp 0.9s ease;
}

.section-title {
  font-size: 1.9rem;
  margin-bottom: 1rem;
  color: var(--primary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background-color: var(--accent, #d2691e);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}

.section-text {
  font-size: 1.08rem;
  max-width: 800px;
  margin: 0 auto 1.2rem;
  color: var(--dark);
  line-height: 1.8;
}

.section-text.italic {
  font-style: italic;
  color: var(--primary);
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 колони */
  grid-template-rows: auto auto; /* 2 реда */
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.offer-item {
  background: linear-gradient(145deg, #ffffff, #f3efea);
  padding: 2rem;
  border-radius: 1.2rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
  font-weight: 500;
  color: var(--dark);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.offer-grid .offer-item:nth-child(4) {
  grid-column: 1 / 2;
}

.offer-grid .offer-item:nth-child(5) {
  grid-column: 2 / 3;
}


.offer-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.1);
  background: #fffefc;
}


.cta-center {
  text-align: center;
  margin-top: 3rem;
  animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* IMAGE */
.about-image-section {
  margin: 4rem 0;
  text-align: center;
  animation: fadeInUp 1s ease;
}

.about-image-container {
  display: inline-block;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}

.about-image-container:hover .about-image {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .about-section {
    padding: 3rem 1rem;
  }

  .about-title {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .about-intro {
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0 1rem;
  }

  .section-title {
    font-size: 1.25rem;
  }

  .section-text {
    font-size: 0.95rem;
    padding: 0 1rem;
  }

  .offer-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 0 1rem;
  }

  .offer-item {
    font-size: 0.95rem;
    padding: 0.9rem;
  }

  .offer-item.wide {
    grid-column: span 1;
  }

  .fancy-button {
    width: 100%;
    text-align: center;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
    border-radius: 1.5rem;
  }

  .cta-center {
    margin-top: 2rem;
  }

  .offer-grid .offer-item:nth-child(4) {
    grid-column: 1 / 2;
  }

  .offer-grid .offer-item:nth-child(5) {
    grid-column: 2 / 3;
  }
}

