* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


body {
  font-family: 'Playfair Display', serif;
  line-height: 1.6;
  background-color: #f9f9f9;
  color: #333;
  padding: 20px;
}

/* Wrapper for content */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header styling */
.header {
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #1e3c72, #2a5298);
  color: #fff;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.header h1 {
  font-size: 2.5rem;
  margin-bottom: 10px;
}

.header h2 {
  font-size: 1.5rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Intro section */
.intro {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 40px;
}

.heroIntro img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.intro p {
  flex: 1;
  min-width: 300px;
  font-size: 1.1rem;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Main content sections */
.point, .middle, div:not(.intro):not(.header):not(.wrapper) {
  margin-bottom: 40px;
}

h2 {
  font-size: 2rem;
  color: #1e3c72;
  margin-bottom: 15px;
  border-bottom: 2px solid #2a5298;
  padding-bottom: 5px;
}

h3 {
  font-size: 1.5rem;
  color: #2a5298;
  margin: 15px 0 10px;
}

p {
  font-size: 1rem;
  margin-bottom: 15px;
}

ul {
  list-style: none;
  padding-left: 20px;
}

ul li {
  position: relative;
  margin-bottom: 10px;
  font-size: 1rem;
}

ul li:before {
  content: "*";
  color: #27ae60;
  position: absolute;
  left: -20px;
}

/* Italicized tips */
i {
  display: block;
  font-style: italic;
  color: #555;
  background: #eef7f2;
  padding: 15px;
  border-left: 4px solid #27ae60;
  border-radius: 5px;
  margin: 15px 0;
}

/* Images */
.textImage img, .eyeRest img {
  width: 100%;
  max-width: 800px;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* Links */
a {
  color: #e67e22;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

a:hover {
  color: #d35400;
  text-decoration: underline;
}

/* HR styling */
hr {
  border: 0;
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background-color: #e67e22;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 25px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  margin: 20px auto;
  display: block;
  max-width: 300px;
}

.cta-button:hover {
  background-color: #d35400;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive design */
@media (max-width: 768px) {
  .header h1 {
      font-size: 2rem;
  }

  .header h2 {
      font-size: 1.2rem;
  }

  .intro {
      flex-direction: column;
      text-align: center;
  }

  .heroIntro img {
      max-width: 100%;
  }

  h2 {
      font-size: 1.8rem;
  }

  h3 {
      font-size: 1.3rem;
  }

  .cta-button {
      font-size: 1.1rem;
      padding: 12px 25px;
  }
}

@media (max-width: 480px) {
  body {
      padding: 10px;
  }

  .header {
      padding: 20px 10px;
  }

  h2 {
      font-size: 1.5rem;
  }

  p, ul li {
      font-size: 0.95rem;
  }

  .cta-button {
      font-size: 1rem;
      padding: 10px 20px;
  }
}
/* Navigation Bar */
.navbar {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  padding: 0px;
  background: #ffffff;
  color: #141414;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}


.nav-menu {
  display: inline-flex;
  list-style: none;
  margin: 10px;
  padding: 0;
}

.nav-item {
  margin-left: 300px;
}

.nav-link {
  color: #0c0c0cd8;
  font-size: 1.1rem;
  font-weight: 800;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #e67e22;
}

/* Hamburger Menu */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  margin: 2px 0;
  transition: all 0.3s ease;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
      display: flex;
  }

  .nav-menu {
      display: none;
      flex-direction: column;
      width: 100%;
      position: absolute;
      top: 80px;
      left: 0;
      background: #1e3c72;
      padding: 20px 0;
      border-radius: 0 0 10px 10px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
      display: flex;
  }

  .nav-item {
      margin: 10px 0;
      text-align: center;
  }

  /* Hamburger Animation */
  .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
  }

  .hamburger.active span:nth-child(2) {
      opacity: 0;
  }

  .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
  }
}

/* Adjust existing header padding to account for navbar */
.header {
  padding: 30px 20px; /* Reduced top padding slightly */
}