/* CSS Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  font-family: Arial, Helvetica, sans-serif;
  background-color: #222;
  color: #f0f0f0;
  margin: 0;
}

/* Container */
.mobile-container {
  max-width: 480px;
  margin: auto;
  background-color: #2f2f2f;
  color: #ffffff;
  border-radius: 10px;
  padding-bottom: 20px;
}

/* Top Navigation (matches Home) */
.topnav {
  background-color: #111;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.topnav a {
  color: #f0f0f0;
  padding: 16px 20px;
  text-decoration: none;
  font-size: 18px;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.topnav a:hover {
  background-color: #333;
  color: #ffd700;
}

.topnav a.active {
  background-color: #000;
  color: #ffd700;
  font-weight: bold;
  letter-spacing: 1px;
}

.topnav a.icon {
  background-color: #333;
  position: absolute;
  right: 0;
  top: 0;
  padding: 16px 20px;
}

.topnav #myLinks {
  display: none;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

/* Content */
.menu-content {
  padding: 16px;
}

.menu-content h2 {
  border-bottom: 2px solid #888;
  padding-bottom: 5px;
  margin-top: 20px;
  margin-bottom: 12px;
  color: #ffcc00;
  font-size: 22px;
}

.menu-content ul {
  list-style: none;
  padding: 0;
}

.menu-content li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.menu-content p {
  margin-bottom: 24px;
  font-size: 15px;
  line-height: 1.6;
}

.Helvetica10 {
  font-family: Arial, Helvetica, adobe-helvetica, Arial Narrow;
  font-size: 13px;
  line-height: 16px;
}

/* Form Styling */
form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

form label {
  font-weight: bold;
  color: #ffcc00;
}

form input,
form textarea {
  padding: 10px;
  border-radius: 6px;
  border: none;
  background-color: #444;
  color: #fff;
  font-size: 16px;
}

form textarea {
  resize: vertical;
}

form button {
  background-color: #ffcc00;
  color: #000;
  padding: 12px;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

form button:hover {
  background-color: #e6b800;
}

/* Logo Image */
.logo-image {
  max-width: 60%;
  margin: 24px auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-image:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.4);
}

/* Footer */
.site-footer {
  background-color: #222;
  color: #eee;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
  border-top: 1px solid #333;
  margin-top: 40px;
}

/* Responsive */
@media screen and (max-width: 600px) {
  .menu-content li {
    flex-direction: column;
    align-items: flex-start;
  }

  .logo-image {
    max-width: 100%;
  }

  form input,
  form textarea {
    font-size: 14px;
  }

  form button {
    font-size: 14px;
    padding: 10px;
  }
}
.required {
  color: red;
}
