/*------------------------------------------------------------------
[Table of contents]

1. Base Styles
   1.1 Reset & Normalization
   1.2 Typography
   1.3 Layout & Grid
   1.4 Containers
   1.5 Utilities

2. Components
   2.1 Buttons
   2.2 Forms
   2.3 Navigation
   2.4 Cards
   2.5 Hero Sections
   2.6 Statistics
   2.7 Testimonials
   2.8 Timeline
   2.9 Accordions
   2.10 Tables
   2.11 Alerts
   2.12 Modals

3. Sections
   3.1 Header
   3.2 Footer
   3.3 Home Page Sections
   3.4 Our Approach Page Sections
   3.5 How to Start Page Sections
   3.6 Contact Page Sections
   3.7 Legal Pages
   3.8 Thank You Page

4. Cookie Consent
   4.1 Cookie Banner
   4.2 Cookie Modal

5. Responsive Styles
   5.1 Large Screens
   5.2 Medium Screens
   5.3 Small Screens
   5.4 Extra Small Screens

-------------------------------------------------------------------*/

/*------------------------------------------------------------------
1. Base Styles
-------------------------------------------------------------------*/


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

html {
  font-size: 62.5%; 
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #4F5D75;
  background-color: #F5F5F5;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #0D698B;
  transition: color 0.3s ease;
}

a:hover {
  color: #FFAB40;
}


h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #2D3142;
  margin-bottom: 2rem;
}

h1 {
  font-size: 4.8rem;
  letter-spacing: -0.05rem;
}

h2 {
  font-size: 3.6rem;
  letter-spacing: -0.03rem;
}

h3 {
  font-size: 2.4rem;
}

h4 {
  font-size: 2rem;
}

p {
  margin-bottom: 1.6rem;
}

.lead {
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
}

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -1.5rem;
}

.col {
  flex: 1;
  padding: 0 1.5rem;
}


.diagonal-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 10rem;
  background: linear-gradient(to right bottom, transparent 49.5%, #F5F5F5 50%);
  z-index: 1;
}

section {
  position: relative;
  padding: 8rem 0;
}

