/* ===== Banner Section ===== */
.banner-container {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
}

.banner-container img {
  width: 90%;
  max-width: 1400px;
  border-radius: 25px;
  object-fit: cover;
}

/* ===== Generic Section ===== */
.section {
  width: 100%;
  padding: 4rem 1.5rem;
}

.section .content {
  max-width: 1100px;
  margin: 0 auto;
}

.section h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  text-align: center;
}

.section p {
  font-size: 1.2rem;
  line-height: 1.7;
  text-align: justify;
}

/* ===== Founder Section ===== */
.founder-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
  padding: 4rem 2rem;
  background-color: #030011ec;
  color: #ffffffec;
}

.founder-image {
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 0 15px rgba(0,0,0,0.4);
  flex-shrink: 0;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-content {
  flex: 1;
  max-width: 700px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.founder-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: left;
}

.founder-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: justify;
}

.founder-name {
  font-size: 1.5rem;
  font-weight: 700;
}

.founder-title {
  font-size: 1rem;
  color: #ffffff;
}

/* ===== Responsive ===== */

/* Tablets */
@media (max-width: 1024px) {
  .section h2 { font-size: 2.5rem; }
  .section p { font-size: 1.1rem; }

  .founder-section {
    gap: 2rem;
    padding: 3rem 1.5rem;
  }

  .founder-image {
    width: 260px;
    height: 260px;
  }

  .founder-content h2 { font-size: 2rem; text-align: center; }
  .founder-content p { font-size: 1rem; }
  .founder-name, .founder-title { text-align: center; }
}

/* Mobiles */
@media (max-width: 768px) {
  .section h2 { font-size: 2rem; }
  .section p { font-size: 1rem; }

  .founder-section {
    flex-direction: column;
    text-align: center;
    padding: 2.5rem 1rem;
  }

  .founder-image {
    width: 220px;
    height: 220px;
  }

  .founder-content {
    align-items: center;
  }

  .founder-content h2 { font-size: 1.8rem; text-align: center; }
  .founder-content p { font-size: 0.95rem; }
  .founder-name { font-size: 1.3rem; }
  .founder-title { font-size: 0.9rem; }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .section h2 { font-size: 1.6rem; }
  .section p { font-size: 0.9rem; }

  .founder-section { padding: 2rem 1rem; }
  .founder-image { width: 180px; height: 180px; }

  .founder-content h2 { font-size: 1.5rem; }
  .founder-content p { font-size: 0.9rem; line-height: 1.5; }
  .founder-name { font-size: 1.1rem; }
  .founder-title { font-size: 0.8rem; }
}
