.about-hero-buttons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  width: 100%;
}

@media (min-width: 768px) {
  .about-hero-buttons {
    grid-template-columns: 1fr;
    width: auto;
  }
}
.para-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.about-paras {
  color: #4b5563;
  font-size: 20px;
  font-weight: 400;
  text-align: start;
  margin-bottom: 20px;
  max-width: 1200px;
}
.quote-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
.about-quote {
  color: #5c1f2e;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
  font-style: italic;
  max-width: 900px;
}
/*founder section */
.founder-section {
  padding: 60px 40px;
  background: linear-gradient(to top, #f8f5f0, white);
}
.founder-para-container {
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: start;
}
.founder-img {
  grid-row: 1;
  width: 100%;
}

.founder-grid {
  display: grid;
  column-gap: 64px;
  row-gap: 64px;
  grid-template-columns: repeat(1, 1fr);
}
.cta-quote {
  color: #d4af37;
  font-size: 24px;
  margin-bottom: 70px;
  max-width: 900px;
}
@media (min-width: 768px) {
  .founder-img {
    grid-row: auto;
  }
  .founder-grid {
    grid-template-columns: 2fr 1fr;
    width: auto;
  }
}

/*  stand*/
.stand-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.stand-card {
  background: white;
  border-radius: 12px;
  padding: 40px 30px 10px 30px;
  text-align: start;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stand-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stand-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: start;
  justify-content: start;
  border-radius: 50%;
}

.stand-icon img {
  width: 40px;
  height: 40px;
}

.stand-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #1f2a44;
  text-align: start;

  margin-bottom: 16px;
}

.stand-card p {
  font-size: 16px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.6;
  text-align: start;
}
@media (min-width: 768px) {
  .stand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stand-card {
    text-align: center;
    align-items: center;
    justify-content: center;
  }
  .stand-icon {
    align-items: center;
    justify-content: center;
  }

  .stand-card h3 {
    text-align: center;
  }

  .stand-card p {
    text-align: center;
  }
}

@media (min-width: 1024px) {
  .stand-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