section:nth-child(even) .diagonal-divider {
  background: linear-gradient(to left bottom, transparent 49.5%, #F9F9F9 50%);
}

section:nth-child(odd) {
  background-color: #F5F5F5;
}

section:nth-child(even) {
  background-color: #F9F9F9;
}


.section-header {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 6rem;
}

.section-header p {
  font-size: 1.8rem;
  margin-top: -1rem;
}


.mb-1 {
  margin-bottom: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-3 {
  margin-bottom: 3rem;
}

.mb-4 {
  margin-bottom: 4rem;
}

.mb-5 {
  margin-bottom: 5rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-3 {
  margin-top: 3rem;
}

.mt-4 {
  margin-top: 4rem;
}

.mt-5 {
  margin-top: 5rem;
}

.hidden {
  display: none;
}

.visible {
  display: block;
}

/*------------------------------------------------------------------
2. Components
-------------------------------------------------------------------*/


.btn {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  padding: 1.2rem 2.4rem;
  border-radius: 0.4rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  border: none;
  outline: none;
}

.btn-primary {
  background-color: #0D698B;
  color: #FFFFFF;
  box-shadow: 0 0.4rem 0.8rem rgba(13, 105, 139, 0.2);
}

.btn-primary:hover {
  background-color: #095676;
  color: #FFFFFF;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.2rem rgba(13, 105, 139, 0.25);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 0.2rem 0.4rem rgba(13, 105, 139, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: #0D698B;
  border: 0.2rem solid #0D698B;
}

.btn-outline:hover {
  background-color: #0D698B;
  color: #FFFFFF;
  transform: translateY(-0.2rem);
  box-shadow: 0 0.6rem 1.2rem rgba(13, 105, 139, 0.25);
}

.btn-outline:active {
  transform: translateY(0);
  box-shadow: 0 0.2rem 0.4rem rgba(13, 105, 139, 0.2);
}

.btn-text {
  background-color: transparent;
  color: #0D698B;
  padding: 1rem 1.5rem;
  text-decoration: underline;
}

.btn-text:hover {
  color: #095676;
  background-color: rgba(13, 105, 139, 0.05);
}


.form-container {
  display: flex;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.form-content {
  flex: 1;
}

.form-image {
  flex: 1;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.form-group {
  margin-bottom: 2rem;
  width: 48%;
  display: inline-block;
  vertical-align: top;
}

.form-group.full-width {
  width: 100%;
}

.form-group:nth-child(odd) {
  margin-right: 4%;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.8rem;
  color: #2D3142;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
textarea,
select {
  width: 100%;
  padding: 1.2rem 1.5rem;
  border: 0.1rem solid #E1E1E1;
  border-radius: 0.4rem;
  background-color: #FFFFFF;
  font-family: 'Nunito', sans-serif;
  font-size: 1.6rem;
  color: #2D3142;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
textarea:focus,
select:focus {
  border-color: #0D698B;
  box-shadow: 0 0 0 0.2rem rgba(13, 105, 139, 0.25);
  outline: none;
}

textarea {
  resize: vertical;
  min-height: 12rem;
}

.checkbox-container {
  align-items: flex-start;
  position: relative;
  padding-left: 3.5rem;
  cursor: pointer;
  font-weight: 400;
  user-select: none;
}

.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  position: absolute;
  top: 0.2rem;
  left: 0;
  height: 2.4rem;
  width: 2.4rem;
  background-color: #FFFFFF;
  border: 0.1rem solid #E1E1E1;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

.checkbox-container:hover input ~ .checkmark {
  background-color: #F5F5F5;
}

.checkbox-container input:checked ~ .checkmark {
  background-color: #0D698B;
  border-color: #0D698B;
}

.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}

.checkbox-container .checkmark:after {
  left: 0.9rem;
  top: 0.5rem;
  width: 0.6rem;
  height: 1.2rem;
  border: solid white;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
}


.nav-list {
  display: flex;
  align-items: center;
}

.nav-list li {
  margin: 0 1.5rem;
}

.nav-list a {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #2D3142;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  padding: 1rem 0;
  position: relative;
}

.nav-list a:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 0.2rem;
  background-color: #0D698B;
  transition: width 0.3s ease;
}

.nav-list a:hover:after,
.nav-list a.active:after {
  width: 100%;
}

.nav-list a.active {
  color: #0D698B;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
}

.menu-toggle span {
  display: block;
  width: 2.5rem;
  height: 0.3rem;
  background-color: #2D3142;
  margin: 0.5rem 0;
  transition: all 0.3s ease;
}


.card {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.card-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
}

.card-content {
  padding: 2.5rem;
}

.card-title {
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.card-text {
  margin-bottom: 2rem;
}

.service-card {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 3rem;
  margin-bottom: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.service-icon {
  font-size: 3rem;
  color: #0D698B;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 1.5rem;
  background-color: rgba(13, 105, 139, 0.1);
  border-radius: 50%;
}

.service-card h3 {
  margin-bottom: 1.5rem;
}

.service-features {
  margin: 2rem 0;
  padding-left: 2rem;
}

.service-features li {
  margin-bottom: 0.8rem;
  position: relative;
}

.service-features li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #0D698B;
  position: absolute;
  left: -2rem;
}

.service-image {
  width: 100%;
  height: 20rem;
  object-fit: cover;
  border-radius: 0.4rem;
  margin-top: 2rem;
}

.pillar-card {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 3rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.pillar-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.pillar-icon {
  font-size: 3.5rem;
  color: #0D698B;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 2rem;
  background-color: rgba(13, 105, 139, 0.1);
  border-radius: 50%;
}

.pillar-card h3 {
  margin-bottom: 1.5rem;
}

.principle-card {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.principle-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.principle-icon {
  font-size: 2.5rem;
  color: #0D698B;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1.5rem;
  background-color: rgba(13, 105, 139, 0.1);
  border-radius: 50%;
}

.principle-card h3 {
  margin-bottom: 1.5rem;
}

.model-card {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.model-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.model-icon {
  font-size: 3rem;
  color: #0D698B;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 1.5rem;
  background-color: rgba(13, 105, 139, 0.1);
  border-radius: 50%;
}

.model-card h3 {
  margin-bottom: 1.5rem;
}

.model-details {
  margin-top: 2rem;
}

.model-details h4 {
  margin-bottom: 1rem;
  color: #4F5D75;
  font-size: 1.8rem;
}

.model-details ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.model-details ul li {
  margin-bottom: 0.8rem;
  position: relative;
}

.model-details ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #0D698B;
  position: absolute;
  left: -2rem;
}

.tool-card {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 3rem;
  margin-bottom: 3rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tool-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.tool-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.tool-icon {
  font-size: 2.5rem;
  color: #0D698B;
  display: inline-block;
  padding: 1.5rem;
  background-color: rgba(13, 105, 139, 0.1);
  border-radius: 50%;
}

.tool-applications {
  margin-top: 2rem;
  background-color: #F9F9F9;
  padding: 2rem;
  border-radius: 0.4rem;
}

.tool-applications h4 {
  margin-bottom: 1rem;
}

.tool-applications ul {
  padding-left: 2rem;
}

.tool-applications ul li {
  margin-bottom: 0.8rem;
  position: relative;
}

.tool-applications ul li:before {
  content: "\f0da";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #0D698B;
  position: absolute;
  left: -1.5rem;
}

.article-card {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
  transform: translateY(-0.5rem);
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.15);
}

.article-image {
  width: 100%;
  height: 22rem;
  overflow: hidden;
}

.article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-image img {
  transform: scale(1.05);
}

.article-content {
  padding: 2.5rem;
}

.article-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  font-size: 1.4rem;
  color: #7D8597;
}

.article-category {
  color: #0D698B;
  font-weight: 600;
}

.article-card h3 {
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.article-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 0.1rem solid #E1E1E1;
}

.read-time {
  font-size: 1.4rem;
  color: #7D8597;
}

.read-more {
  font-weight: 600;
  font-size: 1.5rem;
}

.read-more i {
  margin-left: 0.5rem;
  transition: transform 0.3s ease;
}

.read-more:hover i {
  transform: translateX(0.5rem);
}


.hero {
  position: relative;
  height: 80vh;
  min-height: 60rem;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 60rem;
}

.hero h1 {
  margin-bottom: 2.5rem;
}

.hero .lead {
  margin-bottom: 3rem;
}

.hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  z-index: 1;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, #F5F5F5, transparent);
  z-index: 1;
}

.page-hero {
  position: relative;
  height: 40vh;
  min-height: 40rem;
  background-color: #F5F5F5;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 60rem;
}

.page-hero h1 {
  margin-bottom: 2rem;
}

.page-hero .lead {
  margin-bottom: 0;
}

.page-hero-image {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 1;
}

.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-image:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  height: 100%;
  background: linear-gradient(to right, #F5F5F5, transparent);
  z-index: 1;
}


.stat-item {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: 4.8rem;
  font-weight: 600;
  color: #0D698B;
  line-height: 1.2;
  display: block;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 1.6rem;
  color: #4F5D75;
  display: block;
}

.case-results {
  display: flex;
  flex-wrap: wrap;
  margin: 3rem 0;
  gap: 2rem;
}

.result-item {
  background-color: #F9F9F9;
  border-radius: 0.8rem;
  padding: 2rem;
  text-align: center;
  flex: 1;
  min-width: 15rem;
}

.result-number {
  font-family: 'Oswald', sans-serif;
  font-size: 3.6rem;
  font-weight: 600;
  color: #0D698B;
  line-height: 1.2;
  display: block;
  margin-bottom: 0.8rem;
}

.result-label {
  font-size: 1.5rem;
  color: #4F5D75;
  display: block;
}


.testimonial {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  padding: 3rem;
  margin-bottom: 3rem;
  position: relative;
}

.testimonial:before {
  content: '\f10d';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 3rem;
  color: rgba(13, 105, 139, 0.1);
  position: absolute;
  top: 2rem;
  left: 2rem;
}

.testimonial-content {
  position: relative;
  z-index: 1;
  padding-left: 2rem;
}

.testimonial-content p {
  font-size: 1.8rem;
  font-style: italic;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.author-image {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 2rem;
}

.author-info h4 {
  margin-bottom: 0.5rem;
}

.author-info span {
  font-size: 1.4rem;
  color: #7D8597;
}

.case-quote {
  font-size: 1.8rem;
  font-style: italic;
  color: #2D3142;
  position: relative;
  padding-left: 2rem;
  border-left: 0.3rem solid #0D698B;
  margin: 2.5rem 0 1rem;
}

.quote-author {
  font-size: 1.5rem;
  color: #7D8597;
  text-align: right;
  margin-bottom: 2rem;
}


.process-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 0;
}

.process-timeline:before {
  content: '';
  position: absolute;
  top: 0;
  left: 3rem;
  height: 100%;
  width: 0.4rem;
  background-color: #E1E1E1;
}

.timeline-item {
  position: relative;
  padding-left: 8rem;
  margin-bottom: 6rem;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.timeline-icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background-color: #0D698B;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
  box-shadow: 0 0.5rem 1.5rem rgba(13, 105, 139, 0.3);
}

.timeline-icon i {
  font-size: 2.4rem;
  color: #FFFFFF;
}

.timeline-connector {
  position: absolute;
  top: 6rem;
  width: 0.4rem;
  height: calc(100% + 6rem);
  background-color: #0D698B;
  z-index: 0;
}

.timeline-item:last-child .timeline-connector {
  display: none;
}

.timeline-content h3 {
  margin-bottom: 1.5rem;
  color: #0D698B;
}

.timeline-details {
  background-color: #F9F9F9;
  border-radius: 0.8rem;
  padding: 2.5rem;
  margin-top: 2rem;
}

.timeline-details h4 {
  margin-bottom: 1rem;
  font-size: 1.8rem;
  color: #2D3142;
}

.timeline-details ul {
  margin-bottom: 2rem;
  padding-left: 2rem;
}

.timeline-details ul li {
  margin-bottom: 0.8rem;
  position: relative;
}

.timeline-details ul li:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #0D698B;
  position: absolute;
  left: -2rem;
  font-size: 1.2rem;
}

.timeline-details .outcome {
  background-color: rgba(13, 105, 139, 0.1);
  padding: 1.5rem;
  border-radius: 0.4rem;
  margin-top: 2rem;
}


.faq-item {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
  overflow: hidden;
}

.faq-question {
  padding: 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.faq-question:hover {
  background-color: #F9F9F9;
}

.faq-question h3 {
  margin-bottom: 0;
  font-size: 2rem;
  padding-right: 3rem;
}

.faq-icon {
  font-size: 2rem;
  color: #0D698B;
  transition: transform 0.3s ease;
}

.faq-icon .fa-minus {
  display: none;
}

.faq-item.active .faq-icon .fa-plus {
  display: none;
}

.faq-item.active .faq-icon .fa-minus {
  display: inline-block;
}

.faq-answer {
  padding: 0 2.5rem;
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 0 2.5rem 2.5rem;
  height: auto;
}


.cookie-table-container {
  overflow-x: auto;
  margin: 2rem 0;
}

.cookie-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 1.5rem;
}

.cookie-table th {
  background-color: #0D698B;
  color: #FFFFFF;
  padding: 1.5rem;
  font-weight: 600;
}

.cookie-table td {
  padding: 1.5rem;
  border-bottom: 0.1rem solid #E1E1E1;
}

.cookie-table tr:nth-child(even) {
  background-color: #F9F9F9;
}

.cookie-table tr:hover {
  background-color: rgba(13, 105, 139, 0.05);
}


.alert {
  padding: 1.5rem 2rem;
  border-radius: 0.4rem;
  margin-bottom: 2rem;
  font-weight: 600;
}

.alert-success {
  background-color: #E8F5E9;
  color: #2E7D32;
  border-left: 0.4rem solid #4CAF50;
}

.alert-info {
  background-color: #E3F2FD;
  color: #1565C0;
  border-left: 0.4rem solid #2196F3;
}

.alert-warning {
  background-color: #FFF8E1;
  color: #F57F17;
  border-left: 0.4rem solid #FFC107;
}

.alert-danger {
  background-color: #FFEBEE;
  color: #C62828;
  border-left: 0.4rem solid #F44336;
}


.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  overflow-y: auto;
}

.modal-content {
  background-color: #FFFFFF;
  margin: 10vh auto;
  padding: 3rem;
  width: 90%;
  max-width: 60rem;
  border-radius: 0.8rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
  position: relative;
}

.modal-header {
  margin-bottom: 2rem;
}

.modal-header h3 {
  margin-bottom: 1rem;
}

.modal-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  font-size: 2.8rem;
  font-weight: 700;
  color: #7D8597;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: #2D3142;
}

.modal-footer {
  margin-top: 3rem;
  text-align: right;
}

/*------------------------------------------------------------------
3. Sections
-------------------------------------------------------------------*/


.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
  z-index: 100;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(1rem);
  -webkit-backdrop-filter: blur(1rem);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 8rem;
}

.logo {
  display: block;
  height: 5rem;
}

.logo img {
  height: 100%;
  width: auto;
}

.site-header.scrolled {
  background-color: #FFFFFF;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.1);
}


.site-footer {
  background-color: #2D3142;
  color: #FFFFFF;
  position: relative;
}

.footer-main {
  padding: 8rem 0 4rem;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.footer-brand {
  flex: 2;
  min-width: 30rem;
}

.footer-logo {
  height: 5rem;
  width: auto;
  margin-bottom: 2rem;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  font-size: 1.6rem;
  margin-bottom: 3rem;
  color: #B8BDC9;
}

.footer-contact {
  margin-top: 2.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.5rem;
  color: #B8BDC9;
}

.contact-item i {
  font-size: 1.8rem;
  color: #FFAB40;
  margin-right: 1.5rem;
  margin-top: 0.3rem;
}

.footer-nav {
  flex: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.footer-nav-column {
  flex: 1;
  min-width: 16rem;
}

.footer-nav-column h4 {
  color: #FFFFFF;
  margin-bottom: 2rem;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 1rem;
}

.footer-nav-column h4:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 4rem;
  height: 0.3rem;
  background-color: #0D698B;
}

.footer-nav-column ul li {
  margin-bottom: 1.2rem;
}

.footer-nav-column ul li a {
  color: #B8BDC9;
  transition: color 0.3s ease;
}

.footer-nav-column ul li a:hover {
  color: #FFAB40;
}

.footer-bottom {
  background-color: #252836;
  padding: 2rem 0;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  font-size: 1.4rem;
  color: #7D8597;
}

.footer-legal {
  display: flex;
  gap: 2rem;
}

.footer-legal a {
  font-size: 1.4rem;
  color: #7D8597;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #FFFFFF;
}


.intro-content {
  display: flex;
  gap: 6rem;
  align-items: center;
}

.intro-text {
  flex: 1;
}

.intro-stats {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.case-studies-grid {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.case-study {
  display: flex;
  gap: 4rem;
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.case-study-content {
  flex: 1;
  padding: 4rem;
}

.case-study-image {
  flex: 1;
  min-width: 40%;
  overflow: hidden;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study.reverse {
  flex-direction: row-reverse;
}

.case-meta {
  font-size: 1.5rem;
  color: #7D8597;
  margin-bottom: 2rem;
}

.case-meta span {
  font-weight: 600;
  color: #2D3142;
}

.methodology-content {
  display: flex;
  gap: 6rem;
  align-items: flex-start;
}

.methodology-image {
  flex: 1;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.methodology-steps {
  flex: 1;
}

.step {
  display: flex;
  margin-bottom: 3rem;
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #0D698B;
  margin-right: 2rem;
  line-height: 1;
  flex-shrink: 0;
}

.step-content h3 {
  margin-bottom: 1rem;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}


.pillars-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.methodology-framework {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.framework-visual {
  display: flex;
  justify-content: center;
  margin-bottom: 2rem;
}

.framework-circle {
  position: relative;
  width: 40rem;
  height: 40rem;
  border-radius: 50%;
  background-color: #F5F5F5;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
}

.framework-core {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  background-color: #0D698B;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #FFFFFF;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-align: center;
  z-index: 2;
}

.framework-segment {
  position: absolute;
  width: 15rem;
  height: 15rem;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.framework-segment span {
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #2D3142;
}

.segment-1 {
  top: 5rem;
  left: 50%;
  transform: translateX(-50%);
}

.segment-2 {
  top: 12rem;
  right: 5rem;
  transform: rotate(45deg);
}

.segment-2 span {
  transform: rotate(-45deg);
}

.segment-3 {
  bottom: 12rem;
  right: 5rem;
  transform: rotate(135deg);
}

.segment-3 span {
  transform: rotate(-135deg);
}

.segment-4 {
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
}

.segment-4 span {
  transform: rotate(-180deg);
}

.segment-5 {
  bottom: 12rem;
  left: 5rem;
  transform: rotate(225deg);
}

.segment-5 span {
  transform: rotate(-225deg);
}

.framework-details {
  margin-top: 4rem;
}

.framework-phase {
  display: none;
  padding: 3rem;
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.framework-phase.active {
  display: block;
}

.framework-phase h3 {
  color: #0D698B;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
}

.framework-phase h3 span {
  font-family: 'Oswald', sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: #FFFFFF;
  background-color: #0D698B;
  width: 4rem;
  height: 4rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  margin-right: 1.5rem;
}

.phase-activities {
  margin: 2rem 0;
  padding-left: 2rem;
}

.phase-activities li {
  margin-bottom: 1rem;
  position: relative;
}

.phase-activities li:before {
  content: "\f054";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #0D698B;
  position: absolute;
  left: -2rem;
  font-size: 1.2rem;
}

.phase-outcome {
  background-color: #F9F9F9;
  padding: 2rem;
  border-radius: 0.4rem;
  border-left: 0.4rem solid #0D698B;
  margin-top: 2rem;
}

.phase-outcome h4 {
  color: #0D698B;
  margin-bottom: 1rem;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 3rem;
}

.tools-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.testimonials-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.approach-cta {
  background-color: #0D698B !important;
  padding: 8rem 0;
}

.cta-content {
  text-align: center;
  max-width: 80rem;
  margin: 0 auto;
}

.approach-cta h2 {
  color: #FFFFFF;
  margin-bottom: 2rem;
}

.approach-cta p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.8rem;
  margin-bottom: 3rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 2rem;
}


.consultation-content {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.consultation-image {
  flex: 1;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.15);
}

.consultation-details {
  flex: 1;
}

.consultation-step {
  margin-bottom: 3rem;
}

.consultation-step h3 {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.consultation-step h3 i {
  color: #0D698B;
  font-size: 2rem;
  margin-right: 1.5rem;
}

.consultation-note {
  background-color: #F9F9F9;
  padding: 2rem;
  border-radius: 0.4rem;
  border-left: 0.4rem solid #FFAB40;
  margin-top: 3rem;
}

.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30rem, 1fr));
  gap: 3rem;
}

.terms-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.terms-principles {
  flex: 1;
  min-width: 30rem;
}

.principles-list {
  margin-top: 2rem;
}

.principles-list li {
  display: flex;
  margin-bottom: 2.5rem;
}

.principle-icon {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  background-color: rgba(13, 105, 139, 0.1);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 2rem;
}

.principle-icon i {
  font-size: 2rem;
  color: #0D698B;
}

.principle-text h4 {
  margin-bottom: 0.8rem;
}

.terms-details {
  flex: 1;
  min-width: 30rem;
}

.terms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.terms-item {
  background-color: #F9F9F9;
  padding: 2rem;
  border-radius: 0.4rem;
}

.terms-item h4 {
  margin-bottom: 1rem;
  color: #0D698B;
}

.terms-note {
  background-color: rgba(255, 171, 64, 0.1);
  padding: 2rem;
  border-radius: 0.4rem;
  border-left: 0.4rem solid #FFAB40;
  margin-top: 3rem;
}

.terms-note h4 {
  color: #2D3142;
  margin-bottom: 1.5rem;
}

.terms-note ul {
  padding-left: 2rem;
}

.terms-note ul li {
  margin-bottom: 0.8rem;
  position: relative;
}

.terms-note ul li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: #FFAB40;
  position: absolute;
  left: -2rem;
}

.start-journey-cta {
  background-color: #F5F5F5;
  padding: 8rem 0;
}

.cta-form {
  background-color: #FFFFFF;
  padding: 4rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  margin-top: 4rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  gap: 2rem;
}

.form-row .form-group {
  flex: 1;
  min-width: 25rem;
  margin-bottom: 0;
  margin-right: 0;
  width: auto;
}

.form-row .form-group.full-width {
  width: 100%;
  flex-basis: 100%;
}


.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}

.contact-info {
  flex: 1;
  min-width: 30rem;
}

.contact-form-container {
  flex: 1;
  min-width: 30rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-method {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  transform-style: preserve-3d;
  transform: perspective(1000px);
}

.method-icon {
  font-size: 2.4rem;
  color: #0D698B;
  margin-bottom: 2rem;
  display: inline-block;
  padding: 1.5rem;
  background-color: rgba(13, 105, 139, 0.1);
  border-radius: 50%;
}

.method-details h3 {
  margin-bottom: 1rem;
}

.method-details p {
  margin-bottom: 0.8rem;
}

.method-details .note {
  font-size: 1.4rem;
  color: #7D8597;
  font-style: italic;
}

.contact-hours {
  background-color: #FFFFFF;
  border-radius: 0.8rem;
  padding: 3rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

.contact-hours h3 {
  margin-bottom: 2rem;
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.day {
  font-weight: 600;
}

.map-container {
  height: 45rem;
  border-radius: 0.8rem;
  overflow: hidden;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  margin-bottom: 4rem;
}

.map-container iframe {
  border: none;
  width: 100%;
  height: 100%;
}

.map-directions h3 {
  margin-bottom: 2rem;
}

.directions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(25rem, 1fr));
  gap: 2rem;
}

.direction-item {
  display: flex;
  align-items: flex-start;
}

.direction-icon {
  font-size: 2rem;
  color: #0D698B;
  margin-right: 2rem;
  margin-top: 0.5rem;
}

.direction-details h4 {
  margin-bottom: 1rem;
}

.faq-grid {
  max-width: 90rem;
  margin: 0 auto;
}


.legal-page {
  padding: 12rem 0 8rem;
  background-color: #F5F5F5;
}

.legal-header {
  text-align: center;
  margin-bottom: 5rem;
}

.last-updated {
  font-size: 1.6rem;
  color: #7D8597;
}

.legal-content {
  max-width: 90rem;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 4rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
}

.legal-section {
  margin-bottom: 4rem;
}

.legal-section:last-child {
  margin-bottom: 0;
}

.legal-section h2 {
  font-size: 2.4rem;
  margin-bottom: 2rem;
  color: #0D698B;
}

.legal-section h3 {
  font-size: 2rem;
  margin: 2.5rem 0 1.5rem;
}

.legal-section ul, .legal-section ol {
  margin: 1.5rem 0;
  padding-left: 2.5rem;
}

.legal-section li {
  margin-bottom: 1rem;
}

.legal-section ol li {
  list-style-type: decimal;
}

.legal-section ul li {
  list-style-type: disc;
}

.cookie-settings-button {
  text-align: center;
  margin-top: 4rem;
}


.thanks-section {
  padding: 12rem 0 8rem;
  background-color: #F5F5F5;
}

.thanks-content {
  max-width: 80rem;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 5rem;
  border-radius: 0.8rem;
  box-shadow: 0 0.5rem 2rem rgba(0, 0, 0, 0.1);
  text-align: center;
}

.thanks-icon {
  font-size: 8rem;
  color: #4CAF50;
  margin-bottom: 3rem;
}

.thanks-message {
  font-size: 1.8rem;
  margin-bottom: 4rem;
}

.thanks-details {
  text-align: left;
  margin: 4rem 0;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.step-icon {
  font-size: 2.4rem;
  color: #0D698B;
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 1.5rem;
  background-color: rgba(13, 105, 139, 0.1);
  border-radius: 50%;
}

.thanks-resources {
  text-align: left;
  margin: 4rem 0;
}

.resource-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.resource-link {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  background-color: #F9F9F9;
  border-radius: 0.4rem;
  transition: all 0.3s ease;
}

.resource-link:hover {
  background-color: rgba(13, 105, 139, 0.1);
  transform: translateY(-0.3rem);
}

.resource-link i {
  font-size: 2rem;
  margin-right: 1.5rem;
}

.thanks-buttons {
  margin-top: 4rem;
}

/*------------------------------------------------------------------
4. Cookie Consent
-------------------------------------------------------------------*/


.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #FFFFFF;
  box-shadow: 0 -0.5rem 2rem rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: 2rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-content {
  max-width: 120rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.cookie-content h3 {
  margin-bottom: 1rem;
}

.cookie-content p {
  margin-bottom: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}


.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 1001;
  overflow-y: auto;
}

.cookie-modal.visible {
  display: block;
}

.cookie-modal-content {
  background-color: #FFFFFF;
  margin: 10vh auto;
  padding: 3rem;
  width: 90%;
  max-width: 60rem;
  border-radius: 0.8rem;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.3);
  position: relative;
}

.cookie-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.cookie-close {
  font-size: 2.8rem;
  font-weight: 700;
  color: #7D8597;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-close:hover {
  color: #2D3142;
}

.cookie-option {
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 0.1rem solid #E1E1E1;
}

.cookie-option:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cookie-option-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}

.switch {
  position: relative;
  display: inline-block;
  width: 5rem;
  height: 2.6rem;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #E1E1E1;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 2rem;
  width: 2rem;
  left: 0.3rem;
  bottom: 0.3rem;
  background-color: white;
  transition: .4s;
}

input:checked + .slider {
  background-color: #0D698B;
}

input:focus + .slider {
  box-shadow: 0 0 0.1rem #0D698B;
}

input:checked + .slider:before {
  transform: translateX(2.4rem);
}

.slider.round {
  border-radius: 3.4rem;
}

.slider.round:before {
  border-radius: 50%;
}

.cookie-modal-footer {
  margin-top: 3rem;
  text-align: right;
}

/*------------------------------------------------------------------
5. Responsive Styles
-------------------------------------------------------------------*/


@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}


@media (max-width: 992px) {
  html {
    font-size: 60%;
  }
  
  .hero {
    height: auto;
    min-height: 50rem;
  }
  
  .hero-content {
    padding: 8rem 0;
  }
  
  .hero-image {
    position: relative;
    width: 100%;
    height: 40rem;
    order: -1;
  }
  
  .hero-image:after {
    display: none;
  }
  
  .intro-content {
    flex-direction: column;
    gap: 4rem;
  }
  
  .methodology-content {
    flex-direction: column;
    gap: 4rem;
  }
  
  .case-study {
    flex-direction: column;
  }
  
  .case-study.reverse {
    flex-direction: column;
  }
  
  .case-study-image {
    height: 30rem;
  }
  
  .form-container {
    flex-direction: column;
  }
  
  .form-image {
    display: none;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 4rem;
  }
  
  .consultation-content {
    flex-direction: column;
  }
  
  .consultation-image {
    display: none;
  }
}


@media (max-width: 768px) {
  html {
    font-size: 58%;
  }
  
  .site-header {
    position: relative;
  }
  
  .header-inner {
    height: 7rem;
  }
  
  .menu-toggle {
    display: block;
  }
  
  .nav-list {
    position: fixed;
    top: 7rem;
    left: 0;
    width: 100%;
    height: 0;
    background-color: #FFFFFF;
    flex-direction: column;
    align-items: flex-start;
    overflow: hidden;
    transition: height 0.3s ease;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .nav-list.active {
    height: auto;
    padding: 2rem 0;
  }
  
  .nav-list li {
    width: 100%;
    margin: 0;
  }
  
  .nav-list a {
    display: block;
    padding: 1.5rem 2rem;
    width: 100%;
  }
  
  .nav-list a:after {
    display: none;
  }
  
  .nav-list a:hover, .nav-list a.active {
    background-color: #F5F5F5;
  }
  
  .hero {
    padding-top: 0;
  }
  
  .page-hero {
    padding-top: 0;
    height: auto;
    min-height: 30rem;
  }
  
  .page-hero-content {
    padding: 6rem 0;
  }
  
  .page-hero-image {
    position: relative;
    width: 100%;
    height: 30rem;
    order: -1;
  }
  
  .page-hero-image:after {
    display: none;
  }
  
  .form-group {
    width: 100%;
  }
  
  .form-group:nth-child(odd) {
    margin-right: 0;
  }
  
  .form-row {
    flex-direction: column;
    gap: 2rem;
  }
  
  .form-row .form-group {
    min-width: auto;
  }
  
  .footer-nav {
    flex-direction: column;
  }
  
  .footer-bottom-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-content {
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
  }
}


@media (max-width: 576px) {
  html {
    font-size: 55%;
  }
  
  h1 {
    font-size: 3.6rem;
  }
  
  h2 {
    font-size: 2.8rem;
  }
  
  .lead {
    font-size: 1.8rem;
  }
  
  .hero-content {
    padding: 6rem 0;
  }
  
  .step {
    flex-direction: column;
  }
  
  .step-number {
    margin-bottom: 1rem;
  }
  
  .timeline-item {
    padding-left: 6rem;
  }
  
  .process-timeline:before {
    left: 2rem;
  }
  
  .timeline-marker {
    width: 4rem;
  }
  
  .timeline-icon {
    width: 4rem;
    height: 4rem;
  }
  
  .timeline-icon i {
    font-size: 1.8rem;
  }
  
  .legal-content {
    padding: 3rem 2rem;
  }
  
  .thanks-content {
    padding: 3rem 2rem;
  }
  
  .cookie-modal-content {
    padding: 2rem;
  }
}