:root {
  --primary-color: #2563eb;
  --secondary-color: #1e40af;
  --text-color: #1f2937;
  --light-text: #6b7280;
  --background: #ffffff;
  --light-background: #f3f4f6;
  --border-color: #e5e7eb;
  --success-color: #10b981;
  --error-color: #ef4444;
}

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

body {
  font-family: "Exo", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, sans-serif;
  color: var(--text-color);
  line-height: 1.6;
}

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

/* General Layout */
main {
  margin-top: 80px; /* Hauteur par défaut du header */
  min-height: calc(100vh - 80px);
}

/* Header Styles */
.header {
  background: var(--background);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  height: 80px; /* Expliciter la hauteur du header */
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  width: 100%;
}

.logo a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-menu li {
  margin: 0;
  padding: 0;
}

.nav-menu a {
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
  white-space: nowrap;
  display: block;
  padding: 0.5rem 0;
}

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

.cta-button a {
  background: var(--primary-color);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  transition: background-color 0.3s ease;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(120deg, 
        rgba(37, 99, 235, 0.95) 0%,
        rgba(37, 99, 235, 0.97) 50%,
        rgba(30, 64, 175, 0.98) 100%
    );
    padding: 6rem 0 4rem;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at top right,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 60%
    );
    pointer-events: none;
}

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

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  opacity: 0.9;
}

.hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-cta .btn {
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-cta .btn-primary {
  background: white;
  color: var(--primary-color);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-primary:hover {
  background: var(--light-background);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.hero-cta .btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.hero-cta .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Project Section */
.project-section {
    padding: 6rem 0;
    background: var(--light-background);
    position: relative;
    overflow: hidden;
}

.project-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at bottom left,
        rgba(37, 99, 235, 0.05) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.project-section .container {
    max-width: 1400px;
    text-align: center;
}

.project-section p {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.25rem;
    color: var(--light-text);
    margin-top: 1.5rem;
    line-height: 1.8;
}

/* Trust Bar */
.trust-bar {
  padding: 4rem 0;
  background: var(--light-background);
  border-top: 1px solid var(--border-color);
}

.trust-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 1rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--light-text);
  font-size: 1.1rem;
}

/* Section Styles */
h2.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin: 0 0 2rem 0;
    color: var(--text-color);
    padding: 0;
    line-height: 1.2;
}

@media (max-width: 1200px) {
    h2.section-title {
        font-size: 2rem;
        white-space: normal;
    }
}

@media (max-width: 768px) {
    h2.section-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* Ajustement des espacements entre sections */
section:has(.cta-content) + section {
    padding-top: 2rem;
}

/* Pain Points Section */
.pain-points {
  padding: 4rem 0;
  background: white;
}

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

.challenge-card {
  background: var(--light-background);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.challenge-card:hover {
  transform: translateY(-5px);
}

.challenge-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

/* Solutions Section */
.solutions {
  padding: 4rem 0;
  background: var(--light-background);
}

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

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

.solution-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.solution-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.solution-card h3 {
  color: var(--text-color);
  margin-bottom: 0.75rem;
  font-size: 1.5rem;
}

.solution-card p {
  color: var(--light-text);
}

.solutions + .why-us {
    padding-top: 2rem;
}

/* Expertise Section */
.expertise {
  padding: 4rem 0;
  background: white;
}

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

.expertise-card {
  background: var(--light-background);
  padding: 2.5rem;
  border-radius: 1rem;
}

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

.expertise-card p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.tech-stack {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
}

.flex-grow-1 {
  flex-grow: 1;
}

.tech-stack li {
  background: white;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-weight: 500;
  color: var(--text-color);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Social Proof Section */
.social-proof {
  padding: 3rem 0;
  background: white;
}

.logos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2.5rem;
  align-items: center;
  justify-items: center;
  margin-top: 0;
}

.logo-item {
  width: 180px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  padding: 1rem;
}

.logo-item:hover {
  opacity: 1;
}

.logo-item img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* About Section */
.about {
  padding: 3rem 0;
  background: white;
}

.about-content {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: center;
}

.about-content p:first-of-type {
  margin-top: 0;
}

.about-content p {
  color: var(--light-text);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.about-content a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
}

/* CTA Section */
.cta-section {
  padding: 4rem 0;
  background: linear-gradient(
    135deg,
    var(--primary-color) 0%,
    var(--secondary-color) 100%
  );
  color: white;
  text-align: center;
}

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

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

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.cta-content p {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
}

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

.cta-buttons .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  font-weight: 600;
  font-size: 1.1rem;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.cta-buttons .btn i {
  font-size: 1.2rem;
}

.cta-buttons .btn-primary {
  background: var(--primary-color);
  color: white;
}

.cta-buttons .btn-primary:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

.cta-buttons .btn-secondary {
  background: white;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}

.cta-buttons .btn-secondary:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact {
  padding: 6rem 0;
}

.contact h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.contact-info {
  padding: 2rem;
  background: var(--light-background);
  border-radius: 1rem;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.info-item i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

/* Footer */
.footer {
    background: linear-gradient(
        180deg,
        var(--text-color) 0%,
        rgba(31, 41, 55, 0.98) 50%,
        rgba(31, 41, 55, 0.99) 100%
    );
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        circle at bottom left,
        rgba(255, 255, 255, 0.03) 0%,
        transparent 70%
    );
    pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-section h4 {
  margin-bottom: 1.5rem;
  color: white;
  font-size: 1.2rem;
}

.footer-address {
  font-style: normal;
  margin-bottom: 1.5rem;
  color: var(--light-text);
  line-height: 1.8;
}

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

.footer-contact p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--light-text);
}

.footer-contact a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: white;
}

