    * {
        margin: 0;
        padding: 0;
        font-family: Arial, sans-serif;
    }

    nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: #23393D;
        padding: 20px 55px;
        position: sticky;
        top: 0;
        z-index: 10;
    }

    .logo {
        font-size: 28px;
        font-weight: bold;
        color: white;
        text-decoration: none;
    }

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

    .nav-links li {
        margin-left: 20px;

    }

    .nav-links a {
        color: white;
        text-decoration: none;
        font-size: 20px;
        transition: 0.3s;
          transition: color 0.3s ease, text-decoration 0.3s ease;

    }

    .nav-links a:hover {
        color: #f1c40f;
        text-decoration: underline;
    }


    .hero {
        position: relative;
        width: 100%;
        height: 450px;
        overflow: hidden;
    }

    .banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    /* Text overlay */
    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: white;
        text-align: center;
        background: rgba(0, 0, 0, 0.4);
        padding: 20px 40px;
        border-radius: 10px;
    }

    .hero-content h1 {
        font-size: 3rem;
        margin: 0;
    }

    .hero-content p {
        font-size: 1.2rem;
        margin-top: 10px;
    }

    .btn {
        background:transparent;
        color: #fff;
        border: 2px solid #d4ac0d;
        padding: 10px 10px;
        border-radius: 25px;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .btn:hover {
        background-color: #d4ac0d;
        transform: scale(1.1);
        color: #fff;
    }

    /* Benefits Section */
.benefits {
  background: #fff;
  padding: 60px 20px;
  text-align: center;
}

.benefits h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #222;
}

.benefits ul {
  list-style: none;
  padding: 0;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

.benefits li {
  font-size: 18px;
  margin: 15px 0;
  padding-left: 10px;
  border-left: 4px solid #f1c40f;
}

/* Newsletter Section */
.newsletter {
  background: #23393D;
  text-align: center;
  padding: 60px 20px;
}

.newsletter h2 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #fff;
}

.newsletter p {
  margin-bottom: 20px;
  font-size: 16px;
  color: #fff       ;
}

.newsletter form {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;

}

.newsletter input {
  padding: 10px 15px;
  font-size: 16px;
  border: 2px solid #ccc;
  border-radius: 25px;
  outline: none;
  min-width: 250px;
  
}

.newsletter button {
  padding: 10px 10px;
  background: transparent;
  border: 2px solid #d4ac0d;
  border-radius: 25px;
  font-size: 16px;
  cursor: pointer;
  transition: 0.3s ease;
  color: #fff;
  font-weight: bold;
}

.newsletter button:hover {
  transform: scale(1.1);
  background: #d4ac0d;
  color: #fff;
}

.read-btn {
  display: inline-block;
  margin: 0 15px 20px;
  padding: 10px 18px;
  background: #f1c40f;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
  border-radius: 25px;
  transition: 0.3s ease;
}

.read-btn:hover {
  background: #d4ac0d;
  transform: scale(1.05);
}

/* Cards Section */
.cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 70px 50px;
  background: #f9f9f9;
}

.card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  min-height: 420px; /* Ensures equal height */
}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
}

.card h3 {
  font-size: 22px;
  margin-bottom: 10px;
  color: #23393D;
}

.card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 20px;
}

.card .read-btn {
  align-self: center;
  margin: 20px;
}

/* Hover Effects */
.card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Intro Section */
.intro {
  background: #f9f9f9;   /* light background to separate from hero */
  padding: 80px 60px;
  text-align: center;
}

.intro h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #23393D;
}

.intro p {
  font-size: 18px;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Featured Section */
.featured {
  background: #fff;
  padding: 80px 60px;
  text-align: center;
}

.featured h2 {
  font-size: 34px;
  margin-bottom: 40px;
  color: #23393D;
  position: relative;
}

.featured h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: #f1c40f;
  margin: 15px auto 0;
  border-radius: 2px;
}

/* Footer */
footer {
  background: #23393D;
  color: #fff;
  text-align: center;
  padding: 25px 15px;
  font-size: 14px;
  margin-top: 0;      
}

footer p {
  margin: 0;
  line-height: 1.6;
}

footer p span {
  color: #f1c40f;
  font-weight: bold;
}

@media (max-width: 768px) {
  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 15px;
  }

  .nav-links li {
    margin: 10px 0;
  }
}



















