* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.6;
  font-family: 'Mulish', sans-serif;
  color: #1c1917;
  background-color: #fafaf9;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 700;
  line-height: 1.3;
}

h1 { font-size: calc(1.6rem + 2.8vw); }
h2 { font-size: calc(1.425rem + 1.1vw); }
h3 { font-size: calc(1.375rem + .8vw); }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.375rem; }
h6 { font-size: 1.125rem; }

p {
  margin-top: 0;
  margin-bottom: 1.25rem;
}

a {
  color: #0f766e;
  text-decoration: none;
  display: inline-block;
  transition: color .2s ease-in-out, opacity .2s ease-in-out;
}

a:hover {
  color: #115e59;
  opacity: 0.9;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  cursor: pointer;
}

input, button, select, textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

.container {
  width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) { .container { max-width: 560px; } }
@media (min-width: 768px) { .container { max-width: 740px; } }
@media (min-width: 992px) { .container { max-width: 980px; } }
@media (min-width: 1200px) { .container { max-width: 1160px; } }
@media (min-width: 1400px) { .container { max-width: 1340px; } }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -1rem;
  margin-left: -1rem;
}

.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: 1rem;
  padding-left: 1rem;
}

.col-6 { flex: 0 0 auto; width: 50%; }
.col-12 { flex: 0 0 auto; width: 100%; }

@media (min-width: 576px) {
  .col-sm-6 { flex: 0 0 auto; width: 50%; }
  .col-sm-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-sm-10 { flex: 0 0 auto; width: 83.333333%; }
}

@media (min-width: 768px) {
  .col-md-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-md-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-md-6 { flex: 0 0 auto; width: 50%; }
  .col-md-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-md-8 { flex: 0 0 auto; width: 66.666667%; }
  .col-md-10 { flex: 0 0 auto; width: 83.333333%; }
}

@media (min-width: 992px) {
  .col-lg-3 { flex: 0 0 auto; width: 25%; }
  .col-lg-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-lg-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-lg-6 { flex: 0 0 auto; width: 50%; }
  .col-lg-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-lg-8 { flex: 0 0 auto; width: 66.666667%; }
}

@media (min-width: 1200px) {
  .col-xl-4 { flex: 0 0 auto; width: 33.333333%; }
  .col-xl-5 { flex: 0 0 auto; width: 41.666667%; }
  .col-xl-6 { flex: 0 0 auto; width: 50%; }
  .col-xl-7 { flex: 0 0 auto; width: 58.333333%; }
  .col-xl-8 { flex: 0 0 auto; width: 66.666667%; }
}

.display-3 { font-size: calc(1.675rem + 4.2vw); font-weight: 700; line-height: 1.15; }
.display-4 { font-size: calc(1.575rem + 3.2vw); font-weight: 700; line-height: 1.15; }
.display-5 { font-size: calc(1.525rem + 2.4vw); font-weight: 700; line-height: 1.15; }
.display-6 { font-size: calc(1.375rem + 1.2vw); font-weight: 700; line-height: 1.2; }

@media (min-width: 1200px) {
  .display-3 { font-size: 4.75rem; }
  .display-4 { font-size: 3.75rem; }
  .display-5 { font-size: 3.25rem; }
  .display-6 { font-size: 2.25rem; }
  h2 { font-size: 2.125rem; }
  h3 { font-size: 1.875rem; }
}

