/* Main wrapper */
.main-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
  position: relative;
  top: 100px;
}

/* Intro paragraph */
.intro-text {
  font-size: 0.9em;
  margin-bottom: 30px;
  text-align: center;
}

/* Sections */
.section {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 25px 20px;
  margin-bottom: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: fadeIn 1s ease-in;
  transition: transform 0.3s ease;
}

.section:hover {
  transform: translateY(-3px);
}

/* Section Titles */
.section-title-box {
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease-out;
}

.section-title {
  font-size: 1.8em;
  color: var(--color-blue-light);
  border-bottom: 2px solid var(--color-blue-light);
  padding-bottom: 5px;
  display: inline-block;
}

/* Lists */
.section ul {
  list-style: none;
  padding-left: 20px;
}

.section ul li {
  position: relative;
  padding-left: 15px;
  margin-bottom: 8px;
}

.section ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--color-red);
}

/* Links */
a {
  color: rgb(255, 85, 85);
  text-decoration: none;
}

a:hover {
    color: var(--color-red);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive */
@media (max-width: 600px) {
  .section-title {
    font-size: 1.5em;
  }
}

    .who-are-we-section3 {
  position: relative;
  top: 120px;
}

.who-are-we-header3 {
  background-color: var(--color-red);
  width: fit-content;
  padding: 10px 20px;
  border-radius: 999px;
  margin-bottom: 30px;
  margin-left: 0;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  padding-left: 40px;
  box-sizing: border-box;
}

.who-are-we-header3 h2 {
  margin: 0 0 0 100px;
  font-size: 1.5em;
  color: var(--color-white);
}