:root {
  --primary-bg: #000000;
  --text-white: #ffffff;
}

* {
  margin: 0;
}

body {
  font-family: Arial, sans-serif;
}

.about-section {
  background-color: white;
  color: black;
  padding: 4rem 2rem;
  min-height: 100vh;
}

.content-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 4rem;
}

.left-section {
  padding-right: 2rem;
}

.intro {
  margin-bottom: 4rem;
}

.intro span {
  font-size: 1.5rem;
  font-weight: 300;
}

.intro h1 {
  font-size: 4rem;
  font-weight: 300;
  margin-top: 0rem;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 200px);
  gap: 1rem;
  margin: 2rem 0 6rem;
}

.stat-item h2 {
  font-size: 3rem;
  font-weight: 300;
  margin-bottom: 0.5rem;
}

.stat-item p {
  font-size: 1rem;
  opacity: 0.8;
}

.text-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
}

.section h3 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.section p {
  font-size: 1rem;
  line-height: 1.6;
  opacity: 0.8;
}

.right-section {
  position: relative;
}

.sticky-content {
  /* position: sticky; */
  top: 2rem;
}

.profile-image {
  width: 100%;
  height: auto;
  margin-bottom: 2rem;
}

