/* ================= ROOT COLORS ================= */
:root {
  --accent: #22c55e;
  --icon-bg: #fff3d6;
  --text-dark: #0b132b;
  --text-muted: #6b7280;
  --card-bg: #ffffff;
}

/* ================= GENERAL ================= */
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #f8f9fb;
  color: #333;
}

/* ================= HEADER ================= */
.page-header {
  padding: 50px 80px;
  background-color: #0b132b;
  color: white;
}

.page-header h1 {
  font-size: 40px;
  margin-bottom: 12px;
}

.page-header p {
  max-width: 800px;
  line-height: 1.6;
  font-size: 18px;
}

.back-link {
  color: var(--accent);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
  opacity: 0.9;
}

/* ================= STORY ================= */
.about-story {
  padding: 70px 0;
}

.story-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 50px;
}

.story-text {
  flex: 1;
}

/* STORY ICON LABEL */
.story-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.story-heading i {
  width: 28px;
  height: 28px;
  background: var(--icon-bg);
  color: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

.story-text h2 {
  font-size: 32px;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.story-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.story-image {
  flex: 1;
  margin-top: 60px;
}

.story-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0,0,0,0.12);
}

/* ================= FEATURES ================= */
.about-features {
  background: #ffffff;
  padding: 70px 20px;
}

.about-features h2 {
  text-align: center;
  font-size: 32px;
  margin-bottom: 50px;
  color: var(--text-dark);
}

.features-grid {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.feature-card {
  background: var(--card-bg);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

/* FEATURE ICON */
.feature-card i {
  width: 56px;
  height: 56px;
  background: var(--icon-bg);
  color: var(--accent);
  font-size: 24px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-muted);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .story-container {
    flex-direction: column;
  }

  .story-image {
    margin-top: 30px;
  }

  .story-image img {
    height: 260px;
  }
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 32px;
  }

  .story-text h2,
  .about-features h2 {
    font-size: 26px;
  }
}
