:root {
  /* Palette de couleurs */
  --bg-color: #F4F1FA;
  --accent-color: #798D66;
  --secondary-accent: #C76B3E;
  --text-color: #2E2E2E;
  --white: #FFFFFF;
  --light-gray: #F9F9F9;
  --gray: #E5E5E5;
  --shadow: rgba(0, 0, 0, 0.1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', 'Roboto', sans-serif;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 6rem;
}

a {
  text-decoration: none;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

a:hover {
  color: var(--secondary-accent);
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

/* Header Styles */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  box-shadow: 0 2px 10px var(--shadow);
  z-index: 100;
  padding: 0.5rem 0;
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-color);
}

.logo svg {
  height: 40px;
  width: auto;
  margin-right: 1rem;
}

.nav-links {
  display: flex;
  list-style: none;
}

.nav-links li {
  margin: 0 1rem;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
}

.contact-icon {
  display: flex;
  align-items: center;
}

.contact-icon svg {
  width: 28px;
  height: 28px;
  fill: var(--accent-color);
}

/* Button Styles */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 32px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
  color: var(--white);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
}

.btn-outline:hover {
  background-color: var(--accent-color);
  color: var(--white);
}

/* Hero Section */
.hero {
  background-color: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 10px 30px var(--shadow);
  margin-top: 1rem;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
}

.hero-text h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.hero-text p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* About Section */
.about {
  background-color: var(--bg-color);
}

.about-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-title {
  text-align: center;
  margin-bottom: 3rem;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  width: 100%;
}

.about-card {
  background: var(--white);
  padding: 2rem;
  border-radius: 32px;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.about-card:hover {
  transform: translateY(-10px);
}

.about-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 1.5rem;
  fill: var(--accent-color);
}

.about-card h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Benefits Section */
.benefits {
  background-color: var(--white);
  border-radius: 32px;
  box-shadow: 0 5px 20px var(--shadow);
}

.benefits-container {
  text-align: center;
}

.benefits-title {
  margin-bottom: 3rem;
}

.benefits-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 1.5rem;
  padding: 1rem 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.benefit-item {
  flex: 0 0 280px;
  padding: 1.5rem;
  background: linear-gradient(135deg, var(--bg-color), var(--white));
  border-radius: 32px;
  box-shadow: 0 3px 10px var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.benefit-item:hover {
  transform: scale(1.03);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--accent-color);
}

/* Services Section */
.services {
  background-color: var(--bg-color);
}

.services-container {
  text-align: center;
}

.services-title {
  margin-bottom: 3rem;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-10px);
}

.service-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-content {
  padding: 2rem;
}

.service-content h3 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 1.5rem 0;
}

/* Process Section */
.process {
  background-color: var(--white);
  border-radius: 32px;
  box-shadow: 0 5px 20px var(--shadow);
}

.process-container {
  text-align: center;
}

.process-title {
  margin-bottom: 3rem;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.process-step {
  flex: 1;
  min-width: 200px;
  padding: 2rem;
  position: relative;
  z-index: 1;
}

.step-image {
  width: 120px;
  height: 120px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 5px 15px var(--shadow);
  border: 3px solid var(--white);
}

.step-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.process-step:hover .step-img {
  transform: scale(1.15);
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  transform: translateY(-25px);
  margin-bottom: 0;
  border: 3px solid var(--white);
}

.process-line {
  position: absolute;
  top: 25px;
  left: 10%;
  width: 80%;
  height: 3px;
  background-color: var(--accent-color);
  z-index: 0;
}

/* Testimonials Section */
.testimonials {
  background-color: var(--bg-color);
}

.testimonials-container {
  text-align: center;
}

.testimonials-title {
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 32px;
  box-shadow: 0 5px 20px var(--shadow);
}

.testimonial-text {
  font-style: italic;
  margin-bottom: 1.5rem;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  opacity: 0.1;
  position: absolute;
  top: -20px;
  left: -10px;
}

.testimonial-author {
  font-weight: 700;
  color: var(--accent-color);
}

/* Form Section */
.form-section {
  background-color: var(--white);
  border-radius: 32px;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
}

.form-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 300px;
  height: 300px;
  background-color: rgba(121, 141, 102, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.form-section::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 200px;
  height: 200px;
  background-color: rgba(199, 107, 62, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.form-container {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
  padding: 3rem 4rem;
}

.form-text {
  padding-right: 2rem;
  position: relative;
  max-width: 500px;
}

.form-text h2 {
  margin-bottom: 1.5rem;
  color: var(--text-color);
  font-size: 2rem;
  font-weight: 700;
  position: relative;
}

.form-text h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-accent), var(--accent-color));
}

.form-decoration {
  position: absolute;
  bottom: 20px;
  right: 20px;
  opacity: 0.1;
}

.form-decoration-icon {
  width: 150px;
  height: 150px;
  fill: var(--accent-color);
}

.form-title-mobile {
  display: none;
}

