/* Font imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

/* Color variables from 01_Kleur */
:root {
  /* Primary color - Midnight Ledger */
  --midnight-ledger: #23232d;

  /* Secondary color - Stone Balance */
  --stone-balance: #d8d6d3;

  /* Accent color - Heritage Walnut */
  --heritage-walnut: #6b503a;

  /* Support color - Misty Gray */
  --misty-gray: #92948b;

  /* Text colors */
  --text-primary: #2a2b31;
  --text-light: #d8d6d3;
  --text-white: #ffffff;

  /* Font families */
  --font-inter: 'Inter', sans-serif;
  --font-outfit: 'Outfit', sans-serif;
}

/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-outfit);
  color: var(--text-primary);
  background-color: white;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-inter);
  font-weight: normal;
  margin: 0;
}

p {
  margin: 0;
}

button {
  font-family: var(--font-outfit);
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 142px;
}

/* Button styles */
.btn {
  padding: 15px 35px;
  border-radius: 3px;
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background-color: var(--heritage-walnut);
  color: var(--text-white);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--stone-balance);
}

/* Section spacing */
section {
  padding: 80px 0;
}

/* App container */
.app {
  min-height: 100vh;
  width: 100%;
}

main {
  width: 100%;
}
.header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 123px;
}

.nav-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 142px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: auto;
}

.nav-menu {
  display: flex;
  gap: 40px;
  align-items: center;
  flex: 1;
  justify-content: center;
}

.nav-menu li a {
  color: var(--text-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  transition: opacity 0.3s ease;
}

.nav-menu li a:hover {
  opacity: 0.8;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 30px;
}

.btn-appointment {
  background-color: transparent;
  color: var(--text-white);
  border: 1px solid var(--stone-balance);
  border-radius: 3px;
  padding: 13px 35px;
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.btn-appointment:hover {
  background-color: rgba(216, 214, 211, 0.1);
}

.language-toggle {
  color: var(--text-white);
  font-size: 18px;
  line-height: 28px;
  cursor: pointer;
}
.footer {
  background-color: var(--midnight-ledger);
  padding: 80px 0 50px;
}

.footer-content {
  display: grid;
  grid-template-columns: 3fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-title {
  font-family: var(--font-inter);
  font-size: 48px;
  line-height: 34px;
  color: var(--stone-balance);
  margin-bottom: 10px;
}

.footer-brand-subtitle {
  font-family: var(--font-inter);
  font-size: 26px;
  line-height: 34px;
  color: var(--stone-balance);
  margin-bottom: 30px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-links a {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--stone-balance);
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-contact {
  margin-bottom: 30px;
}

.footer-contact-row {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--stone-balance);
  display: flex;
  gap: 20px;
}

.footer-cta-btn {
  margin-top: 20px;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.footer-social a {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--stone-balance);
  transition: opacity 0.3s ease;
}

.footer-social a:hover {
  opacity: 0.7;
}

.footer-divider {
  height: 1px;
  background-color: var(--misty-gray);
  margin: 60px 0 30px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-family: var(--font-outfit);
  font-size: 18px;
  line-height: 28px;
  color: var(--text-white);
}

.footer-privacy {
  font-family: var(--font-outfit);
  font-size: 18px;
  line-height: 28px;
  color: var(--text-white);
  transition: opacity 0.3s ease;
}

.footer-privacy:hover {
  opacity: 0.7;
}
.hero {
  position: relative;
  height: 1080px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(269.403deg, rgba(146, 148, 139, 0) 37.636%, rgba(146, 148, 139, 0.5) 59.603%, rgba(73, 74, 70, 0.8) 90.456%);
  mix-blend-mode: multiply;
}

.hero-content {
  position: relative;
  z-index: 10;
  padding: 0 142px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding-top: 200px;
}

.hero-title {
  font-family: var(--font-inter);
  font-size: 90px;
  line-height: 100px;
  color: var(--stone-balance);
  letter-spacing: 0.9px;
  margin-bottom: 8px;
}

.hero-subtitle {
  font-family: var(--font-inter);
  font-size: 48px;
  line-height: 58px;
  color: var(--stone-balance);
  margin-bottom: 40px;
}

.hero-description {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--stone-balance);
  font-weight: 300;
  max-width: 800px;
}

.hero-bottom {
  position: relative;
  z-index: 10;
  padding: 0 142px 40px;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-tagline {
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 32px;
  color: var(--stone-balance);
}

.hero-actions {
  display: flex;
  gap: 20px;
}
.welcome {
  background-color: var(--midnight-ledger);
  padding: 120px 0;
}

.welcome-title {
  font-family: var(--font-inter);
  font-size: 64px;
  line-height: 74px;
  color: var(--misty-gray);
  letter-spacing: 0.64px;
  margin-bottom: 40px;
  text-align: center;
}

.welcome-content {
  max-width: 780px;
  margin: 0 auto;
}

.welcome-intro {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--misty-gray);
  font-weight: 300;
  margin-bottom: 30px;
}

.welcome-text {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--misty-gray);
  font-weight: 300;
  margin-bottom: 30px;
}

.welcome-cta {
  margin-top: 40px;
  display: block;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
.services {
  background-color: var(--misty-gray);
  padding: 120px 0;
}

.services-header {
  margin-bottom: 80px;
  padding: 0 80px;
}

.services-label {
  font-family: var(--font-outfit);
  font-size: 13px;
  line-height: 18px;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.services-title {
  font-family: var(--font-inter);
  font-size: 64px;
  line-height: 74px;
  color: var(--text-primary);
  letter-spacing: 0.64px;
  margin-bottom: 20px;
}

.services-subtitle {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--text-primary);
  font-weight: 300;
  max-width: 660px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.service-card {
  background-color: transparent;
  border: 1px solid var(--text-primary);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
  width: 30px;
  height: 30px;
  font-size: 24px;
  color: var(--text-primary);
  display: inline-block;
  vertical-align: middle;
  margin-right: 15px;
}

.service-title {
  font-family: var(--font-inter);
  font-size: 36px;
  line-height: 46px;
  color: var(--text-primary);
  margin-bottom: 15px;
  display: inline-block;
  vertical-align: middle;
}

.service-description {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--text-primary);
  font-weight: 300;
  white-space: pre-line;
  margin-bottom: 20px;
}

.service-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 24px;
  color: var(--text-primary);
}

.services-cta {
  text-align: right;
}

.services-link {
  font-family: var(--font-outfit);
  font-size: 18px;
  line-height: 28px;
  color: var(--text-white);
  transition: opacity 0.3s ease;
}

.services-link:hover {
  opacity: 0.8;
}
.cases {
  background-color: var(--midnight-ledger);
  padding: 120px 0;
}

.cases-header {
  margin-bottom: 80px;
  padding: 0 80px;
}

.cases-label {
  font-family: var(--font-outfit);
  font-size: 13px;
  line-height: 18px;
  color: var(--stone-balance);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.cases-title {
  font-family: var(--font-inter);
  font-size: 64px;
  line-height: 74px;
  color: var(--misty-gray);
  letter-spacing: 0.64px;
  margin-bottom: 20px;
}

.cases-subtitle {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--misty-gray);
  font-weight: 300;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 60px;
}

.case-card {
  background-color: transparent;
  border: 1px solid var(--misty-gray);
  border-radius: 12px;
  padding: 40px 30px;
  position: relative;
  min-height: 199px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.case-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.case-title {
  font-family: var(--font-inter);
  font-size: 36px;
  line-height: 46px;
  color: var(--misty-gray);
  margin-bottom: 20px;
}

.case-description {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--misty-gray);
  font-weight: 300;
  white-space: pre-line;
  margin-bottom: 20px;
}

.case-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
  font-size: 24px;
  color: var(--stone-balance);
}

