body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
  color: #1a1a1a;
}

/* General Section */
.section {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 5%;
  flex-wrap: wrap;
}

.left {
  flex: 1 1 250px;
}

.right {
  flex: 2 1 500px;
}

/* Headings */
h2 {
  color: #24423f;
  font-size: 1.5rem;
  /* font-weight: 900; */
  /* text-transform: uppercase; */
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

h3 {
  color: #0c8b6f;
  font-size: 1.5rem;
  /* font-weight: 900; */
  /* text-transform: uppercase; */
  margin: 0 0 0.5rem;
}

/* Paragraphs */
p {
  font-size: 1rem;
  margin-bottom: 1rem;
  text-align: justify
}

/* Sidebar links */
.links {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1rem;
}

.links a {
  color: #0c8b6f;
  text-decoration: none;
  font-weight: bold;
  position: relative;
  padding-bottom: 4px;
}

.links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: #0c8b6f;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.links a:hover::after {
  transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section {
    flex-direction: column;
    padding: 1rem 1rem; /* reduce padding */
    gap: 0; /* remove extra gap */
  }

  h2 {
    font-size: 1.5rem;
    text-align: left;
  }

  h3 {
    font-size: 1.5rem;
  }

  .left, .right {
    flex: 1 1 100%;
    margin: 0; /* remove spacing */
    padding: 0; /* remove padding */
  }
}

/* Who we are */
.who-we-are {
  padding: 40px 8%;
}

.who-header p {
  flex: 2;
  margin: 0;
  font-size: 16px;
  line-height: 1.6;
  color: #0c8b6f;
}

@media (max-width: 768px) {
  .who-header {
    flex-direction: column;
    margin: 0; /* remove spacing */
    padding: 0;
  }
}

/* About us */
/* .about-us {
  padding: 30px 5%;
  background-color: red;
} */

.about-us h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #24423f;
}

.about-container {
  display: flex;
  flex-wrap: wrap;
  gap: 10px; /* reduce gap */
}

.about-card {
  flex: 1;
  min-width: 280px;
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0,0,0,0.1);
}

.about-card h3 {
  font-size: 20px;
  color: #24423f;
  margin-bottom: 10px;
}

.about-card p {
  font-size: 14px;
  line-height: 1.6;
  text-align: justify;
}
@media (max-width: 768px) {
  .about-us h2 {
    font-size: 1.5rem;
  }
} 