.form-fields-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.contact-form {
  width: 100%;
  background-color: var(--bg-color);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.input-icon-wrapper,
.select-icon-wrapper {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  fill: var(--accent-color);
  opacity: 0.7;
  z-index: 1;
}

.form-control {
  width: 100%;
  padding: 1rem 1rem;
  border: 2px solid var(--gray);
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: var(--white);
}

.form-control.with-icon {
  padding-left: 45px;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px rgba(121, 141, 102, 0.1);
}

.floating-label {
  position: absolute;
  top: -10px;
  left: 15px;
  padding: 0 5px;
  font-size: 0.8rem;
  background-color: var(--bg-color);
  color: var(--accent-color);
  font-weight: 600;
  z-index: 1;
}

.consent-section {
  background-color: var(--white);
  padding: 1.8rem;
  border-radius: 16px;
  margin-top: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.03);
}

.consent-section h4 {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--text-color);
  font-weight: 600;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  position: relative;
}

.checkbox-wrapper {
  position: relative;
  width: 20px;
  height: 20px;
  margin-right: 15px;
  margin-top: 2px;
}

.checkbox-group input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  cursor: pointer;
}

.checkbox-custom {
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent-color);
  border-radius: 5px;
  background-color: var(--white);
  transition: all 0.3s ease;
}

.checkbox-custom::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 6px;
  width: 5px;
  height: 10px;
  border: solid var(--white);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  opacity: 0;
  transition: all 0.2s ease;
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-custom {
  background-color: var(--accent-color);
}

.checkbox-group input[type="checkbox"]:checked + .checkbox-custom::after {
  opacity: 1;
}

.checkbox-group label {
  font-size: 0.9rem;
  line-height: 1.4;
}

.form-submit {
  text-align: right;
}

.form-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  padding-right: 1rem;
  transition: all 0.3s ease;
}

.btn-icon {
  width: 20px;
  height: 20px;
  margin-left: 8px;
  fill: var(--white);
  transition: all 0.3s ease;
}

.form-btn:hover .btn-icon {
  transform: translateX(5px);
}

/* Contact Section */
.contact {
  background-color: var(--bg-color);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info {
  background-color: var(--white);
  padding: 2.5rem;
  border-radius: 32px;
  box-shadow: 0 5px 20px var(--shadow);
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.contact-info::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(121, 141, 102, 0.1);
  border-radius: 50%;
  z-index: -1;
}

.contact-info::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background-color: rgba(199, 107, 62, 0.1);
  border-radius: 50%;
  z-index: -1;
}

.contact-info h2 {
  margin-bottom: 2rem;
  color: var(--accent-color);
  font-size: 1.8rem;
  font-weight: 600;
  position: relative;
  padding-bottom: 0.8rem;
}

.contact-info h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--secondary-accent), var(--accent-color));
}

.contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1.8rem;
  padding: 0.5rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateX(5px);
}

.contact-icon {
  width: 32px;
  height: 32px;
  margin-right: 1rem;
  padding: 6px;
  background-color: rgba(121, 141, 102, 0.1);
  border-radius: 50%;
  fill: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map {
  width: 100%;
  height: 400px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 5px 20px var(--shadow);
}

/* Footer */
footer {
  background-color: var(--text-color);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-col h3 {
  color: var(--white);
  margin-bottom: 1.5rem;
  position: relative;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-accent);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--light-gray);
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--secondary-accent);
  padding-left: 5px;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  padding: 1rem 2rem;
  box-shadow: 0 -5px 20px var(--shadow);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cookie-text {
  flex: 1;
  padding-right: 2rem;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.cookie-banner.show {
  display: block;
  opacity: 1;
}

/* Policy Pages */
.policy-content {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 32px;
  box-shadow: 0 5px 20px var(--shadow);
}

.policy-content h1 {
  margin-bottom: 2rem;
}

.policy-content h2 {
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.policy-content p {
  margin-bottom: 1.5rem;
}

.policy-content ul {
  margin-left: 2rem;
  margin-bottom: 1.5rem;
}

/* Thanks Page */
.thanks-container {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 32px;
  box-shadow: 0 10px 30px var(--shadow);
  position: relative;
  overflow: hidden;
}

.thanks-container::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  background-color: rgba(121, 141, 102, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.thanks-container::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  background-color: rgba(199, 107, 62, 0.1);
  border-radius: 50%;
  z-index: 0;
}

.thanks-icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: var(--white);
  width: 100px;
  height: 100px;
  margin: 0 auto 2.5rem;
  background: linear-gradient(135deg, var(--secondary-accent), var(--accent-color));
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.thanks-container h1 {
  position: relative;
  margin-bottom: 1.5rem;
  color: var(--accent-color);
  font-size: 2.2rem;
  font-weight: 600;
  z-index: 1;
}

.thanks-container p {
  position: relative;
  margin-bottom: 2rem;
  font-size: 1.1rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-color);
  z-index: 1;
}

.thanks-container .btn {
  position: relative;
  z-index: 1;
  padding: 0.9rem 2.5rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  transition: all 0.3s ease;
}

.thanks-container .btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Thanks Page Steps */
.thanks-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem auto;
  max-width: 700px;
  z-index: 1;
}

