body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #F4292C;
  color: #000;
}

img {
  max-width: 100%;
  height: auto;
}

header {
  background-color: #000;
  text-align: center;
  padding: 5px;
}

header img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  box-shadow: 0 0 15px #F4292C;
  transition: box-shadow 0.3s ease;
}

header img:hover {
  box-shadow: 0 0 35px #529BA4;
}

/* ✅ Hamburger Menu Styles */
nav {
  background:#000;
  color:#fff;
  padding:.5rem 1rem;
  position:relative;
  display:flex;
  justify-content:center;
  align-items:center;
}

nav .menu-toggle {
  cursor:pointer;
  font-size:1.8rem;
  margin:0 auto;
  color:#fff;
}

/* Dropdown overlay with animation */
nav ul {
  list-style:none;
  margin:0;
  padding:0;
  flex-direction:column;
  background:#111;
  text-align:center;

  position:absolute;
  top:100%;     /* sits just below the nav bar */
  left:0;
  width:100%;
  z-index:999;

  /* Animation setup */
  max-height:0;
  overflow:hidden;
  transition:max-height 0.4s ease-out;
}

nav ul.show {
  display:flex;
  max-height:500px; /* enough to fit all links */
}

nav ul li {
  border-top:1px solid #333;
}

nav ul li a {
  display:block;
  padding:.8rem 1rem;
  color:#fff;
  text-decoration:none;
  font-size:1.1rem;
}

nav ul li a:hover {
  background:#F4292C;
  color:#fff;
}

/* ✅ Page Content Styles */
.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 1rem;
}

.section {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  background-color: white;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 0 15px #000;
  transition: box-shadow 0.3s ease;
}

.section:hover {
  box-shadow: 0 0 25px #529BA4;
}

.section img {
  width: 100%;
  height: auto;
  border-radius: 5px;
  margin-right: 0.1rem;
  flex-shrink: 0;
}

.map img {
  width: 90%;
  height: auto;
  border-radius: 6px;
  margin-right: 1rem;
  flex-shrink: 0;
}

.text {
  flex: 1;
  min-width: 200px;
}

h1 {
  font-size: 1.5rem;
  color: #000;
  margin-top: 0;
}

h2 {
  font-size: 1.4rem;
  background-color: #000;
  color: #fff;
  padding: 0.6rem 1.1rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #F4292C;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  margin-top: 8px;
}

h3 {
  color: #333;
  margin-top: 0;
}

h3 a {
  display: inline-block;
  background-color: #0B57D0;
  color: white;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #0B57D0;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

h3 a:hover {
  box-shadow: 0 0 20px #0B57D0;
  transform: scale(1.05);
}

h4 {
  font-size: 1.2rem;
  background-color: #fff;
  color: #000;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #F4292C;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
  margin-top: 5px;
}

ul {
  padding-left: 1rem;
}

.phone {
  font-size: 1.2rem;
  font-weight: bold;
  color: #8B0000;
}

.phone a {
  display: inline-block;
  background-color: #000;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #F4292C;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.phone a:hover {
  box-shadow: 0 0 20px #F4292C;
  color: #F4292C;
  transform: scale(1.05);
}

.phone2 {
  font-weight: bold;
  color: #8B0000;
}

.phone2 a {
  display: inline-block;
  background-color: #F4292C;
  color: #fff;
  padding: 0.6rem 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 0 10px #F4292C;
  transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.phone2 a:hover {
  box-shadow: 0 0 20px #F4292C;
  background-color: #000;
  color: #FFF;
  transform: scale(1.05);
}

footer {
  background-color: #000;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .section {
    flex-direction: column;
  }
}
