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

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;

  font-family: "Poppins", sans-serif;
  background: #ffffff;
  color: #000000;
}

body {
  overflow-x: hidden;
}


a {
  text-decoration: none;
  color: inherit;
}



.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.15s ease;
}

.btn--primary {
  background-color: #006655;
  color: #ffffff;
}

.btn__arrow {
  font-size: 18px;
  line-height: 1;
}

.btn__icon {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

button {
  border: none;
  outline: none;
  background: none;
}

button:focus {
  outline: none;
  box-shadow: none;
}

/* Section visibility management for SPA */
.section-hidden {
  display: none !important;
}