.cases-cta {
  text-align: right;
}

.cases-link {
  font-family: var(--font-outfit);
  font-size: 18px;
  line-height: 28px;
  color: var(--text-white);
  transition: opacity 0.3s ease;
}

.cases-link:hover {
  opacity: 0.8;
}
.cta {
  background-color: var(--misty-gray);
  padding: 120px 0;
  text-align: center;
}

.cta-title {
  font-family: var(--font-inter);
  font-size: 64px;
  line-height: 74px;
  color: var(--text-primary);
  letter-spacing: 0.64px;
  margin-bottom: 40px;
  max-width: 870px;
  margin-left: auto;
  margin-right: auto;
}

.cta-subtitle {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 60px;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
}

.cta .btn-secondary {
  color: var(--text-white);
}
.service-page {
  width: 100%;
}

/* Service Hero */
.service-hero {
  background-color: var(--midnight-ledger);
  padding: 180px 0 120px;
  position: relative;
  overflow: hidden;
}

.service-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.service-hero-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(269.403deg, rgba(146, 148, 139, 0) 37.636%, rgba(146, 148, 139, 0.5) 59.603%, rgba(73, 74, 70, 0.8) 90.456%);
  mix-blend-mode: multiply;
}

.service-hero .container {
  position: relative;
  z-index: 10;
}

.service-hero-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.service-hero-left {
  flex: 1;
  max-width: 50%;
}

.service-hero-right {
  flex: 1;
  max-width: 50%;
}

