body, html {
    margin: 0;
    padding: 0;
    font-family: Urbanist,ui-sans-serif,system-ui,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;
    color: #222;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

html {
  /* background-image: url('/assets/gfx/bg.png'); */
  background-repeat: repeat;
  padding-bottom: 10vh;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #222;
  color: #eee;
  display: none;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  font-size: 0.95rem;
  z-index: 9999;
  box-shadow: 0 -2px 6px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  gap: 1rem;
}

.cookie-banner__text {
  flex: 1 1 auto;
  min-width: 200px;
  max-width: 100%;
}

.cookie-banner__button {
  flex: 0 0 auto;
  background-color: #4c94d7;
  color: white;
  border: none;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
  white-space: nowrap;
}

.cookie-banner__button:hover {
  background-color: #90caf9;
}

.cookie-banner a {
  color: #90caf9;
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-banner__button.deny {
  background-color: #e9e9e9;
  color: #666;
}

.cookie-banner__button.deny:hover {
  background-color: #e2e2e2;
}

@media (prefers-color-scheme: light) {
  .cookie-banner {
    background-color: #f0f0f0;
    color: #333;
  }

  .cookie-banner a {
    color: #0077cc;
  }
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    position: relative;
    z-index: 10;
}
.navbar img {
    max-width: auto;
    max-height: 48px;
}
.navbar button {
    padding: 0.5rem 1rem;
    background-color: #4c94d7;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.navbar button:hover {
    background-color: #059669;
}
header {
    text-align: center;
    padding: 2rem 1rem 1rem;
    z-index: 10;
    position: relative;
    max-width: 70vw;
    margin-left: auto;
    margin-right: auto;
}
header p {
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    color: #5d5d5d;
}
h1 {
    font-weight: 600;
    margin-top: 1rem;
    font-size: 70px;
    font-size: clamp(35px, 6vw, 70px);
    color: #1d1d1d;
}
h1 span.highlight {
    color: #4c94d7;
}
section {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto;
}
section#how-it-works {
  max-width: 90vw !important;
  padding-top: 0px;
  padding-bottom: 4rem;
}
section#how-it-works div.how-it-works-container {
  display: flex; 
  gap: 1.5rem; 
  justify-content: center; 
  flex-wrap: wrap;
  min-width: 90vw;
}
section#how-it-works div.how-it-works-item {
  flex: 0 1 225px; 
  background: #ffffff; 
  border-radius: 12px; 
  padding: 1.25rem; 
  box-shadow: 0 4px 10px rgba(0,0,0,0.05); 
  text-align: left; 
  border-top: 5px solid #2e7d32;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
section#how-it-works div.how-it-works-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}
section#how-it-works div.how-it-works-item h2 {
  margin: 0;
  font-size: 1.1rem; 
  color: #2e7d32;
}
section#how-it-works div.how-it-works-item p {
  margin-top: 0.5rem;
}

.features, .testimonials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.quote {
    background-color: rgba(200,200,200,.25);
    padding: 1.5rem;
    border-top: 5px solid #4c94d7;
    border-radius: 0.5rem;
    font-style: italic;
    margin-top: 7.5vh;
}
.author {
    text-align: right;
    margin-top: 0.5rem;
    font-weight: bold;
    color: #4b5563;
}
.calculator {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.05);
}
input {
    padding: 0.5rem;
    margin: 0.5rem;
    width: 60px;
    text-align: center;
}
.calc-button {
    margin-top: 1rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    font-weight: bold;
    background-color: #10b981;
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.calc-button:hover {
    background-color: #059669;
}
.result {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    font-weight: bold;
    color: #10b981;
    min-height: 2rem;
}
.content {
    position: relative;
    z-index: 10;
}