body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 0;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.hero-text {
  flex: 1;
  min-width: 280px;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 1.5rem;
  color: #555;
}

.btn {
  display: inline-block;
  background: #243b53;
  color: #fff;
  padding: 0.6rem 1.2rem;
  margin-right: 0.5rem;
  border-radius: 5px;
  text-decoration: none;
  font-size: 0.95rem;
  transition: background 0.3s;
}

.btn:hover {
  background: #1b2e40;
}

.hero img {
  max-width: 350px;
  border-radius: 10px;
}

.two-col {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.two-col div {
  flex: 1;
  min-width: 260px;
}

.two-col h3 {
  margin-bottom: 0.5rem;
}

.story {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 3rem;
}

.story img {
  margin-top: 90px;
  width: 270px;
  border-radius: 10px;
  height: 250px;
  align-self: flex-start;
  object-fit: fill;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  display: block;
}

.story-text {
  flex: 1;
  min-width: 280px;
}

.story-text h3 {
  margin-bottom: 1rem;
}

.cta {
  background: #f0f4f8;
  padding: 2rem;
  text-align: center;
  border-radius: 10px;
}

.cta h2 {
  margin-bottom: 0.5rem;
}

.cta p {
  margin-bottom: 1.5rem;
  color: #555;
}

@media (max-width: 700px) {
  .container {
    width: 98vw;
    padding: 1rem 0.5rem;
  }
  .hero {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .hero-text {
    order: 1;
    width: 100%;
  }
  .hero img {
    order: 2;
    width: 100%;
    max-width: 100%;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .hero-text h1 {
    font-size: 1.3rem;
  }
  .hero img {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .two-col {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .two-col div {
    min-width: 0;
  }
  .story {
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
  }
  .story img {
    max-width: 100%;
    width: 100%;
    border-radius: 8px;
    box-sizing: border-box;
  }
  .story-text {
    min-width: 0;
  }
  .cta {
    padding: 1rem;
    border-radius: 8px;
  }
  .cta h2 {
    font-size: 1.1rem;
  }
  .btn {
    font-size: 1rem;
    padding: 0.7rem 1.2rem;
    margin-bottom: 0.7rem;
    width: 100%;
    box-sizing: border-box;
  }
  .hero img,
  .story img {
    display: none !important;
  }
}
