body {
  background-color: rgb(238, 106, 44);
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

main {
  max-width: 1200px;
  margin: auto;
  background-color: white;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
  background-color: rgb(75, 15, 113);
}

.logo {
  width: 125px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: bold;
}


.intro-text,
.action,
.stories {
  text-align: center;
  padding: 60px 20px;
}

.intro-text h1,
.intro-text h2 {
  margin-bottom: 20px;
}


.page-intro {
  text-align: center;
  padding: 100px 20px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(images/adobestock_225442477-1200x800.webp);
  background-size: cover;
  background-position: center;
  color: white;
}


.cta,
.action-buttons a {
  display: inline-block;
  background: black;
  color: white;
  text-decoration: none;
  padding: 12px 25px;
  font-weight: bold;
  transition: opacity 0.3s;
}

.cta:hover,
.action-buttons a:hover {
  opacity: 0.8;
}

.action-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}


.content-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  padding: 40px 20px;
}

.card,
.story {
  background: #f5f5f5;
  padding: 30px;
  border-radius: 8px;
  color: black;
}

.story {
  border-left: 5px solid black;
  text-align: left;
}

.story-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  padding: 20px;
}


@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
  }

  .nav-container {
    flex-direction: column;
    gap: 20px;
  }
}