* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Alexandria", sans-serif;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.about-hero {
  padding: 34px 0 80px;
  background: white;
}

.about-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-hero-image {
  position: relative;
}

.about-hero-image img {
  width: 100%;
  max-width: 550px;
  height: auto;
}

.about-hero-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-hero-text h1 {
  font-size: 2rem;
  font-weight: 600;
  color: #3c245e;
  line-height: 1.2;
}

.about-hero-text p {
  font-size: 0.875rem;
  font-weight: 400;
  color: #3c245e;
  line-height: 1.3;
}

.about-logo img {
  width: 180px;
  height: auto;
  margin-top: 52px;
}

.company-goal {
  padding: 60px 10px;
  background: #3c245e;
}

.goal-content {
  display: flex;
  align-items: center;
  gap: 40px;
}

.goal-content h2 {
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  white-space: nowrap;
}

.goal-divider {
  width: 2px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

.goal-content p {
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1.4;
}

.company-info {
  padding: 80px 0;
  background: white;
}

.info-content {
  display: grid;
  grid-template-columns: 0.3fr 1fr;
  gap: 24px;
  align-items: center;
}

.info-image {
  position: relative;
}

.info-image img {
  width: 100%;
  max-width: 400px;
  height: auto;
}

.info-text {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.info-text p {
  font-size: 1rem;
  font-weight: 400;
  color: #3c245e;
  line-height: 1.2;
}

@media (max-width: 992px) {
  .about-hero-content,
  .info-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-hero-image {
    order: -1;
  }

  .container {
    padding: 0 20px;
  }

  .about-hero-image img,
  .info-image img {
    max-width: 400px;
    margin: 0 auto;
    display: block;
  }

  .about-hero-text,
  .info-text {
    text-align: center;
  }

  .about-logo {
    display: flex;
    justify-content: center;
  }

  .goal-content {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .goal-divider {
    width: 100%;
    height: 2px;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 32px 0 60px;
  }

  .about-hero-text h1 {
    font-size: 1.75rem;
  }

  .about-hero-text p {
    font-size: 0.9375rem;
  }

  .company-goal {
    padding: 40px 0;
  }

  .goal-content h2 {
    font-size: 1.5rem;
  }

  .goal-content p {
    font-size: 1rem;
  }

  .company-info {
    padding: 60px 0;
  }

  .info-text p {
    font-size: 0.9375rem;
  }
}

@media (max-width: 480px) {

  .about-hero-text,
  .info-text {
    text-align: left;
  }

  .about-logo {
    justify-content: flex-start;
  }

  .about-hero-text h1 {
    font-size: 1.5rem;
  }

  .about-logo img {
    width: 150px;
    margin-top: 20px;
  }

  .goal-content h2 {
    font-size: 1.25rem;
  }

  .info-image img {
    max-width: 300px;
    margin: 0;
  }
}