:root {
  --bg: #f4f7fb;
  --card: #ffffff;
  --text: #111827;
  --muted: #6b7280;
  --border: #e5e7eb;
  --accent: #2563eb;
  --radius: 22px;
  --shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
  --container: 960px;
}

a {
  color: inherit;
  text-decoration: none;
}

.blog {
  max-width: var(--container);
  margin: 3rem auto;
  padding: 20px 20px;

  @media screen and (max-width: 960px) {
    max-width: 100%;
    margin: 2rem auto;
  }
}

.hero-blog {
  margin-bottom: 40px;
  padding: 30px 20px;
  background: var(--bg);
  color: var(--text);
  line-height: 1.75;
}

.hero-image {
  position: relative;
  width: 100%;
}

.hero-image span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  background-color: #6ea8fe;
  font-weight: 500;
  letter-spacing: 2%;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 32px;
  @media screen and (max-width: 768px) {
    font-size: 13px;
    padding: 6px 8px;
    border-radius: 12px;
  }
}

.hero-image-wrapper p {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 5;
}

.hero-blog h1 {
  font-size: 3rem;
  line-height: 1.15;
  margin-bottom: 16px;

  @media screen and (max-width: 768px) {
    font-size: 2rem;
    line-height: 1.3;
  }
}

.category {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.intro {
  opacity: 80%;
  margin-bottom: 24px;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.content {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: var(--shadow);

  @media screen and (max-width: 768px) {
    padding: 20px;
  }
}

.content p {
  margin-bottom: 22px;
  color: #374151;
}

.content h2 {
  font-size: 1.7rem;
  line-height: 1.25;
  margin: 42px 0 18px;
}

.content h3 {
  font-size: 1.3rem;
  margin: 32px 0 16px;
}

.content ul,
.content ol {
  margin-bottom: 24px;
  padding-left: 20px;
}

.content li {
  margin-bottom: 12px;
  color: #374151;
}

.content li::before {
  content: "✔ ";
}
.inline-image {
  margin: 36px 0;
}

.image-box {
  max-width: 520px;
  width: 100%;
  border-radius: 24px;
  display: flex;
  margin: 0 auto;
  overflow: hidden;
}

.image-caption {
  margin-top: 20px;
  opacity: 70%;
  font-size: 14px;
  text-align: center;
}

.quote {
  margin: 36px 0;
  padding: 24px;
  border-left: 4px solid var(--accent);
  background: #eff6ff;
  border-radius: 18px;
}

.quote p {
  margin: 0;
  font-size: 1.05rem;
  color: #1e3a8a;
}

.info-box {
  margin: 36px 0;
  padding: 24px;
  border-radius: 22px;
  background: #111827;
  color: #ffffff;
}

.info-box h3 {
  margin-top: 0;
  margin-bottom: 12px;
  color: #ffffff;
}

.info-box p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}

.faq {
  margin: 3rem auto 2rem auto;
  padding: 20px;
  max-width: var(--container);
  width: 100%;
  display: flex;
  flex-direction: column;
}

.faq-item {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.faq-item:last-child {
  padding-top: 22px;
  padding-bottom: 0;
}

.faq-item h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.faq-item p {
  margin: 0;
}

.cta {
  margin: 0rem auto 4rem auto;
  padding: 32px;
  max-width: 800px;
  width: 100%;
  border-radius: 28px;
  /* background: linear-gradient(135deg, #2563eb, #1d4ed8); */
  background-color: #eff6ff;
  color: white;
  text-align: center;
  @media screen and (max-width: 800px) {
    border-radius: 0;
  }
}

.cta h2 {
  margin-bottom: 14px;
  font-size: 1.8rem;
}

.cta p {
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.85);
  color: #35373b;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  background: #fed4a0;
  color: #35373b;
  font-weight: 700;
  transition: 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
}