.bg-bg-1 { background-color: #0f766e; }
.bg-bg-2 { background-color: #e7e5e4; }
.bg-bg-3 { background-color: #fafaf9; }
.bg-action-1 { background-color: #0f766e; }
.bg-action-2 { background-color: #f59e0b; }
.bg-dark { background-color: #1c1917; }
.bg-light { background-color: #fef3c7; }

.text-action-1 { color: #0f766e; }
.text-action-2 { color: #f59e0b; }
.text-white { color: #ffffff; }
.text-dark { color: #1c1917; }
.text-muted { color: #78716c; }

.btn {
  display: inline-block;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  user-select: none;
  border: 2px solid transparent;
  padding: .925rem 1.75rem;
  font-size: 1.0625rem;
  border-radius: 8px;
  transition: all .25s ease-in-out;
}

.btn-action-1 {
  background-color: #0f766e;
  color: #ffffff;
  border-color: #0f766e;
}

.btn-action-1:hover {
  background-color: #115e59;
  border-color: #115e59;
  color: #ffffff;
  opacity: 1;
}

.btn-action-2 {
  background-color: #f59e0b;
  color: #1c1917;
  border-color: #f59e0b;
}

.btn-action-2:hover {
  background-color: #d97706;
  border-color: #d97706;
  color: #1c1917;
  opacity: 1;
}

.btn-outline-light {
  background-color: transparent;
  color: #ffffff;
  border-color: #ffffff;
}

.btn-outline-light:hover {
  background-color: #ffffff;
  color: #0f766e;
  opacity: 1;
}

.btn-outline-dark {
  background-color: transparent;
  color: #1c1917;
  border-color: #1c1917;
}

.btn-outline-dark:hover {
  background-color: #1c1917;
  color: #ffffff;
  opacity: 1;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.125rem;
}

.navbar {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding-top: .875rem;
  padding-bottom: .875rem;
  background-color: #ffffff;
  box-shadow: 0 2px 12px rgba(28, 25, 23, 0.08);
}

.navbar > .container {
  display: flex;
  flex-wrap: inherit;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  padding-top: .5rem;
  padding-bottom: .5rem;
  margin-right: 1.25rem;
  font-size: 1.5rem;
  white-space: nowrap;
  font-weight: 800;
  color: #0f766e;
}

.navbar-brand:hover {
  color: #0f766e;
  opacity: 1;
}

.navbar-nav {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: .75rem 1.25rem;
  color: #1c1917;
  font-weight: 500;
  transition: color .2s ease-in-out;
}

.nav-link:hover {
  color: #0f766e;
  opacity: 1;
}

.navbar-collapse {
  flex-basis: 100%;
  flex-grow: 1;
  align-items: center;
}

.navbar-toggler {
  padding: .5rem .75rem;
  font-size: 1.25rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  color: #1c1917;
}

.collapse:not(.show) { display: none; }

@media (min-width: 992px) {
  .navbar-expand-lg { flex-wrap: nowrap; justify-content: flex-start; }
  .navbar-expand-lg .navbar-nav { flex-direction: row; }
  .navbar-expand-lg .navbar-nav .nav-link { padding-right: 1rem; padding-left: 1rem; }
  .navbar-expand-lg .navbar-collapse { display: flex !important; flex-basis: auto; }
  .navbar-expand-lg .navbar-toggler { display: none; }
}

.form-control {
  display: block;
  width: 100%;
  padding: .925rem 1.25rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #1c1917;
  background-color: #ffffff;
  border: 2px solid #e7e5e4;
  border-radius: 8px;
  transition: border-color .2s ease-in-out, box-shadow .2s ease-in-out;
}

.form-control:focus {
  outline: 0;
  border-color: #0f766e;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.15);
}

.form-label {
  margin-bottom: .5rem;
  display: inline-block;
  font-weight: 600;
  color: #1c1917;
}

textarea.form-control {
  min-height: 140px;
  resize: vertical;
}

.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15, 118, 110, 0.92) 0%, rgba(17, 94, 89, 0.88) 100%);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.gradient-accent {
  background: linear-gradient(135deg, #0f766e 0%, #115e59 50%, #134e4a 100%);
}

.gradient-warm {
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
}

.decorative-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.15) 0%, rgba(245, 158, 11, 0.05) 100%);
  z-index: 0;
}

.card-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(28, 25, 23, 0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.card-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(28, 25, 23, 0.1);
}

.icon-box {
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.75rem;
  margin-bottom: 1.25rem;
}

.icon-box-primary {
  background-color: rgba(15, 118, 110, 0.1);
  color: #0f766e;
}

.icon-box-accent {
  background-color: rgba(245, 158, 11, 0.15);
  color: #f59e0b;
}

.step-number {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #0f766e;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.quote-block {
  border-left: 4px solid #f59e0b;
  padding-left: 1.5rem;
  font-style: italic;
}

.section-py {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 992px) {
  .section-py {
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.footer {
  background-color: #1c1917;
  color: #a8a29e;
  padding-top: 4rem;
  padding-bottom: 2rem;
}

.footer a {
  color: #d6d3d1;
  transition: color .2s ease;
}

.footer a:hover {
  color: #f59e0b;
  opacity: 1;
}

.footer h5 {
  color: #ffffff;
  margin-bottom: 1.25rem;
}

.footer-bottom {
  border-top: 1px solid #292524;
  padding-top: 1.5rem;
  margin-top: 2.5rem;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1c1917;
  color: #ffffff;
  padding: 1.25rem;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.d-flex { display: flex !important; }
.d-none { display: none !important; }
.d-inline-block { display: inline-block !important; }
.flex-column { flex-direction: column !important; }
.flex-wrap { flex-wrap: wrap !important; }
.flex-shrink-0 { flex-shrink: 0 !important; }
.align-items-start { align-items: flex-start !important; }
.align-items-center { align-items: center !important; }
.justify-content-center { justify-content: center !important; }
.justify-content-between { justify-content: space-between !important; }

.position-relative { position: relative !important; }
.position-absolute { position: absolute !important; }

.w-100 { width: 100% !important; }
.h-100 { height: 100% !important; }

.text-center { text-align: center !important; }
.text-start { text-align: left !important; }

.fw-bold { font-weight: 700 !important; }
.fw-semibold { font-weight: 600 !important; }

.fs-1 { font-size: 1.625rem !important; }
.fs-2 { font-size: 1.4375rem !important; }
.fs-3 { font-size: 1.3125rem !important; }
.fs-4 { font-size: 1.1875rem !important; }
.fs-5 { font-size: 1rem !important; }

.mb-0 { margin-bottom: 0 !important; }
.mb-2 { margin-bottom: .5rem !important; }
.mb-3 { margin-bottom: .75rem !important; }
.mb-4 { margin-bottom: 1rem !important; }
.mb-5 { margin-bottom: 1.5rem !important; }
.mb-6 { margin-bottom: 1.75rem !important; }
.mb-7 { margin-bottom: 2rem !important; }
.mb-8 { margin-bottom: 2.25rem !important; }
.mb-9 { margin-bottom: 2.5rem !important; }
.mb-11 { margin-bottom: 3rem !important; }
.mb-13 { margin-bottom: 4rem !important; }
.mb-16 { margin-bottom: 5rem !important; }

.mt-0 { margin-top: 0 !important; }
.mt-5 { margin-top: 1.5rem !important; }
.mt-7 { margin-top: 2rem !important; }
.mt-9 { margin-top: 2.5rem !important; }
.mt-11 { margin-top: 3rem !important; }
.mt-13 { margin-top: 4rem !important; }

.me-3 { margin-right: .75rem !important; }
.me-4 { margin-right: 1rem !important; }
.me-5 { margin-right: 1.5rem !important; }
.ms-auto { margin-left: auto !important; }

.p-5 { padding: 1.5rem !important; }
.p-7 { padding: 2rem !important; }
.p-9 { padding: 2.5rem !important; }
.p-11 { padding: 3rem !important; }

.py-3 { padding-top: .75rem !important; padding-bottom: .75rem !important; }
.py-5 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-11 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.py-16 { padding-top: 5rem !important; padding-bottom: 5rem !important; }

.px-4 { padding-left: 1rem !important; padding-right: 1rem !important; }
.px-7 { padding-left: 2rem !important; padding-right: 2rem !important; }

.ps-5 { padding-left: 1.5rem !important; }
.pe-5 { padding-right: 1.5rem !important; }

.g-5 { --bs-gutter-x: 1.5rem; --bs-gutter-y: 1.5rem; margin-right: calc(var(--bs-gutter-x) * -.5); margin-left: calc(var(--bs-gutter-x) * -.5); }
.g-5 > * { padding-right: calc(var(--bs-gutter-x) * .5); padding-left: calc(var(--bs-gutter-x) * .5); margin-top: var(--bs-gutter-y); }
.g-7 { --bs-gutter-x: 2rem; --bs-gutter-y: 2rem; margin-right: calc(var(--bs-gutter-x) * -.5); margin-left: calc(var(--bs-gutter-x) * -.5); }
.g-7 > * { padding-right: calc(var(--bs-gutter-x) * .5); padding-left: calc(var(--bs-gutter-x) * .5); margin-top: var(--bs-gutter-y); }

.rounded-3 { border-radius: 12px !important; }
.overflow-hidden { overflow: hidden !important; }
.img-fluid { max-width: 100%; height: auto; }

@media (min-width: 768px) {
  .mb-md-0 { margin-bottom: 0 !important; }
  .text-md-start { text-align: left !important; }
  .flex-md-row { flex-direction: row !important; }
}

@media (min-width: 992px) {
  .mb-lg-0 { margin-bottom: 0 !important; }
  .text-lg-start { text-align: left !important; }
  .ps-lg-5 { padding-left: 1.5rem !important; }
  .order-lg-1 { order: 1 !important; }
  .order-lg-2 { order: 2 !important; }
}

.list-unstyled {
  padding-left: 0;
  list-style: none;
}

.bi {
  vertical-align: -0.125em;
}
