.about {
    background: #f8f8f8;
    padding: 100px 8%;
  }
  
  .about-container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  /* LEFT SIDE */
  .about-label {
    color: #f4a000;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }
  
  .about-content h1 {
    font-size: 50px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 20px;
    font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif;
  }
  
  .about-content h1 span {
    color: #f4a000;
    display: block;
  }
  
  .about-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
  }
  
  /* CHECKLIST */
  .about-list {
    list-style: none;
    padding: 0;
  }
  
  .about-list li {
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
    font-weight: 500;
  }
  
  .about-list li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: #f4a000;
    font-weight: bold;
  }
  
/* RIGHT SIDE CARDS */
.about-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .about-card {
    background: white;
    padding: 25px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: transform 0.3s ease;
  }
  
  .about-card:hover {
    transform: translateY(-5px);
  }
  
  .about-card h3 {
    margin-bottom: 8px;
    font-size: 20px;
  }
  
  .about-card p {
    color: #777;
    font-size: 14px;
  }
  @media (max-width: 768px) {
    .about, .services {
        padding: 60px 5%;
    }
}

@media (max-width: 480px) {
  .about-container {
    display: flex;
    flex-direction: column; /* stack content and cards */
    gap: 40px;
    align-items: center;
}

.about-cards {
    flex-direction: column; /* cards stack vertically */
    gap: 20px;
    max-width: 600px;
    align-items: center;
}


}
