/* About Us Page Styles - ReservationKart */

.about-hero {
    background: linear-gradient(to right, #cdedf9, #fcf9f9);
    text-align: center;
    padding: 60px 20px;
  }
  .about-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: #222;
  }
  .about-hero p {
    font-size: 18px;
    color: #555;
    margin-top: 10px;
  }
  
  .about-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
    background: #ffffff;
    gap: 40px;
  }
  .about-image img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  }
  .about-text {
    max-width: 500px;
  }
  .about-text h2 {
    font-size: 28px;
    color: #222;
    margin-bottom: 12px;
  }
  .about-text p {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
  }
  
  .about-values {
    background: #e4ebf7;
    padding: 60px 20px;
    text-align: center;
  }
  .about-values h2 {
    font-size: 30px;
    margin-bottom: 40px;
    color: #111;
  }
  .values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
  .value-box {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    width: 260px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }
  .value-box i {
    font-size: 24px;
    color: #f7b500;
    margin-bottom: 10px;
  }
  .value-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
  .value-box p {
    font-size: 14px;
    color: #555;
  }
  
  .about-testimonials {
    background: #fff;
    padding: 60px 20px;
    text-align: center;
  }
  .about-testimonials h2 {
    font-size: 30px;
    margin-bottom: 40px;
  }
  .testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
  }
  .testimonial {
    background: #f5fbff;
    border-left: 4px solid #1e90ff;
    padding: 20px 24px;
    max-width: 300px;
    border-radius: 8px;
    font-size: 15px;
    color: #333;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  }
  .testimonial strong {
    display: block;
    margin-top: 12px;
    color: #000;
  }
  
  .about-cta {
    background: #e9f5ff;
    padding: 60px 20px;
    text-align: center;
  }
  .about-cta h2 {
    font-size: 28px;
    margin-bottom: 20px;
  }
  .btn-primary {
    background: #1e90ff;
    color: #fff;
    padding: 12px 24px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
  }
  .btn-primary:hover {
    background: #0074cc;
  }
  