.service-label {
  font-family: var(--font-outfit);
  font-size: 13px;
  line-height: 18px;
  color: var(--stone-balance);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.service-hero-title {
  font-family: var(--font-inter);
  font-size: 90px;
  line-height: 100px;
  color: var(--stone-balance);
  letter-spacing: 0.9px;
  margin-bottom: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.service-hero-subtitle {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--stone-balance);
  font-weight: 300;
  margin-bottom: 40px;
}

/* Section Backgrounds */
.section-dark {
  background-color: var(--midnight-ledger);
  padding: 120px 0;
}

.section-gray {
  background-color: var(--misty-gray);
  padding: 120px 0;
}

/* Content Layouts */
.content-centered {
  max-width: 780px;
  margin: 0 auto;
}

/* Typography */
.section-title-light {
  font-family: var(--font-inter);
  font-size: 64px;
  line-height: 74px;
  color: var(--misty-gray);
  letter-spacing: 0.64px;
  margin-bottom: 40px;
  padding: 0 80px;
}

.section-title-dark {
  font-family: var(--font-inter);
  font-size: 64px;
  line-height: 74px;
  color: var(--text-primary);
  letter-spacing: 0.64px;
  margin-bottom: 40px;
}

.center-title {
  text-align: center;
  margin-bottom: 80px;
}

.section-text-light {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--misty-gray);
  font-weight: 300;
  margin-bottom: 30px;
}

.section-text-dark {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--text-primary);
  font-weight: 300;
  margin-bottom: 30px;
}

/* Process Grid */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
}

.process-item {
  padding: 0;
}

.process-title {
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 32px;
  color: var(--misty-gray);
  margin-bottom: 15px;
}

/* Two Column Grid */
.two-column-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
}

/* CTA Section */
.section-cta {
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

/* Section Labels */
.section-label {
  font-family: var(--font-outfit);
  font-size: 13px;
  line-height: 18px;
  color: var(--text-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}

.section-label-light {
  font-family: var(--font-outfit);
  font-size: 13px;
  line-height: 18px;
  color: var(--stone-balance);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
  padding: 0 80px;
}

/* Intro Text */
.section-intro-light {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--misty-gray);
  font-weight: 300;
  margin-bottom: 60px;
  max-width: 780px;
  padding: 0 80px;
}

/* Situations List & Components List */
.situations-list,
.components-list {
  margin-top: 80px;
}

.situation-item,
.component-item {
  padding: 40px 80px;
  border-top: 1px solid var(--misty-gray);
  display: flex;
  gap: 60px;
}

.situation-title,
.component-title {
  font-family: var(--font-inter);
  font-size: 36px;
  line-height: 46px;
  color: var(--misty-gray);
  margin: 0;
  flex: 0 0 calc(33.333% - 40px);
}

.situation-item .section-text-light,
.component-item .section-text-light {
  flex: 0 0 calc(66.667% - 20px);
  margin-bottom: 0;
}

/* Quote Section */
.quote-section {
  margin: 60px 0;
  padding: 40px 0;
}

.quote-text {
  font-family: var(--font-inter);
  font-size: 36px;
  line-height: 46px;
  color: var(--stone-balance);
  font-style: normal;
  text-align: left;
  max-width: 680px;
  margin: 0;
  margin-left: 0;
}

/* Statistics Grid */
.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.stat-item {
  border: 1px solid var(--text-primary);
  border-radius: 12px;
  padding: 30px 20px;
  text-align: center;
}

.stat-number {
  font-family: var(--font-inter);
  font-size: 48px;
  line-height: 60px;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.stat-label {
  font-family: var(--font-outfit);
  font-size: 18px;
  line-height: 28px;
  color: var(--text-primary);
  font-weight: 300;
}

/* FAQ List */
.faq-list {
  margin-top: 60px;
  width: 780px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  border: 1px solid var(--misty-gray);
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

.faq-item.open {
  border-color: var(--stone-balance);
}

.faq-question {
  width: 100%;
  padding: 25px 30px;
  background: none;
  border: none;
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 32px;
  color: var(--misty-gray);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s;
}

.faq-item.open .faq-question {
  color: var(--stone-balance);
}

.faq-icon {
  font-size: 32px;
  font-weight: 300;
  flex-shrink: 0;
  margin-left: 20px;
}

.faq-answer {
  padding: 0 30px 30px 30px;
}

.faq-answer p {
  font-family: var(--font-outfit);
  font-size: 15px;
  line-height: 22px;
  color: var(--stone-balance);
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.2px;
}
/* Aanbod Hero */
.aanbod-hero-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
}

.aanbod-hero-content .service-hero-title {
  margin-bottom: 0;
}

.aanbod-hero-right {
  max-width: 500px;
}

/* Aanbod Services Section */
.aanbod-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 80px;
}

.aanbod-service-card {
  border: 1px solid var(--misty-gray);
  border-radius: 12px;
  padding: 40px 30px;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;
  position: relative;
  min-height: 199px;
}

.aanbod-service-card:hover {
  border-color: var(--stone-balance);
}

.aanbod-service-title {
  font-family: var(--font-inter);
  font-size: 36px;
  line-height: 46px;
  color: var(--misty-gray);
  margin: 0 0 15px 0;
}

.aanbod-service-description {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--misty-gray);
  font-weight: 300;
  margin: 0;
  flex-grow: 1;
}

