


/* About */
.about {
  background: #ffffff;
 
}

.about-content {
  display: grid;
  grid-template-columns: 1fr minmax(280px, 420px);
  gap: 20px;
  align-items: start;
  width: 92%;
  max-width: 1100px;
  margin: 40px auto 0;
  padding: 32px 20px 20px;
}

.about-content h2 {
  font-size: 38px;
  font-weight: 700;
  text-align: center;
  margin: 0 0 24px 0;
  line-height: 1.15;
}

.about-intro {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  text-align: center;
}

.about-text {
  text-align: center;
  max-width: 720px;
}

.about-img {
  width: 100%;
  border-radius: 12px;
  height: 425px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-img:hover {
  transform: translateY(-5px);
}

.about-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Values Section */
.values-section {
  padding: 40px 0;
  background: #d9d9d9;
  text-align: center;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.values-section .section-inner {
  width: 100%;
}

.values-section h3 {
  font-size: 36px;
  font-weight: 500;
  margin-bottom: 50px;
  color: #222;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-card {
  background: #fff;
  padding: 26px 20px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.12);
}

.value-icon {
  font-size: 40px;
  margin-bottom: 12px;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #fff;
}

.value-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #222;
}

.value-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* Why Choose Us Section */
.why-choose-section {
  padding: 30px 0 60px;
  background: transparent;
  margin-bottom: 100px;
  margin-top: 70px;
}

.why-choose-section h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 36px;
  color: #222;
  text-align: center;
}

.features-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.feature-item {
  display: flex;
  gap: 20px;
  padding: 20px;
  background: #fbfbfb;
  border-radius: 10px;
  transition: all 0.22s ease;
}

.feature-item:hover {
  background: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
  transform: translateX(4px);
}

.feature-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: #ff6f6f;
  color: #fff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 20px;
  flex-shrink: 0;
}

.feature-content h4 {
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 8px 0;
  color: #222;
}

.feature-content p {
  margin: 0;
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Responsive Mobile */
@media screen and (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
    gap: 24px;
    width: 95%;
    margin: 30px auto 0;
    padding: 24px 16px 16px;
  }

  .about-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .about-intro {
    font-size: 14px;
    text-align: justify;
    line-height: 1.75;
    margin: 0;
    padding: 0 4px;
    color: #444;
}


  .about-img {
    height: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
  }

  .values-section {
    padding: 30px 20px;
    min-height: auto;
  }

  .values-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .values-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 20px;
  }

  .value-card {
    padding: 20px 16px;
    min-height: auto;
    border-radius: 10px;
  }

  .value-icon {
    font-size: 32px;
    width: 56px;
    height: 56px;
  }

  .value-card h4 {
    font-size: 16px;
  }

  .value-card p {
    font-size: 13px;
  }

  .why-choose-section {
    padding: 20px 0 40px;
    margin-bottom: 60px;
    margin-top: 40px;
  }

  .why-choose-section h3 {
    font-size: 24px;
    margin-bottom: 20px;
    padding: 0 20px;
  }

  .features-list {
    max-width: 100%;
    padding: 0 20px;
    gap: 16px;
  }

  .feature-item {
    gap: 16px;
    padding: 16px;
    border-radius: 8px;
  }

  .feature-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .feature-content h4 {
    font-size: 15px;
    margin-bottom: 6px;
  }

  .feature-content p {
    font-size: 13px;
  }
}

@media screen and (max-width: 480px) {
  .about-content {
    width: 100%;
    padding: 20px 12px 12px;
    margin: 20px auto 0;
    gap: 16px;
  }

  .about-content h2 {
    font-size: 22px;
    margin-bottom: 12px;
    line-height: 1.2;
  }

  .about-intro {
    font-size: 13px;
    line-height: 1.6;
  }

  .about-img {
    height: 220px;
    border-radius: 8px;
  }

  .values-section {
    padding: 20px 0;
  }

  .values-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .values-grid {
    padding: 0 12px;
    gap: 12px;
  }

  .value-card {
    padding: 16px 12px;
    border-radius: 8px;
  }

  .value-icon {
    font-size: 28px;
    width: 48px;
    height: 48px;
    margin-bottom: 8px;
  }

  .value-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .value-card p {
    font-size: 12px;
    line-height: 1.5;
  }

  .why-choose-section {
    padding: 16px 0 30px;
    margin-bottom: 40px;
    margin-top: 30px;
  }

  .why-choose-section h3 {
    font-size: 20px;
    margin-bottom: 16px;
    padding: 0 12px;
  }

  .features-list {
    padding: 0 12px;
    gap: 12px;
  }

  .feature-item {
    gap: 12px;
    padding: 12px;
    flex-direction: column;
    align-items: flex-start;
  }

  .feature-number {
    width: 40px;
    height: 40px;
    font-size: 16px;
    align-self: flex-start;
  }

  .feature-content h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .feature-content p {
    font-size: 12px;
    line-height: 1.5;
  }
}
