.chauffeur-container {
    min-height: 100vh;
    background-color: #f9fafb;
    color: #4a5568;
    font-family: 'Open Sans',sans-serif;
  }
  
  /* Content Styles */
  .chauffeur-content {
    padding: 3rem 0;
    width: 100%;
  }
  
  .chauffeur-content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
  }
  
  .chauffeur-main {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .chauffeur-text-content {
    max-width: 900px;
    width: 100%;
  }
  
  /* Titles */
  .chauffeur-main-title {
    font-size: 2.4rem;
    color: #1e266d;
    margin-bottom: 2.5rem;
    font-weight: 700;
    text-align: center;
    text-shadow: 0 2px 6px rgba(30, 38, 109, 0.15);
  }
  
  .chauffeur-description h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #1e266d;
    margin: 2rem 0 1rem;
    border-left: 4px solid #1e266d;
    padding-left: 0.75rem;
  }
  
  /* Paragraphs */
  .chauffeur-description {
    text-align: left;
    line-height: 1.8;
    font-size: 1.1rem;
  }
  
  .chauffeur-description p {
    margin-bottom: 1.5rem;
  }
  
  /* Highlighted Section */
  .chauffeur-highlight {
    font-weight: 500;
    color: #1e266d;
    font-size: 1.15rem;
    margin: 2rem 0;
    padding: 1.25rem;
    background-color: #f0f4ff;
    border-left: 4px solid #1e266d;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(30, 38, 109, 0.08);
  }
  
  /* Custom Bullet Lists */
  .chauffeur-description ul {
    list-style: none;
    padding-left: 1rem;
    margin-bottom: 2rem;
  }
  
  .chauffeur-description ul li {
    position: relative;
    padding-left: 1.8rem;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }
  
  .chauffeur-description ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    top: 0;
    color: #1e266d;
    font-weight: bold;
    font-size: 1rem;
  }
  
  /* Links or Contact info emphasis */
  .chauffeur-description p:last-child {
    font-weight: 600;
    color: #2d3748;
  }
  
  /* Responsive Styles */
  @media (max-width: 768px) {
    .chauffeur-main-title {
      font-size: 2rem;
    }
  
    .chauffeur-description {
      font-size: 1rem;
    }
  
    .chauffeur-description h3 {
      font-size: 1.2rem;
    }
  }
  
  @media (max-width: 480px) {
    .chauffeur-main-title {
      font-size: 1.7rem;
    }
  
    .chauffeur-highlight {
      font-size: 1rem;
      padding: 1rem;
    }
  
    .chauffeur-description ul li {
      font-size: 0.95rem;
    }
  }
  