.footer-contact i {
  color: var(--primary-color);
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.75rem;
}

.footer-section a {
  color: var(--light-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-section a:hover {
  color: white;
}

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

.social-links a {
  font-size: 1.5rem;
  color: var(--light-text);
  transition: color 0.3s ease;
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--light-text);
}

/* Responsive Design */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 2px;
  background: var(--text-color);
  transition: all 0.3s ease;
}

/* Tablette styles */
@media (max-width: 1024px) and (min-width: 769px) {
  .nav-container {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem 0;
    height: auto;
  }

  .logo {
    flex: 1;
    margin-bottom: 0;
  }

  .nav-menu {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    margin-top: 1rem;
  }

  .nav-menu a {
    font-size: 0.9rem;
  }

  .nav-menu li {
    text-align: center;
  }

  .cta-button {
    margin-left: 0;
  }

  .cta-button a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }

  /* Ajuster la hauteur du header pour le contenu qui suit */
  .header {
    height: auto;
  }

  main {
    margin-top: 140px; /* Ajuster en fonction de la hauteur du header */
  }

  .cta-content {
    max-width: 90%;
    padding: 0 1.5rem;
  }

  .cta-content p {
    font-size: 1.2rem;
    line-height: 1.5;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 2rem;
    right: 2rem;
    background: var(--background);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    margin: 0;
    padding: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border-radius: 0.25rem;
    overflow: hidden;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
  }

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

  .nav-menu a {
    padding: 0.75rem 1.5rem;
    white-space: normal;
    text-align: left;
    width: 100%;
  }

  .nav-menu .cta-button {
    margin: 0;
    padding: 0;
    width: 100%;
  }

  .nav-menu .cta-button a {
    background: var(--primary-color);
    color: white;
    margin: 0.5rem 1.5rem;
    border-radius: 0.25rem;
    text-align: center;
    width: auto;
    display: block;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

  .hero-cta {
    flex-direction: column;
    padding: 0 1rem;
  }

  .hero-cta .btn {
    width: 100%;
    text-align: center;
  }

  .trust-stats {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    gap: 1rem;
    padding: 0 1rem;
  }

  .cta-buttons .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .cta-section {
    padding: 3rem 0;
  }

  .cta-content {
    padding: 0 1.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-content p {
    font-size: 1.1rem;
    line-height: 1.4;
    max-width: 100%;
  }

  .logos-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

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

  .pain-points,
  .solutions,
  .expertise,
  .social-proof,
  .about,
  .cta-section {
    padding: 2.5rem 0;
  }
}

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

  .stat-number {
    font-size: 2rem;
  }

  .logos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .logo-item {
    width: 120px;
    height: 70px;
  }
}

/* Page Hero */
.page-hero {
    height: 225.6px;
    padding: 0;
    background: linear-gradient(
        135deg,
        var(--primary-color) 0%,
        var(--secondary-color) 100%
    );
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.page-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    height: 100%;
}

