.about-page {
  padding: 150px 0 80px;
  background: #ffffff;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text h1 {
  font-size: 42px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 25px;
}

.about-text p {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #e8f5e9;
}

.image-placeholder.large {
  max-width: 500px;
  margin: 0 auto;
}

/* cta section */
.cta-section {
  padding: 80px 0;
  background: #ffffff;
  text-align: center;
}

.cta-section h2 {
  font-size: 36px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.3;
}

/* responsive */
@media (max-width: 1024px) {
  .about-content {
    grid-template-columns: 100%;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .about-text h1 {
    font-size: 32px;
  }

  .cta-section h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .about-text h1 {
    font-size: 28px;
  }

  .cta-section h2 {
    font-size: 24px;
  }

  .about-page {
    padding-top: 120px;
  }
}

@media (max-width: 320px) {
  .about-text h1 {
    font-size: 24px;
  }
}
