:root {
  --primary-color: #20aaff;
  --secondary-color: #0d6cd6;
  --text-color: #1f2937;
  --text-logo: #102638;
  --light-text: #6b7280;
  --background: #ffffff;
  --section-bg: #f3f4f6;
}

@font-face {
  font-family: "Linotte-Heavy";
  src: url("https://db.onlinewebfonts.com/t/86a878cb89cb2d48baa84c2bef878034.eot");
  src: url("https://db.onlinewebfonts.com/t/86a878cb89cb2d48baa84c2bef878034.eot?#iefix")
      format("embedded-opentype"),
    url("https://db.onlinewebfonts.com/t/86a878cb89cb2d48baa84c2bef878034.woff2")
      format("woff2"),
    url("https://db.onlinewebfonts.com/t/86a878cb89cb2d48baa84c2bef878034.woff")
      format("woff"),
    url("https://db.onlinewebfonts.com/t/86a878cb89cb2d48baa84c2bef878034.ttf")
      format("truetype"),
    url("https://db.onlinewebfonts.com/t/86a878cb89cb2d48baa84c2bef878034.svg#Linotte-Heavy")
      format("svg");
}

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

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: var(--text-color);
}

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

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  z-index: 1000;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo-img {
  height: 60px;
  width: auto;
  display: block;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.logo-text {
  font-family: "Linotte-Heavy";
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-logo);
  margin-top: 0.25rem;
}

/* Navigation Menu */
.nav-menu {
  display: flex;
  align-items: center;
}

.dropdown {
  position: relative;
  display: inline-block;
  margin-left: 2rem;
}

.dropdown-toggle {
  background: none;
  border: none;
  color: var(--text-color);
  font-weight: 500;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}

.dropdown-toggle:hover {
  color: var(--primary-color);
  background-color: rgba(32, 170, 255, 0.1);
}

.dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dropdown-chevron {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.dropdown.active .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  display: none;
  position: absolute;
  right: 0;
  background-color: var(--background);
  min-width: 250px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 0.5rem 0;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Desktop hover effect - disabled on mobile */
@media (min-width: 769px) {
  .dropdown:hover .dropdown-menu {
    display: block;
  }
}

.dropdown-item {
  color: var(--text-color);
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  display: block;
  transition: background-color 0.3s ease;
  font-weight: 500;
}

.dropdown-item:hover {
  background-color: rgba(32, 170, 255, 0.1);
  color: var(--primary-color);
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 500;
  margin-left: 2rem;
  transition: color 0.3s ease;
}

.nav-link:first-child {
  margin-left: 0;
}

.nav-link:hover {
  color: var(--primary-color);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none !important;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-color);
}

.mobile-menu-toggle svg {
  width: 24px;
  height: 24px;
}

