@font-face {
  font-family: 'Inter';
  src: url('../fonts/Inter-Regular.woff2') format('woff2'),
       url('../fonts/Inter-Regular.woff') format('woff');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  margin: 0;
  padding: 2rem;
  font-family: 'Inter', sans-serif;
  background-color: #ffffff;
  color: #0098ce;
  line-height: 1.6;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: white;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.logo-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  margin-bottom: 2rem;
}

h1 {
  font-size: 1.5rem;
  font-weight: 600;
}

h2 {
  font-size: 1.2rem;
  font-weight: 600;
}

strong {
  font-weight: 600;
}

.link {
  text-decoration: underline;
}

em {
  padding: 0.7rem 0 0 0;
  font-style: italic;
}



.cols {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.col {
  flex: 1 1 250px;
  min-width: 200px;
}

a {
  color: #0098ce;
  text-decoration: none;
}

p {
  margin: 1.5rem 0 0 0;
}

.wrapper {
  background-color: #f7f7f7;
  padding: 2rem 2rem;
  border-radius: 8px;
  margin-top: 160px;
}

table.opening-hours {
  border-collapse: collapse;
}

table.opening-hours td {
  padding: 0;
  vertical-align: top;
}

table.opening-hours td:first-child {
  width: 75px;
}

.button-termin {
  border: 1px solid #0098ce;
  border-radius: 30px;
  padding: 0.5rem 1rem ;
  margin: 2rem 0;
  background-color: #0098ce;
  color: white;
  
  text-decoration: none; 
  display: inline-block; 
}

.button-termin:hover {
  background-color: white;
  color: #0098ce; 
  transition-duration: 200ms;
}