/* 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;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Enhanced Styling */
body {
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom right, #1e1e1e, #2c2c2c);
  color: #f0f0f0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.mobile-container {
  max-width: 1000px;
  margin: auto;
  padding: 24px;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.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-size: 20px;
  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;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.logo-image {
  max-width: 40%;
  margin: 24px auto;
  display: block;
  border-radius: 12px;
  transition: transform .7s ease;
}

.logo-image:hover {
  transform: scale(1.05) rotate(-1deg);
}

.Helvetica10 {
  font-size: 16px;
  line-height: 1.8;
  padding: 20px;
  text-align: justify;
  background-color: #2a2a2a;
  border-radius: 8px;
  box-shadow: inset 0 0 10px rgba(0,0,0,0.2);
}

.site-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  border-top: 1px solid #333;
  margin-top: 40px;
}

.site-footer p {
  margin: 0;
  letter-spacing: 0.5px;
}

/* Responsive Action Tabs */
.action-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin: 24px 0;
}

.cta-button {
  background: linear-gradient(to bottom, #3a3a3a, #000);
  color: #fff;
  padding: 14px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 16px;
  font-weight: bold;
  box-shadow: 0 4px 8px rgba(0,0,0,0.4);
  transition: background 0.3s ease, transform 0.2s ease;
  flex: 1 1 140px;
  text-align: center;
  max-width: 200px;
}

.cta-button:hover {
  background: linear-gradient(to bottom, #555, #111);
  transform: scale(1.05);
}

.map-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 aspect ratio */
  margin: 24px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 12px;
}

/* Responsive Styles */
@media (max-width: 600px) {
  .topnav a {
    font-size: 16px;
    padding: 12px 16px;
  }

  .topnav a.active {
    font-size: 18px;
  }

  .logo-image {
    max-width: 80%;
  }

  .Helvetica10 {
    font-size: 14px;
    padding: 16px;
  }

  .cta-button {
    font-size: 14px;
    padding: 12px 20px;
    max-width: 150px;
  }
}
