.intro-section {
  width: 95vw;
  max-width: 95vw;
  margin: 162px auto;
  padding: 32px 0;
  background: #fff;
  border-radius: 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.intro-image img {
  width: 400px;
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.intro-text {
  flex: 1;
  padding: 0 24px;
}
.intro-text h2 {
  color: var(--theme-primary, #ff7d0d);
  margin-bottom: 16px;
  font-size: 2rem;
}
.intro-text p {
  color: #222;
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}
.get-started-btn {
  display: inline-block;
  margin-top: 28px;
  padding: 14px 38px;
  background: var(--theme-primary, #ff7d0d);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  letter-spacing: 0.5px;
}
.get-started-btn:hover {
  background: var(--theme-secondary, #01ae3b);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
@media (max-width: 900px) {
  .intro-section { flex-direction: column; gap: 24px; padding: 20px 0; width: 98vw; max-width: 98vw; margin: 126px auto; }
  .intro-image img { width: 100%; max-width: 340px; }
  .intro-text { padding: 0 8vw; }
  .intro-text h2 { font-size: 1.4rem; }
  .intro-text p { font-size: 1rem; }
} 