/* Header Section */
.header-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  overflow: hidden;
}

.header-text {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.header-text h1 {
  flex: 1;
  font-size: 28px;
  font-weight: 500;
  color: var(--text-light);
  line-height: 36px;
  text-align: left;
}

.header-text p {
  flex: 2;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-light);
  text-align: justify;
  min-width: 250px;
}

.header-image {
  width: 100%;
  margin-top: 20px;
}

.header-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 400px;
  margin-bottom: 40px;
}

/*  Section */
.section-container {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  padding: 40px 20px;
}

.section-text {
  flex: 1 1 400px;
}

.section-text h2 {
  font-size: 28px;
  font-weight: 500;
  color: var(--text-light);
  margin-bottom: 15px;
}

.section-text p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-light);
  text-align: justify;
}

.vision,
.mission,
.values {
  margin-bottom: 60px;
}

.mission-list {
  margin-top: 16px;
  list-style-type: disc;
  color: var(--text-light);
}

.mission-list li {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-bottom: 4px;
  text-align: justify;
}

.value-item {
  margin-bottom: 24px;
}

.value-item h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-light);
}

.value-item p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-light);
  text-align: justify;
}

.section-image {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section-image img {
  width: 100%;
  height: 330px;
  object-fit: cover;
}

/* Approach Section */
.approach-section {
  padding: 0px 20px;
}

.approach-header {
  text-align: left;
}

.approach-header h2 {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-light);
  margin-bottom: 10px;
}

.approach-header p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--text-light);
}

.approach-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  padding-bottom: 40px;
  margin-top: 20px;
}

.approach-image,
.approach-list {
  flex: 1 1 0%;
  min-width: 300px;
}

.approach-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.approach-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  justify-content: center;
}

.approach-item {
  display: flex;
  align-items: center;
  gap: 15px;
}

.approach-icon {
  width: 48px;
  height: 48px;
  background-color: var(--green-200);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.approach-icon img {
  width: 20px;
  height: 20px;
}

.approach-text h4 {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-black);
  line-height: 24px;
}

/* Founder Section */
.founder-section {
  padding: 30px 0;
}

.founder-header {
  text-align: left;
  margin-bottom: 30px;
}

.founder-header h2 {
  font-size: 32px;
  font-weight: 600;
  line-height: 40px;
  color: var(--text-light);
}

.founder-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: stretch;
}

.founder-image {
  flex: 1 1 350px;
  max-width: 400px;
}

.founder-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 12px;
}

.founder-quote {
  flex: 1 1 500px;
  background: var(--green-200);
  padding: 80px 94px;
  border-radius: 12px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 500px;
}

.founder-quote::before {
  content: "“";
  font-size: 120px;
  color: var(--text-light);
  position: absolute;
  top: 70px;
  left: 70px;
  line-height: 1;
  font-family: Georgia, serif;
  opacity: 0.3;
}

.founder-quote p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-light);
  text-align: justify;
  margin-bottom: 15px;
  padding-left: 30px;
}

.founder-quote .signature {
  font-style: italic;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-light);
  padding-left: 30px;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .header-section {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .header-text {
    gap: 12px;
    margin-top: 20px;
  }

  .section-container {
    flex-direction: column;
    gap: 20px;
  }

  .section-image {
    flex-direction: column;
    gap: 20px;
  }

  .section-text h2 {
    font-size: 22px;
  }

  .section-text p {
    font-size: 15px;
  }

  .header-section,
  .approach-content,
  .founder-content {
    flex-direction: column;
  }

  .container {
    margin: 0 10px;
  }

  .header-image,
  .approach-image {
    min-height: 200px;
  }

  .approach-content {
    flex-direction: column;
    align-items: center;
  }
  .approach-image,
  .approach-list {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .founder-content {
    flex-direction: column;
    align-items: center;
  }

  .founder-quote {
    padding: 30px 20px;
  }

  .founder-quote::before {
    font-size: 60px;
    top: 10px;
    left: 10px;
  }

  .founder-quote p,
  .founder-quote .signature {
    padding-left: 20px;
  }
}

@media (max-width: 480px) {
  .header-text {
    gap: 12px;
    margin-top: 10px;
  }

  .header-image img {
    margin-bottom: 0;
  }

  .section-text {
    flex: 1 1 400px;
  }
  .section-container {
    padding: 40px 0;
  }
  .approach-section {
    padding: 0px;
  }

  .approach-content {
    flex-direction: column;
    align-items: center;
  }

  .approach-image,
  .approach-list {
    flex: 1 1 100%;
    max-width: 100%;
  }
  .approach-list {
    gap: 24px;
  }

  .approach-image img {
    height: 350px;
  }

  .approach-text h4 {
    font-size: 15px;
    line-height: 22px;
  }

  .approach-item {
    gap: 12px;
  }

  .founder-section {
    padding: 0;
  }
}
