    /* ══════════════════════════════
       ABOUT SECTION
    ══════════════════════════════ */
    .about-section {
      padding: 70px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }
 
    .about-inner {
      display: flex;
      align-items: flex-start;
      gap: 55px;
    }
 
    /* LEFT: IMAGE */
    .about-image {
      flex: 0 0 45%;
      max-width: 45%;
      align-self: stretch;
    }
 
    .img-placeholder {
      width: 100%;
      height: 100%;
      min-height: 320px;
      aspect-ratio: unset;
      background: #e8f4fb;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }
 
    .img-placeholder img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
 
    /* Rating chip – top right */
    .rating-chip {
      position: absolute;
      top: 18px;
      right: 18px;
      background: #fff;
      border-radius: 40px;
      padding: 10px 16px;
      display: flex;
      align-items: center;
      gap: 7px;
      box-shadow: 0 4px 18px rgba(0,0,0,0.14);
      z-index: 2;
    }
    .rating-chip .stars {
      color: #f5a623;
      font-size: 0.95rem;
      letter-spacing: 1px;
    }
    .rating-chip .rating-text {
      font-size: 0.82rem;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.4;
    }
    .rating-chip .rating-text span {
      display: block;
      font-weight: 500;
      color: #888;
      font-size: 0.70rem;
    }
 
    /* 24/7 badge – bottom left */
    .badge-overlay {
      position: absolute;
      bottom: 18px;
      left: 18px;
      background: #0d9044;
      color: #fff;
      border-radius: 8px;
      padding: 12px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: 0 6px 20px rgba(13,144,68,0.35);
      z-index: 2;
    }
    .badge-overlay .badge-num {
      font-size: 2rem;
      font-weight: 700;
      line-height: 1;
    }
    .badge-overlay .badge-text {
      font-size: 0.75rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      line-height: 1.5;
    }
 
    /* RIGHT: CONTENT */
    .about-content {
      flex: 1;
    }
 
    .about-content h2 {
      font-size: 1.9rem;
      font-weight: 700;
      color: #1a1a1a;
      line-height: 1.35;
      margin-bottom: 14px;
    }
 
    .blue-bar {
      width: 55px;
      height: 4px;
      background: #0d9044;
      border-radius: 2px;
      margin-bottom: 24px;
    }
 
    .about-content p {
      font-size: 0.96rem;
      font-weight: 500;
      color: #444;
      line-height: 1.9;
      margin-bottom: 16px;
    }
 
    .btn-readmore {
      display: inline-block;
      background: #0d9044;
      color: #ffffff;
      text-decoration: none;
      padding: 13px 34px;
      border-radius: 4px;
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.05em;
      text-transform: uppercase;
      margin-top: 10px;
      transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
      box-shadow: 0 4px 14px rgba(26,158,212,0.35);
    }
 
    .btn-readmore:hover {
      background: #1487b8;
      transform: translateY(-2px);
      box-shadow: 0 8px 22px rgba(26,158,212,0.45);
    }
 
    /* ══════════════════════════════
       INFO SECTIONS (from images)
    ══════════════════════════════ */
    .info-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 60px;
    }
 
    .info-block {
      border-bottom: 1.5px solid #efefef;
      padding: 28px 0;
    }
    .info-block:last-child {
      border-bottom: none;
    }
 
    .info-block h3 {
      font-size: 1.05rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 10px;
    }
 
    .info-block p {
      font-size: 0.93rem;
      color: #444;
      line-height: 1.85;
    }
 
    .info-block ul {
      margin: 10px 0 0 20px;
    }
 
    .info-block ul li {
      font-size: 0.93rem;
      color: #444;
      line-height: 1.85;
      margin-bottom: 4px;
    }
 
    .info-block ul li strong {
      color: #1a1a1a;
    }
 
    /* ══════════════════════════════
       FAQ SECTION
    ══════════════════════════════ */
    .faq-wrapper {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 40px 70px;
    }
 
    .faq-wrapper h3 {
      font-size: 1.2rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 20px;
    }
 
    .faq-item {
      border-bottom: 1.5px solid #efefef;
      padding: 18px 0;
    }
    .faq-item:last-child {
      border-bottom: none;
    }
 
    .faq-item strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 700;
      color: #1a1a1a;
      margin-bottom: 8px;
    }
 
    .faq-item p {
      font-size: 0.91rem;
      color: #555;
      line-height: 1.8;
    }
 
    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 820px) {
      .about-inner {
        flex-direction: column;
        gap: 36px;
      }
      .about-image {
        flex: 0 0 100%;
        max-width: 100%;
      }
      .about-content h2 { font-size: 1.5rem; }
      .info-wrapper, .faq-wrapper { padding: 0 20px 50px; }
      .about-section { padding: 40px 20px; }
    }