body {
  font-family: 'agenda', 'Montserrat', Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f0f0f0;
  color: #111;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

html {
  height: 100%;
}

.header {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  background: #f0f0f0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  box-sizing: border-box;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 480px;
  padding: 1.2rem 1.5rem 0.5rem 1.5rem;
}

.logo {
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: 1px;
  font-family: 'agenda', 'Montserrat', Arial, sans-serif;
  color: #000;
}

.header-icons {
  display: flex;
  gap: 2rem;
}

.header-icons img {
  display: block;
}

.main-content {
  flex: 1;
  margin-top: 5rem;
  padding: 1.5rem 1.2rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  box-sizing: border-box;
}

.footer {
  background: #f0f0f0;
  padding: 1rem 0 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 480px;
  margin: 7rem auto;
  
}

.footer-illustration {
  width: 90%;
  max-width: 600px;
  margin-top: 0;
  margin-bottom: 1rem;
  display: block;
}

.footer-info {
  text-align: center;
  width: 100%;
  max-width: 500px;
}

.footer-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.footer-location {
  color: #d32f2f;
  font-family: 'agenda', 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: 1px;
}

.footer-hours {
  color: #d32f2f;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.footer-address {
  font-size: 1rem;
  color: #111;
  margin-bottom: 1.2rem;
}

.footer-buttons {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  margin-top: 5rem;
  flex-wrap: wrap;
}

.footer-btn {
  background: #d32f2f;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  border-radius: 6px;
  padding: 0.8rem 2.2rem 0.5rem 2.2rem;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.5rem;
  box-shadow: 0 2px 8px rgba(211,47,47,0.08);
  transition: background 0.2s;
  font-family: 'agenda', 'Montserrat', Arial, sans-serif;
  letter-spacing: 1px;
  position: relative;
}

.footer-btn:active {
  background: #b71c1c;
}

.footer-btn-sub {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: #fff;
  margin-top: 0.2rem;
  letter-spacing: 0.5px;
}

@media (max-width: 600px) {
  .main-content {
    padding: 1rem;
    margin-top: 4rem;
  }

  .footer {
    padding: 1.2rem 0 1rem 0;
  }

  .footer-illustration {
    width: 100%;
    max-width: 100vw;
    margin-bottom: 1rem;
  }

  .footer-title {
    font-size: 1.1rem;
  }

  .footer-location {
    font-size: 1.3rem;
  }

  .footer-btn {
    font-size: 1rem;
    padding: 1rem 1.2rem 1rem 1.2rem;
  }

  .footer-info {
    max-width: 98vw;
  }
}



@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInFromTop {
  from { transform: translateY(-50px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

