:root {
  --beige: #FCEBD5;
  --coral: #EB6E62;
  --yellow: #F7B363;
  --sky: #91CFE4;
  --green: #3CAEA3;
  --flax: #F4E285;
  --blue: #20639B;
  --darkblue: #173f5f;
  --black: #010000;
  --mint: #F7FFF6;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Karla", sans-serif;
  font-optical-sizing: auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--black);
}

section {
  width: 100%;
  padding: 4rem 0;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

.header {
  height: 80px;
  background: var(--coral);
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-weight: bold;
  font-size: 1.5rem;
}

.logo-section {
  background: var(--beige);
  text-align: center;
  padding-bottom: 0.5rem;
  padding-top: 2.5rem;
}

.logo-section img {
  max-width: 240px;
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

.content-section {
  background: var(--yellow);
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

.address-section {
  background: var(--sky);
  text-align: center;
  font-size: 1.5rem;
  line-height: 0.5rem;
}

.map-section{
  background: var(--green);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 4rem 1rem;
}

.map-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.osm-map {
  width: 100%;
  max-width: 430px;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.google-link {
  display: inline-block;
  background: var(--yellow);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.18s;
  font-size: 1rem;
  margin-top: 1rem;
}

.google-link:hover {
  background: var(--blue);
}

.footer {
  width: 100%;
  text-align: center;
  background: var(--blue);
  font-size: 0.99rem;
  padding: 2rem 0 1rem;
  color: white;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 1rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.6;
  pointer-events: none;
  cursor: default;
}

.footer-copy {
  font-size: 0.93rem;
  opacity: 0.5;
}