@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.about-page {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: #ffffff;
  padding-top: 80px;
  min-height: 100vh;
}

.about-section {
  padding: 4rem 2rem;
  max-width: 1400px;
  margin: 0 auto;
}

.about-container {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.about-image {
  width: 100%;
  height: 100%;
  position: relative;
}

.about-image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  border-radius: 0;
  display: block;
}

.about-content {
  padding: 2rem 3rem 2rem 0;
}

.about-content h1 {
  font-size: 2.5rem;
  font-weight: 400;
  color: #000000;
  margin-bottom: 2.5rem;
  letter-spacing: 0;
  line-height: 1.2;
}

.about-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 1.5rem;
  font-weight: 400;
  text-align: justify;
}

.about-content p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image img {
    height: 500px;
  }

  .about-content {
    padding: 1rem 2rem;
  }

  .about-content h1 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .about-page {
    padding-top: 60px;
  }

  .about-section {
    padding: 3rem 1.5rem;
  }

  .about-container {
    gap: 2.5rem;
  }

  .about-image img {
    height: 400px;
  }

  .about-content {
    padding: 0 1rem;
  }

  .about-content h1 {
    font-size: 1.9rem;
    margin-bottom: 2rem;
  }

  .about-content p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 2rem 1rem;
  }

  .about-container {
    gap: 2rem;
  }

  .about-image img {
    height: 350px;
  }

  .about-content {
    padding: 0 0.5rem;
  }

  .about-content h1 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .about-content p {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}