/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
}

/* Header */
.site-header {
  background-color: #ffffff;
  border-bottom: 2px solid #292727;
  padding: 10px 0;
}
.banner h3{
    height: 2rem;
}
.container {
  max-width: 1200px;
  margin: 0 35px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
}

/* Logo */
.logo img {
  width: 75px;
  height: 75px;
}
.logon {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 0px;
}
.logon img {
  width: 35px;
  height: 35px;
  cursor: pointer;
  transition: transform 0.3s ease;
}
/* Navigation */
.main-nav ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s ease;
}

.main-nav a:hover {
  color: #6713af; /* Purple hover color */
  text-decoration: underline;
  color: #6713af;
}

/* Banner Section */
.banner {
  text-align: center;
  background-color: #5b2c83; /* Purple strip */
  color: #fff;
  padding: 10px 0;
}

.banner img {
  width: 1345px;
  height: auto;
  min-height: 550px;
}
/* --- Association Info Section (Alternative based on original H3/P tags) --- */
.association-info {
    /* Removed background-color, border-top */
    text-align: center;
    padding: 40px 20px;
}

.association-info h3 {
    /* Targets the main title (MBP IT UNIT HOLDERS ASSOCIATION) */
    color: #000;
    font-size: 2.2em; /* Large and prominent */
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.association-info p {
    /* Targets CIN, PAN, and Location lines */
    color: #333;
    font-size: 1em;
    margin: 5px 0;
    text-align: center;
}

/* Specific adjustment for the location line if needed for spacing */
.association-info p:last-of-type {
    margin-top: 20px;
    letter-spacing: 1px;
}
.dropdown {
    display: none;
    position: absolute;
    top: 65px;
    right: 25px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    width: 200px;
    z-index: 1000;
    overflow: hidden;
  }

  .dropdown a {
    display: block;
    padding: 12px 15px;
    color: #333;
    text-decoration: none;
    font-size: 15px;
  }

  .dropdown a:hover {
    background-color: #f2f2f2;
  }

  .show {
    display: block;
  }

  .divider {
    height: 1px;
    background-color: #ddd;
    margin: 5px 0;
  }
  