.jj-about-section,
.jj-about-section * {
  box-sizing: border-box;
}

.jj-about-section {
  background: #fffdf9;
  padding: 42px 5%;
  font-family: inherit;
  color: #082b17;
}

.jj-story {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  align-items: center;
  margin-bottom: 45px;
}

.jj-story-text span,
.jj-exist-content span {
  display: block;
  color: #e94b12;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.jj-story-text h2,
.jj-exist-content h2 {
  margin: 0 0 20px;
  font-size: 38px;
  line-height: 1.2;
  color: #082b17;
}

.jj-story-text p,
.jj-exist-content p {
  margin: 0 0 14px;
  font-size: 15px;
  line-height: 1.75;
  color: #111827;
}

.jj-buttons {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.jj-buttons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.jj-btn-primary {
  background: #e94b12;
  color: #fff !important;
  border: 1px solid #e94b12;
}

.jj-btn-outline {
  border: 1px solid #082b17;
  color: #082b17 !important;
  background: transparent;
}

.jj-btn-icon {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.35s ease, fill 0.35s ease, stroke 0.35s ease;
}

.jj-heart-icon {
  fill: currentColor;
}

.jj-buttons a:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(8, 43, 23, 0.14);
}

.jj-btn-primary:hover .jj-heart-icon {
  transform: scale(1.18) rotate(-8deg);
}

.jj-btn-outline:hover {
  background: #082b17;
  color: #fff !important;
}

.jj-btn-outline:hover .jj-program-icon {
  transform: translateX(5px) rotate(4deg);
}

.jj-story-image,
.jj-exist-image {
  overflow: hidden;
  border-radius: 18px;
}

.jj-story-image img,
.jj-exist-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.jj-story-image:hover img,
.jj-exist-image:hover img {
  transform: scale(1.05);
}

.jj-mvv-box,
.jj-exist-box {
  background: #fffaf4;
  border: 1px solid #f1c9b5;
  border-radius: 12px;
  padding: 34px 40px;
  margin-bottom: 42px;
}

.jj-title-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 32px;
}

.jj-title-line span {
  width: 270px;
  height: 1px;
  background: #efb99f;
}

.jj-title-line h2 {
  margin: 0;
  font-size: 30px;
  color: #082b17;
  text-align: center;
}

.jj-mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.jj-mvv-card {
  text-align: center;
  padding: 10px 42px;
  border-right: 1px solid #efb99f;
  transition: 0.35s ease;
}

.jj-mvv-card:last-child {
  border-right: none;
}

.jj-mvv-card:hover {
  transform: translateY(-7px);
}

.jj-icon,
.jj-step-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 16px;
  border-radius: 50%;
  border: 1px solid #ef8c60;
  background: #fffdf9;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.jj-icon svg,
.jj-step-icon svg,
.jj-mini-grid svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #e94b12;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: 0.35s ease;
}

.jj-mvv-card:hover .jj-icon,
.jj-step:hover .jj-step-icon {
  background: #e94b12;
  transform: scale(1.08);
}

.jj-mvv-card:hover .jj-icon svg,
.jj-step:hover .jj-step-icon svg {
  stroke: #fff;
}

.jj-mvv-card h3 {
  margin: 0 0 12px;
  font-size: 24px;
  color: #082b17;
}

.jj-mvv-card p,
.jj-mvv-card li {
  font-size: 14px;
  line-height: 1.65;
  color: #111827;
}

.jj-mvv-card ul {
  display: inline-block;
  margin: 0;
  padding-left: 18px;
  text-align: left;
}

.jj-mini-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 26px;
}

.jj-mini-grid div {
  text-align: center;
  padding: 0 14px;
  border-right: 1px solid #efb99f;
  transition: 0.35s ease;
}

.jj-mini-grid div:last-child {
  border-right: none;
}

.jj-mini-grid div:hover {
  transform: translateY(-6px);
}

.jj-mini-grid svg {
  width: 34px;
  height: 34px;
  margin-bottom: 8px;
}

.jj-mini-grid b {
  display: block;
  font-size: 13px;
  color: #082b17;
  margin-bottom: 5px;
}

.jj-mini-grid small {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  color: #111827;
}

@media (max-width: 1100px) {
  .jj-story,
  .jj-exist-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .jj-mvv-grid {
    grid-template-columns: 1fr;
  }

  .jj-mvv-card {
    border-right: none;
    border-bottom: 1px solid #efb99f;
    padding: 28px;
  }

  .jj-mvv-card:last-child {
    border-bottom: none;
  }

  .jj-timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .jj-title-line span {
    width: 100px;
  }
}

@media (max-width: 767px) {
  .jj-about-section {
    padding: 32px 18px;
  }

  .jj-story-text h2,
  .jj-exist-content h2 {
    font-size: 30px;
  }

  .jj-story-image img,
  .jj-exist-image img {
    height: 260px;
  }

  .jj-mvv-box,
  .jj-exist-box {
    padding: 24px 18px;
  }

  .jj-title-line {
    gap: 10px;
  }

  .jj-title-line span {
    width: 40px;
  }

  .jj-title-line h2 {
    font-size: 23px;
  }

  .jj-timeline {
    grid-template-columns: 1fr;
  }

  .jj-mini-grid div {
    border-right: none;
    border-bottom: 1px solid #efb99f;
    padding-bottom: 16px;
  }

  .jj-mini-grid div:nth-last-child(-n+2) {
    border-bottom: none;
  }

  .jj-buttons a {
    width: 100%;
  }
}
