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

body {
  font-family: Arial, sans-serif;
  background-color: #fff;
  color: #222;
  text-align: center;
}

header {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  padding: 1rem 0;
}

.header-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0 1rem;
}

.logo {
  width: 100px;
  flex-shrink: 0;
  max-width: 120px;
  height: auto;
  margin-right: auto;
}

/* === Navigation === */
nav {
  flex: 1;
  max-width: calc(100% - 100px);
  text-align: center;
}

nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  padding: 0;
  margin: 0.5rem auto;
  list-style: none;
}

nav ul li {
  flex-shrink: 1;
}

nav ul li a {
  display: block;
  font-family: Arial Black, sans-serif;
  font-size: clamp(9px, 1.5vw, 16px);
  font-weight: bold;
  color: #000000;
  padding: 6px 8px;
  white-space: nowrap;
  text-decoration: none;
  transition: all 0.3s ease;
}

nav ul li a:hover {
  background-color: #01497b;
  color: #ffffff;
  border-radius: 5px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.social-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
}

.social-nav li img {
  width: 20px;
  height: 20px;
}

/* === Hamburger & Mobile Nav === */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  margin-left: auto;
}

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

.mobile-nav {
  display: none;
  flex-direction: column;
  background-color: #fff;
  padding: 1rem;
  position: absolute;
  top: 60px;
  right: 0;
  width: 200px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  z-index: 1000;
}

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

.mobile-nav a {
  padding: 10px 0;
  font-size: 14px;
  color: #846099;
  font-family: Arial Black, sans-serif;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: #fff;
  background-color: #01497b;
  padding-left: 10px;
}

@media (max-width: 768px) {
  nav ul {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    max-width: 100px;
  }
}

/* === Banner & Sections === */
.banner {
  width: 100%;
  max-width: 1200px;
  margin: 2rem auto;
  display: block;
  height: auto;
}

.about-section,
.container {
  max-width: 960px;
  margin: 2rem auto;
  padding: 0 20px;
  text-align: left;
}

h1, h2 {
  text-align: center;
  margin-bottom: 1rem;
}

p, ul {
  font-size: 1em;
  line-height: 1.6;
  color: #444;
}

ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.section {
  margin-top: 2rem;
}

/* === Tables === */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
}

table, th, td {
  border: 1px solid #ddd;
}

th, td {
  padding: 12px;
  text-align: left;
}

th {
  background-color: #f0f0f0;
}

/* === Footer === */
footer {
  font-size: 14px;
  margin: 2rem 0;
  color: #000;
  text-align: center;
}

/* === Contact Form === */
.contact-form {
  max-width: 600px;
  margin: 2rem auto;
  padding: 1rem;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
}

.contact-form button[type="submit"] {
  background-color: #846099;
  color: #fff;
  border: none;
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
}

.contact-form button[type="submit"]:hover {
  background-color: #01497b;
}

/* === PDF Download Link === */
.pdf-link a {
  text-decoration: none;
  font-weight: bold;
  color: #846099;
}

.pdf-link a:hover {
  text-decoration: underline;
  color: #01497b;
}

/* === Social Media Links === */
.ig-link,
.fb-link,
.li-link {
  padding: 0;
  background: none;
  display: inline-block;
}

.ig-link:hover,
.fb-link:hover,
.li-link:hover {
  background: none !important;
  color: inherit !important;
}

.ig-link img,
.fb-link img,
.li-link img {
  width: 20px;
  height: 20px;
  vertical-align: middle;
  transition: none;
}

.ig-link:hover img,
.fb-link:hover img,
.li-link:hover img {
  opacity: 1 !important;
  filter: none !important;
}

a {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

p {
  line-height: 1;
}

/* === Google Translate === */
.translate-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1000;
}

body .goog-te-combo {
  font-size: 14px !important;
}

/* === HEADER LAYOUT FIXES === */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem;
  position: relative;
}

.logo {
  max-width: 130px;
  height: auto;
  margin-right: auto;
}

/* NAVIGATION */

.desktop-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-nav,
.social-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0;
}

.main-nav li,
.social-nav li {
  display: inline-flex;
  align-items: center;
}

/* TRANSLATE DROPDOWN */

.translate-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  height: 3px;
  background: #000;
  margin: 4px 0;
  width: 25px;
}

/* MOBILE NAV */

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 1rem;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 999;
  border-top: 1px solid #ccc;
}

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

/* RESPONSIVE BEHAVIOR */

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .translate-wrapper {
    position: static;
    margin-top: 1rem;
    text-align: center;
  }
}

/* OPTIONAL: Shrink Google Translate font */
body .goog-te-combo {
  font-size: 14px !important;
}

/* === HEADER LAYOUT FIXES (UPDATED FOR ICON SIZE + MOBILE) === */

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1rem;
  position: relative;
}

.logo {
  max-width: 130px;
  height: auto;
  margin-right: auto;
}

/* NAVIGATION */

.desktop-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-nav,
.social-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0.25rem 0;
}

.main-nav li,
.social-nav li {
  display: inline-flex;
  align-items: center;
}

.social-nav img,
.mobile-nav img {
  width: 20px;
  height: 20px;
}

/* TRANSLATE DROPDOWN */

.translate-wrapper {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
}

/* HAMBURGER */

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 10px;
}

.hamburger span {
  height: 3px;
  background: #000;
  margin: 4px 0;
  width: 25px;
}

/* MOBILE NAV */

.mobile-nav {
  display: none;
  flex-direction: column;
  align-items: center;
  background-color: white;
  padding: 1rem;
  position: absolute;
  top: 60px;
  left: 0;
  width: 100%;
  z-index: 999;
  border-top: 1px solid #ccc;
}

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

.mobile-nav a {
  margin: 0.25rem 0;
  text-align: center;
}

/* RESPONSIVE BEHAVIOR */

@media (max-width: 768px) {
  .desktop-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .translate-wrapper {
    position: static;
    margin-top: 1rem;
    text-align: center;
  }
}

/* Optional: Adjust Google Translate dropdown size */
body .goog-te-combo {
  font-size: 14px !important;
}


