* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: #fafafa;
  color: #333;
}

header {
  background-color: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  padding: 1rem 2rem;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.logo {
  padding: 0.5rem 0;
}

.highlight-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 2rem;
  background: linear-gradient(90deg, #4E7A78, #3d5c58);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

.nav-links a {
  color: #4E7A78;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #3d5c58;
}

main {
  max-width: 1200px;
  margin: auto;
}

.section {
  padding: 4rem 1.5rem;
}

.alt-bg {
  background-color: #f0f0f0;
}

.card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}
 .step-box {
    background-color: #f0f9ff;
    border: 1.5px solid #80bfff;
    border-radius: 10px;
    padding: 15px 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(128, 191, 255, 0.3);
  }

  .step-box a {
    color: #0077cc;
    text-decoration: none;
    font-weight: 600;
  }

  .step-box a:hover {
    text-decoration: underline;
  }


.flow-image {
  width: 100%;
  max-width: 1000px;
  height: auto;
  border-radius: 10px;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card h2 {
  color: #4E7A78;
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.card p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1rem;
  text-align: justify; /* Added for justified text */
}

.vertical-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  line-height: 1.7;
  color: #333;
  text-align: justify; /* Added for justified text */
}

.grid-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 0.7rem 2rem;
  padding-left: 1.5rem;
  list-style-type: disc;
  text-align: justify; /* Added for justified text */
}

.download-btn {
  display: inline-block;
  background-color: #4E7A78;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
  margin-top: 1rem;
}
 .card h3 {
  color: #4E7A78;
  font-size: 1.6rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.outcomes ul.vertical-list {
  list-style-type: disc;
  padding-left: 1.5rem;
  line-height: 1.7;
  color: #333;
  text-align: justify;
}

.download-btn:hover {
  background-color: #3d5c58;
}

@media (max-width: 768px) {
  .card {
    padding: 2rem 1.2rem;
  }

  .nav-links {
    justify-content: center;
    gap: 1rem;
  }

  .highlight-title {
    font-size: 1.6rem;
    text-align: center;
  }
}

/* CSS */
.scroll-container {
  height: 400px;        /* Increased height */
  width: 800px;         /* Increased width */
  overflow-y: auto;     /* Enable vertical scrolling */
  border: 1px solid #ccc; /* Optional border */
 margin-left: 130px;
}

/* Optional: image styling */
.flow-image {
  display: block;
  max-width: 100%;      /* Ensure image fits inside container horizontally */
}

