/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
}

/* Add padding to body to account for fixed navbar */
body {
  font-family: 'Helvetica', sans-serif;
  background-color: #2a323a;
  padding-top: 0; /* Let individual sections handle spacing */
}

/* Call-to-action section */
.cta-section {
  text-align: center;
  margin-top: 3rem;
}

.cta-button {
    background-color: yellow;
    color: #2a2e35;
    border: none;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    font-weight: bold;
}

.cta-button:hover {
  background-color: rgb(128, 255, 54);
  transform: translateY(-2px);
}

/* Location section */
.location-section {
  background-color: #2a323a;
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.location-section h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.location-section p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}


