/* ===== About Page - Flatsome Style ===== */
.page-about {
  background: #0D0E12;
  color: #FFF3E6;
  overflow-x: hidden;
}

.page-about__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  margin: 0 auto;
}

.page-about__hero-image {
  width: 100%;
  max-width: 1200px;
  margin: 10px auto 20px;
}

.page-about__hero-image-el {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 17/5;
  object-fit: cover;
  border-radius: 12px;
}

.page-about__hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 16px 24px;
}

.page-about__hero-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: #FFF3E6;
}

.page-about__hero-desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  color: #FFF3E6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about__hero-cta {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #0D0E12;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  padding: 12px 36px;
  border-radius: 999px;
  border: 1px solid #A84F0C;
  box-shadow: 0 0 12px rgba(255, 176, 77, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about__hero-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 18px rgba(255, 176, 77, 0.7);
}

.page-about__logo-grid-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
}

.page-about__logo-grid-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
  justify-items: center;
}

.page-about__logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: #17191F;
  border: 1px solid #A84F0C;
  border-radius: 12px;
  padding: 16px;
  width: 100%;
  max-width: 240px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-about__logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 14px rgba(255, 176, 77, 0.2);
}

.page-about__logo-image {
  width: 100%;
  aspect-ratio: 2/1;
  object-fit: contain;
  display: block;
  border-radius: 8px;
}

.page-about__logo-cta {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #0D0E12;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 999px;
  border: 1px solid #A84F0C;
  transition: opacity 0.2s ease;
}

.page-about__logo-cta:hover {
  opacity: 0.9;
}

.page-about__logo-item:nth-child(5) {
  grid-column: 2;
}

.page-about__logo-item:nth-child(6) {
  grid-column: 3;
}

.page-about__guide-section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 16px 48px;
}

.page-about__guide-title {
  text-align: center;
  color: #FFA53A;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}

.page-about__guide-intro {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: center;
}

.page-about__guide-subtitle {
  color: #FFA53A;
  font-weight: 700;
  line-height: 1.4;
  margin: 32px 0 16px;
}

.page-about__guide-figure {
  margin: 16px 0;
}

.page-about__guide-figure-el {
  display: block;
  width: 100%;
  max-width: 800px;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 8px;
  margin: 0 auto;
}

.page-about__guide-list {
  font-size: 16px;
  line-height: 1.7;
  padding-left: 20px;
  margin: 16px 0;
}

.page-about__guide-list li {
  margin-bottom: 8px;
}

.page-about__guide-list a {
  color: #FFA53A;
  text-decoration: underline;
}

.page-about__guide-note {
  font-size: 15px;
  line-height: 1.7;
  background: #17191F;
  border-left: 4px solid #D96800;
  padding: 12px 16px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
}

.page-about__guide-text {
  font-size: 16px;
  line-height: 1.7;
  margin: 12px 0;
}

.page-about__guide-cta {
  text-align: center;
  margin: 32px 0 0;
  font-size: 16px;
}

.page-about__guide-cta a {
  display: inline-block;
  background: linear-gradient(180deg, #FFA53A 0%, #D96800 100%);
  color: #0D0E12;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 32px;
  border-radius: 999px;
  border: 1px solid #A84F0C;
  box-shadow: 0 0 12px rgba(255, 176, 77, 0.4);
}

@media (max-width: 1024px) {
  .page-about__logo-grid-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-about__logo-item:nth-child(5) {
    grid-column: auto;
  }
  .page-about__logo-item:nth-child(6) {
    grid-column: auto;
  }
}

@media (max-width: 768px) {
  .page-about__hero-image-el {
    aspect-ratio: 2/1;
  }

  .page-about__logo-grid-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 10px;
  }

  .page-about__logo-item {
    padding: 10px;
  }

  .page-about__logo-item:nth-child(5),
  .page-about__logo-item:nth-child(6) {
    grid-column: auto;
  }

  .page-about__logo-cta {
    font-size: 13px;
    padding: 8px 16px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-about__hero-cta {
    font-size: 15px;
    padding: 10px 28px;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-about__guide-title {
    font-size: 22px;
  }

  .page-about__guide-figure-el {
    aspect-ratio: 2/1;
    max-width: 100%;
  }

  .page-about img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-about {
    max-width: 100%;
  }
}