  /* About Page Specific Styles */
  .about-hero {
      background: var(--primary);
      padding: 100px 0;
      text-align: center;
  }

  .about-hero h1 {
      color: white;
      font-size: 3rem;
      font-weight: 700;
      margin: 0;
  }

  .founder-section,
  .history-section,
  .atouts-section,
  .philosophy-section {
      padding: 80px 0;
  }

  .history-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 40px;
      align-items: stretch;
  }

  .about-stats-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
  }

  .founder-section {
      position: relative;
      overflow: hidden;
  }

  .founder-wrapper {
      position: relative;
      padding: 50px 0;
  }

  .founder-content {
      position: relative;
      z-index: 10;
      width: 100%;
      max-width: 100%;
  }

  .founder-bg-shape {
      position: absolute;
      right: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 450px;
      height: 90%;
      border: 20px solid var(--secondary);
      opacity: 0.5;
      z-index: 1;
  }

  .founder-content h2,
  .history-content h2 {
      position: relative;
      z-index: 10;
      color: var(--primary);
      font-weight: 700;
  }

  .history-bg-shape {
      position: absolute;
      left: 80%;
      top: 50%;
      transform: translate(-50%, -50%);
      width: 40%;
      height: 110%;
      border: 20px solid var(--secondary);
      opacity: 0.5;
      z-index: 1;
  }

  .history-text-wrapper {
      position: relative;
  }

  .founder-content p {
      position: relative;
      z-index: 10;
      color: #444;
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 1rem;
  }

  .founder-signature {
      color: var(--primary);
      font-style: italic;
      margin-top: 30px;
      font-size: 1.1rem;
      font-weight: 600;
  }

  .history-content h2 {
      color: var(--primary);
      font-size: 2rem;
      font-weight: 700;
  }

  .history-content p {
      color: #666;
      line-height: 1.8;
      margin-bottom: 20px;
      font-size: 0.95rem;
  }

  .orange-border-box-left {
      position: absolute;
      border: 4px solid var(--secondary);
      width: 100%;
      height: 100%;
      border-radius: 4px;
      top: -20px;
      left: -20px;
      z-index: 0;
  }

  .history-image-box {
      position: relative;
      height: 100%;
  }

  .history-image {
      position: relative;
      z-index: 1;
      border-radius: 4px;
      overflow: hidden;
      height: 100%;
  }

  .history-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .section-title {
      color: var(--primary);
      font-size: 2.5rem;
      margin-bottom: 50px;
      font-weight: 700;
  }

  /* New Atouts Styles */
  .atouts-header-box {
      background: white;
      display: inline-block;
      padding: 10px 30px;
      margin-bottom: 30px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
      border-radius: 4px;
  }

  .atouts-header-box h2 {
      margin: 0;
      color: var(--primary);
      font-weight: 800;
      font-size: 1.8rem;
  }

  .atouts-new-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
  }

  .atout-card {
      background: white;
      padding: 40px;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
      border-radius: 4px;
      transition: transform 0.3s;
  }

  .atout-card:hover {
      transform: translateY(-5px);
  }

  .atout-card h3 {
      color: var(--secondary);
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-weight: 600;
  }

  .atout-card p {
      font-size: 0.95rem;
      color: #555;
      line-height: 1.6;
      margin: 0;
  }

  .full-width-card {
      grid-column: span 2;
  }

  /* Mobile adjust for Atouts */
  @media (max-width: 768px) {
      .atouts-new-grid {
          grid-template-columns: 1fr;
      }

      .full-width-card {
          grid-column: auto;
      }
  }

  .about-stats-section {
      background-image: url('../assets/img/chiffre-clés.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      padding: 80px 0;
      position: relative;
  }

  .stats-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(6, 35, 101, 0.85);
      /* Primary color with opacity */
      z-index: 1;
  }

  .about-stats-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 40px;
      text-align: center;
  }

  .about-stat-item h2 {
      color: white;
      font-size: 6rem;
      font-weight: 700;
      margin-bottom: 15px;
  }

  .about-stat-item p {
      color: white;
      font-size: 1rem;
      line-height: 1.4;
  }

  .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 40px;
      margin-top: 50px;
  }

  .philosophy-item {
      text-align: center;
  }

  .philosophy-image {
      width: 100%;
      height: 250px;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 20px;
  }

  .philosophy-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
  }

  .philosophy-item h4 {
      color: var(--primary);
      font-size: 1.3rem;
      margin-bottom: 15px;
      font-weight: 700;
  }

  .philosophy-item p {
      color: #666;
      line-height: 1.6;
      font-size: 0.95rem;
  }

  /* Mobile Responsive Styles - About Page Only */
  @media (max-width: 768px) {
      .about-hero h1 {
          font-size: 2rem;
          padding: 0 20px;
      }

      .history-grid,
      .about-stats-grid {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .founder-bg-shape,
      .history-bg-shape {
          display: none;
      }

      .founder-content,
      .history-text-wrapper {
          max-width: 100%;
          padding: 0;
      }

      .history-image img {
          height: 300px;
      }

      .orange-border-box-left {
          top: -10px;
          left: -10px;
      }

      .atouts-grid {
          grid-template-columns: 1fr;
          gap: 30px;
      }

      .about-stats-grid {
          grid-template-columns: repeat(2, 1fr);
          gap: 30px;
      }

      .about-stat-item h2 {
          font-size: 3rem;
      }

      .philosophy-grid {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .section-title {
          font-size: 2rem;
      }
  }

  @media (max-width: 480px) {
      .about-hero {
          padding: 60px 0;
      }

      .about-hero h1 {
          font-size: 1.8rem;
      }

      .founder-content h2,
      .history-content h2 {
          font-size: 1.5rem;
      }

      .about-stats-grid {
          grid-template-columns: 1fr;
          gap: 30px;
          text-align: right;
          padding-right: 20px;
      }

      .about-stat-item {
          display: flex;
          flex-direction: column;
          align-items: flex-start;
      }

      .about-stat-item h2 {
          font-size: 3.5rem;
          margin-bottom: 5px;
          line-height: 1;
      }

      .about-stat-item p {
          font-size: 0.9rem;
          margin: 0;
      }

      .philosophy-image {
          height: 200px;
      }
  }

  /* Additional Philosophy Styles */
  .philosophy-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
  }

  .philosophy-card {
      background: #f4f6f9;
      border-radius: 4px;
      /* Optional rounded corners */
      overflow: hidden;
      height: 100%;
      display: flex;
      flex-direction: column;
  }

  .philosophy-image img {
      width: 100%;
      height: 250px;
      object-fit: cover;
      display: block;
  }

  .philosophy-content {
      padding: 30px;
      flex-grow: 1;
  }

  .philosophy-content h3 {
      color: var(--primary);
      font-size: 1.5rem;
      margin-bottom: 20px;
      font-weight: 700;
  }

  .philosophy-content p {
      color: #555;
      line-height: 1.6;
      margin-bottom: 0;
      font-size: 0.95rem;
  }

  .values-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  .values-list li {
      margin-bottom: 10px;
      color: #333;
      font-weight: 500;
      display: flex;
      align-items: center;
  }

  .values-list li i {
      margin-right: 10px;
      color: #333;
      /* Dark icon as per image */
      font-size: 0.9rem;
  }

  @media (max-width: 992px) {
      .philosophy-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 768px) {
      .philosophy-grid {
          grid-template-columns: 1fr;
      }
  }

  /* Custom CSS cleaned up */