.thanks-step {
  text-align: center;
  transition: transform 0.3s ease;
}

.thanks-step:hover {
  transform: translateY(-5px);
}

.thanks-step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  margin: 0 auto 1rem;
  background-color: rgba(121, 141, 102, 0.1);
  border-radius: 50%;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.thanks-step:hover .thanks-step-icon {
  background-color: var(--accent-color);
  color: var(--white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.thanks-step-icon svg {
  stroke: currentColor;
  width: 24px;
  height: 24px;
}

.thanks-step-text h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: var(--accent-color);
}

.thanks-step-text p {
  font-size: 0.9rem;
  margin-bottom: 0;
  color: var(--text-color);
}

/* Thanks Page Animations */
.thanks-container {
  animation: fadeIn 0.8s ease-in-out;
}

.thanks-icon {
  animation: scaleIn 0.6s ease-in-out 0.2s both;
}

.thanks-container h1 {
  animation: slideUp 0.6s ease-in-out 0.4s both;
}

.thanks-container p {
  animation: slideUp 0.6s ease-in-out 0.5s both;
}

.thanks-steps {
  animation: fadeIn 0.8s ease-in-out 0.7s both;
}

.thanks-step:nth-child(1) {
  animation: slideFromLeft 0.6s ease-in-out 0.8s both;
}

.thanks-step:nth-child(2) {
  animation: slideFromLeft 0.6s ease-in-out 1s both;
}

.thanks-step:nth-child(3) {
  animation: slideFromLeft 0.6s ease-in-out 1.2s both;
}

.thanks-container .btn {
  animation: fadeIn 0.6s ease-in-out 1.4s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes scaleIn {
  from {
    transform: scale(0.5);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(20px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideFromLeft {
  from {
    transform: translateX(-20px);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

/* Media Queries */
@media (max-width: 1200px) {
  .form-container {
    padding: 2.5rem 3rem;
  }
  
  .form-fields-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 991px) {
  .hero-container, 
  .form-container, 
  .contact-container {
    grid-template-columns: 1fr;
  }
  
  .hero-image,
  .contact-map {
    margin-top: 2rem;
  }
  
  .process-line {
    display: none;
  }
  
  .section {
    padding: 4rem 0;
  }

  .benefits-grid {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 1.5rem;
  }

  .form-text {
    padding-right: 0;
    margin-bottom: 2rem;
    max-width: 100%;
  }
  
  .form-decoration {
    display: none;
  }
  
  .form-title-mobile {
    display: block;
    margin-bottom: 1.5rem;
  }
  
  .form-title-mobile h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent-color);
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 4rem;
  }
  
  .logo {
    font-size: 1rem;
  }
  
  .logo svg {
    height: 35px;
  }
  
  .contact-icon svg {
    width: 24px;
    height: 24px;
  }
  
  .nav-links li {
    margin: 0 0.5rem;
  }
  
  .nav-links a {
    font-size: 0.8rem;
  }
  
  .hero-text h1 {
    font-size: 2rem;
  }
  
  .hero-container {
    padding: 2rem;
  }
  
  .section {
    padding: 3rem 0;
  }
  
  header {
    padding: 0.3rem 0;
  }

  .contact-info {
    padding: 2rem 1.5rem;
  }

  .step-image {
    width: 100px;
    height: 100px;
  }
  
  .step-number {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .contact-form {
    padding: 1.5rem;
  }
  
  .form-fields-container {
    gap: 1rem;
  }
  
  .form-container {
    padding: 1.5rem;
  }

  .thanks-steps {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin: 2rem auto;
  }
  
  .thanks-step {
    display: flex;
    align-items: center;
    text-align: left;
    padding: 0.5rem 1rem;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
  }
  
  .thanks-step-icon {
    margin: 0 1rem 0 0;
  }
  
  .thanks-step-text h3 {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  body {
    padding-top: 3.5rem;
  }
  
  .container {
    padding: 0 1rem;
  }
  
  .hero-container {
    padding: 1.5rem;
  }
  
  .hero-text h1 {
    font-size: 1.7rem;
  }
  
  .section {
    padding: 2rem 0;
  }
  
  .about-cards,
  .services-grid,
  .benefits-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-text {
    padding-right: 0;
    margin-bottom: 1rem;
  }
  
  .nav-links li {
    margin: 0 0.3rem;
  }

  .benefits-grid {
    padding-bottom: 1rem;
  }
  
  .benefit-item {
    flex: 0 0 260px;
  }

  .step-image {
    width: 80px;
    height: 80px;
  }

  .contact-form {
    padding: 1.2rem;
  }
  
  .consent-section {
    padding: 1rem;
  }
  
  .form-container {
    padding: 1rem;
  }
} 

@media (max-width: 1440px) {
  .container,
  .form-section {
    max-width: 95%;
  }
} 