/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Base typography */
body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: #1d1d1f;
  background-color: #ffffff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

h1, h2, h3, h4 {margin-top: 1rem}
a {
  color: #0071e3;
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  text-decoration: underline;
}

/* Utility */
main {
  min-height: calc(100vh - 5rem);
}

.container {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

.brand {
  font-size: 1rem;
  font-weight: 900;
  color: #d2d2d7;
}

.brand:hover {
  text-decoration: none;
}

header {
  background-color: #111;
  border-bottom: 1px solid #000;
  padding: 0.4rem 1rem;
}

/* Services */
.section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
}

.card {
  flex: 1 1 250px;
  /* width: 100%; */
  border: 1px solid #e0e0e0;
  border-radius: 6px;
  padding: 2rem;
  background-color: #fafafa;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

a.card:hover {
  text-decoration: none;
}

.card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #1d1d1f;
}

.card p {
  font-size: 1rem;
  color: #666666;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.coming-soon {
  cursor: default;
}

/* Footer */
footer {
  /* background-color: #343436; */
  border-top: 1px solid #eee;
  font-size: 0.75rem;
  color: #97979f;
  padding: .5rem 0;
}

.footer-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}

.footer-line p {
  margin: 0;
  color: #6e6e73;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
  justify-content: flex-start;
}

.footer-links a {
  color: #424245;
  text-decoration: none;
  white-space: nowrap;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-links span {
  color: #6e6e73;
  margin: 0 0.25rem;
}

.region-select {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.region-select select {
  border: none;
  background: transparent;
  color: #6e6e73;
  font-size: 0.75rem;
  cursor: pointer;
  padding-right: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

ul {
  padding-left: 1rem;
}
