/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: #1a1a1a;
  background: #f9f9f9;
  line-height: 1.6;
}

section{
  margin-bottom: 10rem;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 50vh;
  overflow: hidden;
  margin-bottom: 10rem;
}

@media (min-width: 768px) {
  .hero {
    height: 60vh;
  }
}

@media (min-width: 1024px) {
  .hero {
    height: 100vh;
  }
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 1rem;
}

/* Grid */
.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

/* Left Image */
.img-box {
  position: relative;
}

.main-img {
  width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Right Content */
.heading {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .heading {
    font-size: 2.5rem;
  }
}

.sub-heading {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.intro {
  font-size: 1.125rem;
  color: #4a4a4a;
  margin-bottom: 2rem;
}

/* Steps */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.step-icon {
  background: #111;
  color: #fff;
  border-radius: 50%;
  padding: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.step-text {
  color: #555;
}