.page-hero-content {
    text-align: left;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.page-hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0;
}

.hero-image-container {
    height: 225.6px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.hero-image {
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 70% 30% 50% 50% / 60% 40% 60% 40%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: border-radius 0.8s ease;
}

.hero-image:hover {
    border-radius: 30% 70% 40% 60% / 40% 50% 50% 60%;
}

/* Tablette */
@media (max-width: 1024px) and (min-width: 769px) {
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .hero-image-container {
        padding: 0.75rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .page-hero {
        height: auto;
        min-height: 225.6px;
        padding: 1rem 0;
    }

    .page-hero .container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .page-hero-content {
        text-align: center;
    }

    .page-hero h1 {
        font-size: 1.75rem;
    }

    .page-hero p {
        font-size: 1rem;
        margin: 0 auto;
    }

    .hero-image-container {
        height: 150px;
        padding: 0.5rem;
    }
}

/* Services Detail Page */
.services-detail {
  padding: 4rem 0;
}

.service-category {
  margin-bottom: 4rem;
}

.service-category h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2rem;
  color: var(--text-color);
}

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

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

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

.service-card h3 {
  margin-bottom: 1rem;
  color: var(--text-color);
}

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

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

.service-card ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* CTA Section */
.cta-section {
  background: var(--light-background);
  padding: 4rem 0;
  text-align: center;
}

.cta-section h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.cta-section p {
  font-size: 1.1rem;
  color: var(--light-text);
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

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

/* Active Navigation Link */
.nav-menu a.active {
  color: var(--primary-color);
  font-weight: 600;
}

/* Override active state for CTA button */
.nav-menu .cta-button a.active {
  color: white;
  background: var(--secondary-color);
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 40px;
  top: 80px;
  bottom: -40px;
  width: 2px;
  background: var(--primary-color);
  opacity: 0.2;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--primary-color);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: bold;
}

.step-content {
  padding-top: 1rem;
}

.step-content h2 {
  color: var(--text-color);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.step-content p {
  color: var(--light-text);
  margin-bottom: 1rem;
}

.step-content ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.step-content ul li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.step-content ul li::before {
  content: "✓";
  color: var(--primary-color);
  position: absolute;
  left: 0;
}

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background: var(--light-background);
}

.benefits h2:not(.section-title) {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

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

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

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-card i {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
}

.benefit-card h3 {
  color: var(--text-color);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--light-text);
}

@media (max-width: 768px) {
  .step {
    grid-template-columns: 60px 1fr;
    gap: 1.5rem;
  }

  .step-number {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .step:not(:last-child)::after {
    left: 30px;
    top: 60px;
  }

  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

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

.faq-categories {
  display: grid;
  gap: 3rem;
}

.faq-category {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-category h2 {
  color: var(--primary-color);
  margin-bottom: 2rem;
  font-size: 1.75rem;
}

.faq-list {
  display: grid;
  gap: 1.5rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 1.5rem;
}

.faq-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.faq-item h3 {
  color: var(--text-color);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item h3::after {
  content: "\f107";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  transition: transform 0.3s ease;
}

.faq-item.active h3::after {
  transform: rotate(180deg);
}

.faq-answer {
  color: var(--light-text);
}

.faq-answer ul {
  list-style: none;
  margin-top: 1rem;
  margin-left: 1.5rem;
}

.faq-answer ul li {
  position: relative;
  margin-bottom: 0.5rem;
}

.faq-answer ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: -1.5rem;
}

.faq-cta {
  text-align: center;
  margin-top: 4rem;
  padding: 3rem;
  background: white;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.faq-cta h2 {
  margin-bottom: 1rem;
}

.faq-cta p {
  margin-bottom: 2rem;
  color: var(--light-text);
}

/* Contact Page Styles */
.contact-details {
  padding: 4rem 0;
}

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

.contact-info-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.contact-info-card i {
  font-size: 2rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-info-card h3 {
  margin-bottom: 1rem;
}

.contact-info-card p,
.contact-info-card address {
  color: var(--light-text);
  font-style: normal;
}

.contact-info-card small {
  display: block;
  margin-top: 0.5rem;
  color: var(--light-text);
}

.contact-form-section {
  padding: 4rem 0;
  background: var(--light-background);
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--background);
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.form-container h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.map-section {
  padding: 4rem 0;
}

.map-container {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.social-section {
  padding: 4rem 0;
  background: var(--light-background);
  text-align: center;
}

.social-links.large {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: var(--text-color);
  font-weight: 500;
  transition: color 0.3s ease;
}

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

.social-link i {
  font-size: 1.5rem;
}

/* Partner Page Styles */
.benefits {
  padding: 4rem 0;
}

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

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

.benefit-card:hover {
  transform: translateY(-5px);
}

.requirements {
  padding: 4rem 0;
  background: var(--light-background);
}

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

.requirement-card {
  background: var(--background);
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.requirement-card h3 {
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.requirement-card ul {
  list-style: none;
  margin-left: 1.5rem;
}

.requirement-card ul li {
  position: relative;
  margin-bottom: 0.5rem;
  color: var(--light-text);
}

.requirement-card ul li::before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  left: -1.5rem;
}

.application-form {
  padding: 4rem 0;
}

/* Form Enhancements */
.checkbox-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}

.checkbox-container input[type="checkbox"] {
  width: auto;
  margin-right: 0.5rem;
}

.checkbox-container .checkmark {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid var(--border-color);
  border-radius: 4px;
  position: relative;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  color: var(--primary-color);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid,
  .requirements-grid {
    grid-template-columns: 1fr;
  }

  .form-container {
    padding: 2rem;
  }

  .social-links.large {
    flex-direction: column;
    align-items: center;
  }
}

/* Plaquette Landing Page */
.plaquette-form-section {
  padding: 4rem 0;
  background: var(--light-background);
}

.plaquette-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: white;
  padding: 3rem;
  border-radius: 1rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.plaquette-content h2 {
  font-size: 1.75rem;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.plaquette-features {
  list-style: none;
  padding: 0;
}

.plaquette-features li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
  color: var(--text-color);
  font-size: 1.1rem;
}

.plaquette-features li i {
  color: var(--success-color);
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.plaquette-form {
  background: var(--light-background);
  padding: 2rem;
  border-radius: 0.75rem;
}

.plaquette-form .form-group {
  margin-bottom: 1.5rem;
}

.plaquette-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-color);
  font-weight: 500;
}

.plaquette-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--border-color);
  border-radius: 0.5rem;
  font-size: 1rem;
  transition: border-color 0.3s ease;
}

.plaquette-form input:focus {
  outline: none;
  border-color: var(--primary-color);
}

.plaquette-form button {
  width: 100%;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.plaquette-form button i {
  font-size: 1.2rem;
}

.privacy-notice {
  margin-top: 1.5rem;
  color: var(--light-text);
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.privacy-notice i {
  color: var(--primary-color);
}

/* Responsive adjustments for plaquette page */
@media (max-width: 768px) {
  .plaquette-form-container {
    grid-template-columns: 1fr;
    padding: 2rem;
    gap: 2rem;
  }

  .plaquette-form {
    padding: 1.5rem;
  }

  .plaquette-features li {
    font-size: 1rem;
  }
}

/* Services Page Layout */
.services-content-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 2rem 0;
    width: 100%;
}

.services-intro {
    padding: 0;
    background: var(--light-background);
}

.services-intro .container {
    max-width: 1400px; /* Augmenter la largeur maximale du conteneur */
    width: 100%;
    padding: 0 2rem;
}

.services-intro>.container>p>span {
  display: block;
}
.services-intro>.container>p>span.srv-title-1 {
  color: var(--text-color);
  font-weight: 700;
  font-size: 1.25rem;
}
.services-intro>.container>p>span.srv-title-2 {
  color: var(--text-color);
  font-weight: 600;
  font-size: 1.1rem;
}
.container>.link-teams {
  width: 100%;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
.container>.link-teams>div{
  width: 100%;
  text-align: center;
}
.paraG {
  display: block;
  margin-bottom: 8px;
}
.expertise-details h3,
.expertise-details h2 {
  margin: 12px 0 5px 0;
}
.list {
  margin-left: 35px;
}
.tab tr th,
.tab tr td {
  text-align: left;
  padding: 5px;
  border: solid var(--border-color) .5px;
}
.tab {
  border-collapse: collapse;
}
.container>.link-teams>div>a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 18px;
}

.intro-content {
    height: 100%;
    padding: 0.5rem 0 0.5rem 1.5rem;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 6px solid var(--primary-color);
}

.intro-content h2 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.services-details {
    padding: 0;
    background: none;
}

.services-grid {
    display: block;
    max-width: none;
}

.service-card {
    height: 100%;
}

@media (max-width: 1200px) {
    .services-content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

    .service-card {
        margin-bottom: 0;
    }
}

.desktop-break {
  display: none;
}

@media (min-width: 768px) {
  .desktop-break {
    display: block;
  }
}

.intro-content .lead {
  font-size: 1.25rem;
  color: var(--light-text);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.services-intro h2 {
  font-size: 1.75rem;
  color: var(--primary-color);
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.services-intro p:last-child {
  color: var(--light-text);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.intro-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.intro-card {
  background: var(--light-background);
  padding: 2rem;
  border-radius: 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.intro-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

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

.intro-card p {
  color: var(--light-text);
}

/* Services Details Section */
.services-details {
  padding: 4rem 0;
  background: var(--light-background);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.service-content {
  padding: 2rem;
}

.service-icon {
  font-size: 3rem;
  margin: 0.1rem 0 0.1rem;
}

.service-content h2 {
  font-size: 1.75rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.service-content p {
  color: var(--light-text);
  margin-bottom: 1.5rem;
}

.service-features {
  list-style-type: none;
  padding: 0;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.service-features li {
  display: flex;
  align-items: baseline;
  color: var(--text-color);
  padding: 0;
  margin: 0;
  line-height: 1;
}

.service-features li::before {
  display: none;
  content: none;
}

.service-features li + li {
  margin-top: 2px;
}

.service-features li i {
  color: var(--success-color);
  margin-right: 0.75rem;
  font-size: 1rem;
  flex-shrink: 0;
  position: relative;
  top: 0.1em;
  display: inline-flex;
  align-items: baseline;
  line-height: 0;
}

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

.service-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.05rem 1.5rem;
  background: var(--primary-color);
  color: white;
  text-decoration: none;
  border-radius: 0.5rem;
  font-weight: 500;
  transition: background-color 0.3s ease;
  line-height: 1;
}

.service-cta .btn .fas.fa-arrow-right {
  font-size: 0.9em;
  color: rgba(255, 255, 255, 0.9);
  transform: translateY(15px);
}

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

/* Benefits Section */
.benefits {
  padding: 4rem 0;
  background: white;
}

.benefits h2:not(.section-title) {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.benefit-card {
  text-align: center;
  padding: 2rem;
  background: var(--light-background);
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-5px);
}

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--text-color);
}

.benefit-card p {
  color: var(--light-text);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .intro-content h2 {
    font-size: 2rem;
  }

  .service-content h2 {
    font-size: 1.5rem;
  }

  .benefits h2:not(.section-title) {
    font-size: 2rem;
  }

  .intro-cards,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .intro-content .lead {
    font-size: 1.1rem;
  }

  .service-content {
    padding: 1.5rem;
  }

  .benefit-card {
    padding: 1.5rem;
  }
}

/* Services Info Section */
.services-info {
  padding: 4rem 0;
  background: var(--light-background);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.info-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

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

.info-card ul li {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
  position: relative;
  color: var(--text-color);
}

.info-card ul li::before {
  content: "•";
  color: var(--primary-color);
  position: absolute;
  left: 0;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .info-grid {
    grid-template-columns: 1fr;
  }

  .info-card {
    padding: 1.5rem;
  }
}

.expertise-details {
  padding: 4rem 0;
  background: white;
}

.expertise-intro {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.expertise-intro h2 {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1.5rem;
}

.expertise-intro p {
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.expertise-card {
  background: var(--light-background);
  padding: 2rem 1.5rem;
  border-radius: 1rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  height: 100%;
  display: flex;
  flex-direction: column;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.expertise-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.expertise-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
}

.expertise-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
  margin: 0;
}

.tech-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.tech-list li {
  padding: 0.5rem 0;
  color: var(--text-color);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  line-height: 1.4;
}

.tech-list li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.working-method {
  padding: 4rem 0;
  background: var(--light-background);
}

.working-method h2:not(.section-title) {
  text-align: center;
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 2.5rem;
}

.working-method .container > p {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2rem;
  color: var(--text-color);
  font-size: 1.1rem;
  line-height: 1.6;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.method-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  text-align: left;
  transition: transform 0.3s ease;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}

.method-card:hover {
  transform: translateY(-5px);
}

.method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.75rem;
}

.method-icon {
  font-size: 2rem;
  display: flex;
  align-items: center;
}

.method-card h3 {
  color: var(--primary-color);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
  margin: 0;
}

.method-subtitle {
  color: var(--text-color);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
  line-height: 1.4;
}

.method-card p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.method-card p:last-child {
  margin-bottom: 0;
}

@media (max-width: 1200px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .expertise-intro,
  .working-method .container > p {
    padding: 0 1rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
  }

  .method-grid {
    grid-template-columns: 1fr;
  }

  .expertise-card,
  .method-card {
    padding: 1.5rem;
  }

  .method-card h3 {
    font-size: 1.75rem;
  }

  .method-subtitle {
    font-size: 1.1rem;
  }

  .method-icon {
    font-size: 1.75rem;
  }
}

.why-us {
  padding: 4rem 0;
  background: var(--light-background);
}

.why-us .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.why-us h2:not(.section-title) {
  font-size: 2rem;
  color: var(--text-color);
  margin-bottom: 1rem;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

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

.why-us-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
  display: inline-block;
}

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

.why-us-card p {
  color: var(--text-color);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.why-us-card strong {
  color: var(--text-color);
  font-weight: 600;
}

@media (max-width: 1024px) {
  .why-us-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 1rem;
  }
}

@media (max-width: 768px) {
  .why-us {
    padding: 3rem 0;
  }

  .why-us-grid {
    grid-template-columns: 1fr;
  }

  .why-us h2:not(.section-title) {
    font-size: 1.75rem;
  }

  .why-us-card {
    padding: 1.5rem;
  }

  .why-us-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
  }
}

/* Scroll Padding for Fixed Header */
html {
  scroll-padding-top: 100px; /* Hauteur du header + marge de sécurité */
  scroll-behavior: smooth;
}

/* Styles spécifiques pour les cartes de la page Nos services */
.services-content-grid .service-card.dev-team .service-content {
    border-top: 20px solid #10b981; /* Vert */
    border-radius: 1rem;
}

.services-content-grid .service-card.qa-team .service-content {
    border-top: 20px solid #f97316; /* Orange */
    border-radius: 1rem;
}

/* Ajuster le style de base des cartes dans la grille services */
.services-content-grid .service-card {
    border-radius: 0; /* Retirer l'arrondi de la carte elle-même */
    background: none; /* Retirer le fond de la carte elle-même */
    box-shadow: none; /* Retirer l'ombre de la carte elle-même */
}

.services-content-grid .service-content {
    border-radius: 1rem;
    background: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Process Steps Styles */
.process-steps {
    /* margin: 1rem 0; */
    display: flex;
    flex-direction: column;
    gap: 0rem;
    padding: 0rem;
}

.step {
    background: white;
    border-radius: 0.75rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.step-number {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: bold;
    flex-shrink: 0;
}

.step-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0 0 1rem 0;
    color: var(--primary-color) !important;
    display: block;
    visibility: visible;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.step-content {
    padding: 1rem;
}

.step-content p {
    margin-bottom: 0.75rem;
    color: var(--text-color);
    line-height: 1.6;
}

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

.step-content ul {
    margin: 0.75rem 0;
    padding-left: 1.25rem;
}

.step-content li {
    margin-bottom: 0.25rem;
    color: var(--text-color);
    line-height: 1.5;
}

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

/* Responsive Design for Process Steps */
@media (max-width: 768px) {
    .process-steps {
        gap: 0.75rem;
    }
    
    .step-header {
        padding: 0.75rem;
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .step-number {
        width: 2rem;
        height: 2rem;
        font-size: 1rem;
    }
    
    .step-title {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.25rem;
    }
    
    .step-content {
        padding: 0.75rem;
    }
    
    .step-content p {
        margin-bottom: 0.5rem;
    }
    
    .step-content ul {
        margin: 0.5rem 0;
    }
}