.aanbod-service-arrow {
  position: absolute;
  bottom: 30px;
  right: 30px;
}

.aanbod-service-arrow svg {
  display: block;
}

/* Maatwerk Section */
.aanbod-maatwerk-content {
  text-align: center;
  max-width: 900px;
  margin: 120px auto 0;
}

.aanbod-maatwerk-content .section-label-light {
  margin: 0 auto 20px;
  display: block;
  padding: 0;
}

.aanbod-maatwerk-content .section-title-light {
  margin-bottom: 0;
  padding: 0;
}

/* Contact Page Styles */
.contact-page {
  width: 100%;
}

.contact-section {
  padding: 180px 0 120px;
}

.contact-title {
  font-family: var(--font-inter);
  font-size: 90px;
  line-height: 100px;
  color: var(--misty-gray);
  letter-spacing: 0.9px;
  margin-bottom: 20px;
}

.contact-subtitle {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--misty-gray);
  font-weight: 300;
  max-width: 667px;
  margin-bottom: 80px;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
}

.contact-form-wrapper {
  max-width: 808px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-group label {
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--misty-gray);
  font-weight: 300;
}

.form-group input,
.form-group textarea {
  background: transparent;
  border: 1px solid var(--misty-gray);
  border-radius: 8px;
  padding: 20px 30px;
  font-family: var(--font-outfit);
  font-size: 20px;
  line-height: 30px;
  color: var(--misty-gray);
  font-weight: 300;
}

.form-group input {
  height: 80px;
}

.form-group textarea {
  min-height: 281px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--misty-gray);
  opacity: 0.7;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--stone-balance);
}

.form-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  border: 1px solid var(--misty-gray);
  border-radius: 4px;
  cursor: pointer;
}

.form-checkbox label {
  font-family: var(--font-outfit);
  font-size: 15px;
  line-height: 22px;
  color: var(--misty-gray);
  font-weight: 400;
  letter-spacing: -0.2px;
  cursor: pointer;
}

.contact-info {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-title {
  font-family: var(--font-inter);
  font-size: 24px;
  line-height: 32px;
  color: var(--stone-balance);
  margin: 0;
}

.contact-info-text {
  font-family: var(--font-outfit);
  font-size: 24px;
  line-height: 34px;
  color: var(--misty-gray);
  font-weight: 300;
  margin: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.over-bas-passion-text .section-text-light,
.over-bas-passion-text .section-title-light {
  padding: 0;
}

.over-bas-hero {
  min-height: 1080px;
}

.over-bas-hero-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

.over-bas-hero-left {
  flex: 0 0 50%;
  max-width: 50%;
}

.over-bas-hero-image {
  flex: 0 0 670px;
  width: 670px;
  height: 979px;
  overflow: hidden;
}

.over-bas-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-bas-passion-section {
  padding: 80px 0 120px;
}

.over-bas-passion-content {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 0 80px;
}

.over-bas-passion-image {
  flex: 0 0 523px;
  width: 523px;
  height: 295px;
  overflow: hidden;
}

.over-bas-passion-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.over-bas-passion-text {
  flex: 1;
  max-width: 669px;
}

.over-bas-passion-label {
  padding: 0 !important;
}

.over-bas-quote {
  font-family: var(--font-inter);
  font-size: 44px;
  line-height: normal;
  color: var(--stone-balance);
  font-style: normal;
  margin: 20px 0;
}

.over-bas-clients-section {
  display: flex;
  gap: 80px;
  align-items: flex-start;
  padding: 0 80px;
}

.over-bas-clients-left {
  flex: 0 0 calc(33.333% - 40px);
}

.over-bas-clients-left .section-title-light {
  padding: 0;
  margin: 0;
}

.over-bas-clients-right {
  flex: 1;
}

.over-bas-values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 80px;
  margin-top: 40px;
  padding: 0;
}

.over-bas-value-item {
  text-align: left;
}

.over-bas-value-title {
  font-family: var(--font-inter);
  font-size: 36px;
  line-height: 46px;
  color: var(--misty-gray);
  font-style: normal;
  margin-bottom: 10px;
}

.over-bas-value-description {
  font-family: var(--font-outfit);
  font-size: 18px;
  line-height: 28px;
  color: var(--misty-gray);
  font-weight: 300;
  margin: 0;
}

:root :where(.is-layout-flow) > * {
  margin-block-start: 0;
  margin-block-end: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
