 <style>
    body {
      font-family: "Poppins", sans-serif;
      margin: 0;
      background: linear-gradient(135deg, #eef2f3, #dfe9f3);
      color: #333;
      line-height: 1.8;
    }

    header {
      background: linear-gradient(135deg, #007bff, #00b4d8);
      color: #fff;
      padding: 40px 20px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
      border-bottom-left-radius: 50% 10%;
      border-bottom-right-radius: 50% 10%;
    }

    header h1 {
      font-size: 2.4em;
      margin: 0;
      text-shadow: 1px 2px 6px rgba(0, 0, 0, 0.2);
    }

    /* ✅ Navbar Styling Fixed */
    nav {
      background: #005f99;
    }

    nav ul {
      list-style: none;
      margin: 0;
      padding: 0;
      display: flex;
      justify-content: center;
      gap: 20px;
    }

    nav ul li {
      position: relative;
    }

    nav a {
      color: white;
      text-decoration: none;
      font-weight: 600;
      padding: 12px 18px;
      display: block;
      border-radius: 5px;
      transition: background 0.3s;
    }

    nav a:hover {
      background: #00b4d8;
    }

    /* ✅ Dropdown Styling Fixed */
    .dropdown-menu {
      display: none;
      position: absolute;
      background: #0077b6;
      top: 100%;
      left: 0;
      min-width: 220px;
      box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
      border-radius: 6px;
      z-index: 1000;
    }

    .dropdown-menu a {
      padding: 10px 15px;
      color: #fff;
      font-weight: normal;
    }

    .dropdown:hover .dropdown-menu {
      display: block;
    }

   .container {
  display: flex;
  flex-wrap: nowrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  align-items: flex-start;
}

/* Main text content fills remaining space */
.text-content {
  flex: 1;
  padding-right: 30px;
  min-width: 0;
}

    .text-content h2 {
      color: #0077b6;
      border-left: 5px solid #00b4d8;
      padding-left: 12px;
      margin-top: 0;
    }

    .text-content h3 {
      color: #0077b6;
      margin-top: 25px;
    }

    /* ✅ Image fills full height of text section */
.image-section {
  width: 40%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-top: 0;
  position: relative;
  top: 0;
}

.image-section img {
  width: 100%;
  height: auto;
  max-height: calc(100vh - 160px); /* ensures fits under navbar */
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}


    footer {
      text-align: center;
      background: linear-gradient(135deg, #007bff, #00b4d8);
      color: white;
      padding: 15px;
      font-size: 0.9em;
      margin-top: 50px;
      border-top-left-radius: 30px;
      border-top-right-radius: 30px;
    }

    @media (max-width: 900px) {
      .container {
        flex-direction: column;
      }

      .text-content {
        padding-right: 0;
      }

      .image-section {
        margin-top: 30px;
        align-items: center;
      }

      .image-section img {
        height: auto;
        object-fit: contain;
      }

      nav ul {
        flex-direction: column;
        align-items: center;
      }

      .dropdown-menu {
        position: static;
        box-shadow: none;
        background: #006fa6;
      }
    }
  </style>