/* Hero Section */
.hero {
  padding: 6rem 2rem 3rem;
  background: linear-gradient(
      135deg,
      rgba(240, 249, 255, 0.9) 0%,
      rgba(224, 242, 254, 0.9) 100%
    ),
    url("img/hero-background.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  color: var(--text-color);
}

.hero p {
  font-size: 1.25rem;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.coming-soon-info {
  background: rgba(255, 255, 255, 0.8);
  padding: 2rem;
  border-radius: 12px;
  margin: 2rem 0;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.coming-soon-info p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

.coming-soon-info ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.5rem;
  margin: 0;
}

.coming-soon-info li {
  padding: 0.5rem 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 6px;
  font-weight: 500;
  text-align: center;
}

/* Sections */
section {
  padding: 5rem 0;
}

section:nth-child(even) {
  background-color: var(--section-bg);
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

/* Services Grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.service-link {
  color: var(--primary-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.service-link:hover {
  color: var(--secondary-color);
}

.service-card p {
  margin-bottom: 1.5rem;
  color: var(--light-text);
  line-height: 1.6;
}

.service-card ul {
  list-style: none;
  padding: 0;
}

.service-card li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1.5rem;
}

.service-card li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Contact Section */
.contact {
  text-align: center;
  background: var(--section-bg);
}

.contact p {
  font-size: 1.2rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* CTA Button */
.cta-button {
  display: inline-block;
  padding: 1rem 2rem;
  background-color: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: var(--secondary-color);
}

/* Footer */
.footer {
  background-color: var(--text-color);
  color: white;
  padding: 2rem 0;
  text-align: center;
}

.footer-links {
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  color: white;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.social-links svg {
  width: 24px;
  height: 24px;
}

/* Legal Notice Page */
.legal-notice {
  padding: 2rem 0 4rem;
}

.legal-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.legal-title {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
}

.legal-content {
  margin-bottom: 2rem;
}

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

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

.legal-section h3 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: var(--primary-color);
  font-weight: 600;
}

.legal-section p {
  margin-bottom: 1rem;
  line-height: 1.7;
  color: var(--text-color);
}

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

.back-to-home {
  margin-top: 2rem;
  text-align: center;
}

/* Responsive pour la page mentions légales */
@media (max-width: 768px) {
  .legal-card {
    padding: 2rem;
  }

  .legal-title {
    font-size: 2rem;
  }
}

/* About Section */
.about-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.about-title {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
}

.founder-profile {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.founder-photo {
  flex-shrink: 0;
}

.founder-photo img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid var(--primary-color);
  box-shadow: 0 4px 16px rgba(32, 170, 255, 0.2);
}

.founder-info h3 {
  color: var(--text-color);
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.founder-badge {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.founder-location {
  color: var(--light-text);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.founder-info .linkedin-link {
  display: inline-flex;
  align-items: center;
  color: #0a66c2;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.founder-info .linkedin-link:hover {
  color: #004182;
}

.about-content {
  display: flex;
  gap: 2rem;
}

.about-story {
  flex: 1;
}

.about-story p {
  color: var(--text-color);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
}

.about-story p:last-child {
  margin-bottom: 0;
}

/* Process Section */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
  background: var(--background);
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-step:hover {
  transform: translateY(-5px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1.5rem;
}

.process-step h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.process-step p {
  color: var(--light-text);
  line-height: 1.6;
}

/* Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.feature-item {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.feature-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.feature-item p {
  color: var(--light-text);
  line-height: 1.6;
}

/* Pricing Section */
.pricing {
  background-color: var(--section-bg);
}

/* Values Section */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.value-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.value-card p {
  color: var(--light-text);
  line-height: 1.6;
}

/* Expertise Section */
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.expertise-item {
  background: var(--background);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.expertise-item h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.expertise-item ul {
  list-style: none;
  padding: 0;
}

.expertise-item li {
  padding: 0.5rem 0;
  color: var(--text-color);
  position: relative;
  padding-left: 1.5rem;
}

.expertise-item li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary-color);
  font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .nav-container {
    padding: 1rem;
  }

  .logo-img {
    height: 50px;
  }

  .logo-text {
    font-size: 1.5rem;
  }

  /* Mobile Menu */
  .mobile-menu-toggle {
    display: block !important;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--background);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
  }

  .nav-menu.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .dropdown {
    width: 100%;
  }

  .dropdown-toggle {
    width: 100%;
    text-align: left;
    padding: 1rem;
    border: none;
    background: none;
    font-size: 1.1rem;
    justify-content: space-between;
  }

  .dropdown-menu {
    display: none;
    position: static;
    box-shadow: none;
    border: none;
    background: var(--section-bg);
    margin-top: 0.5rem;
    border-radius: 6px;
  }

  .dropdown.active .dropdown-menu {
    display: block;
  }

  .dropdown-item {
    padding: 1rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }

  .nav-link {
    margin-left: 0;
    padding: 1rem;
    display: block;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
  }

  .nav-link:last-child {
    border-bottom: none;
  }

  /* Hero Section */
  .hero {
    padding: 8rem 1rem 3rem;
    min-height: 60vh;
  }

  .hero h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero p {
    font-size: 1.1rem;
  }

  section {
    padding: 3rem 0;
  }

  .about-content {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
  }

  .about-image {
    flex: 0 0 auto;
    max-width: 250px;
    margin: 0 auto;
  }

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

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

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

  /* Responsive pour les nouvelles cartes */
  .services-card,
  .process-card,
  .features-card,
  .values-card,
  .expertise-card {
    padding: 2rem;
  }

  .services-title,
  .process-title,
  .features-title,
  .values-title,
  .expertise-title {
    font-size: 2rem;
  }

  /* Services */
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .service-card {
    padding: 1.5rem;
  }

  .service-card h3 {
    font-size: 1.3rem;
  }

  /* Sections */
  section {
    padding: 3rem 0;
  }

  h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  /* Cards */
  .services-card,
  .process-card,
  .features-card,
  .values-card,
  .expertise-card,
  .legal-card,
  .about-card {
    padding: 1.5rem;
    margin: 1rem;
  }

  .services-title,
  .process-title,
  .features-title,
  .values-title,
  .expertise-title {
    font-size: 2rem;
  }

  /* About page */
  .founder-profile {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .founder-photo img {
    width: 100px;
    height: 100px;
  }

  .about-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  /* Process, Features, Values grids */
  .process-grid,
  .features-grid,
  .values-grid,
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .process-step,
  .feature-item,
  .value-card,
  .expertise-item {
    padding: 1.5rem;
  }

  /* Contact section */
  .contact p {
    font-size: 1.1rem;
    padding: 0 1rem;
  }

  /* CTA Button */
  .cta-button {
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* Footer */
  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}

/* Tarifs section harmonisée */
.tarifs-flex {
  display: flex;
  gap: 2rem;
  justify-content: center;
  align-items: stretch;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.tarif-card {
  background: var(--background);
  border-radius: 1.2rem;
  box-shadow: 0 2px 16px rgba(30, 41, 59, 0.07);
  padding: 2.5rem 2rem 3.2rem 2rem;
  flex: 1 1 260px;
  min-width: 260px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 2px solid var(--section-bg);
}

.tarif-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--primary-color);
}

.tarif-reseaux {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.3em;
  margin-bottom: 1em;
  width: 100%;
}

.tarif-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem 0;
  text-align: center;
}

.tarif-list li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

.tarif-prix {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-top: auto;
  background: var(--section-bg);
  padding: 0.7rem 1.2rem;
  border-radius: 0.7rem;
}

.tarif-prix span {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 700;
}

.tarif-card-featured {
  background: var(--primary-color);
  color: #fff;
  border: 2.5px solid var(--secondary-color);
  box-shadow: 0 6px 32px rgba(30, 41, 59, 0.15);
  transform: scale(1.06);
  z-index: 1;
}

.tarif-card-featured h3,
.tarif-card-featured .tarif-list li,
.tarif-card-featured .tarif-reseaux {
  color: #fff;
}

.tarif-card-featured .tarif-prix {
  background: var(--secondary-color);
  color: #fff;
}

.tarif-card-featured .tarif-prix span {
  color: #fff;
}

@media (max-width: 900px) {
  .tarifs-flex {
    flex-direction: column;
    gap: 1.5rem;
    align-items: stretch;
  }
  .tarif-card,
  .tarif-card-featured {
    max-width: 100%;
    min-width: 0;
    transform: none;
  }
}

.tarifs-note {
  text-align: center;
  font-style: italic;
  color: var(--light-text);
  margin-bottom: 2rem;
}

.reseau-badge {
  display: inline-block;
  background: var(--section-bg);
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.98rem;
  border-radius: 1em;
  padding: 0.18em 0.9em;
  margin-right: 0.5em;
  margin-bottom: 0.3em;
  letter-spacing: 0.01em;
}

.align-left {
  text-align: left;
  width: 100%;
  margin-top: 1.1em;
}

.tarif-inclus ul,
.tarif-moderation ul {
  margin-left: 1.1em;
}

/* Services Card */
.services-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.services-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.services-title {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
}

/* Process Card */
.process-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.process-title {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
}

/* Features Card */
.features-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.features-title {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
}

/* Values Card */
.values-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.values-title {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
}

/* Expertise Card */
.expertise-card {
  background: var(--background);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  padding: 3rem;
  margin-top: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.expertise-title {
  text-align: left;
  margin-bottom: 2rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .logo-text {
    font-size: 1.3rem;
  }

  .logo-img {
    height: 45px;
  }

  .services-card,
  .process-card,
  .features-card,
  .values-card,
  .expertise-card,
  .legal-card,
  .about-card {
    padding: 1rem;
    margin: 0.5rem;
  }

  .service-card,
  .process-step,
  .feature-item,
  .value-card,
  .expertise-item {
    padding: 1rem;
  }
}

/* IDF Grant Section */
.idf-grant {
  padding: 4rem 0;
  background: var(--section-bg);
}

.idf-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.idf-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.idf-header {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: 3rem;
}

.idf-logo {
  flex-shrink: 0;
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: 15px;
  border: 2px solid #e2e8f0;
}

.idf-logo-img {
  width: 120px;
  height: auto;
  display: block;
}

.idf-content {
  flex: 1;
}

.idf-title {
  text-align: left;
  margin-bottom: 1rem;
  color: var(--text-color);
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.3;
}

.idf-badge {
  display: inline-block;
  background: #e0f2fe;
  color: #0369a1;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.idf-description {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.idf-accompagnement {
  font-size: 1.1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 2rem;
  padding: 1rem;
  background: var(--primary-color);
  color: white;
  border-radius: 10px;
  text-align: center;
  margin-top: 1.5rem;
}

.idf-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.idf-link {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: #dbeafe;
  color: #1e40af;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid #dbeafe;
}

.idf-link:hover {
  background: #bfdbfe;
  border-color: #93c5fd;
  transform: translateY(-2px);
}

.idf-contact {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: 2px solid var(--primary-color);
}

.idf-contact:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .idf-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
  }

  .idf-logo {
    margin-bottom: 1rem;
  }

  .idf-logo-img {
    width: 100px;
  }

  .idf-title {
    font-size: 1.5rem;
  }

  .idf-description,
  .idf-accompagnement {
    font-size: 1rem;
  }

  .idf-actions {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .idf-header {
    padding: 1.5rem;
  }

  .idf-logo-img {
    width: 80px;
  }

  .idf-title {
    font-size: 1.25rem;
  }

  .idf-actions {
    flex-direction: column;
    width: 100%;
  }

  .idf-link,
  .idf-contact {
    justify-content: center;
    width: 100%;
  }
}

/* FAQ Styles */
.faq-section {
  padding: 4rem 0;
  background: var(--section-bg);
}

.faq-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.faq-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 3rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--background);
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.faq-question {
  background: var(--primary-color);
  color: white;
  padding: 1.5rem 2rem;
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background: var(--secondary-color);
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  padding: 2rem;
  max-height: 500px;
}

.faq-answer p {
  margin: 0;
  color: var(--text-color);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .faq-section {
    padding: 2rem 0;
  }

  .faq-title {
    font-size: 2rem;
  }

  .faq-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .faq-question {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .faq-question::after {
    right: 1.5rem;
    font-size: 1.25rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .faq-title {
    font-size: 1.75rem;
  }

  .faq-subtitle {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.95rem;
  }

  .faq-question::after {
    right: 1.25rem;
    font-size: 1.1rem;
  }

  .faq-item.active .faq-answer {
    padding: 1.25rem;
  }
}
