/* About 2: Left title with button, Right text */
.about2 {
  width: 100%;
  padding: 80px 40px;
  background-color: var(--main-bg);
}

.about2-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.about2-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.about2-domain {
  font-size: 16px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.2;
  font-family: Arial, sans-serif;
  font-weight: 400;
}

.about2-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.1;
  font-family: Arial, sans-serif;
}

.about2-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 48px;
  background-color: var(--button-bg);
  color: var(--button-text);
  text-decoration: none;
  font-size: 20px;
  font-weight: 700;
  border-radius: 50px;
  font-family: Arial, sans-serif;
  transition: background-color 0.3s ease;
  margin-top: 10px;
}

.about2-button:hover {
  background-color: var(--button-hover-bg);
}

.about2-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about2-text {
  font-size: 18px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

@media (max-width: 1024px) {
  .about2-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about2-title {
    font-size: 48px;
  }

  .about2-button {
    padding: 14px 40px;
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .about2 {
    padding: 60px 20px;
  }

  .about2-title {
    font-size: 36px;
  }

  .about2-text {
    font-size: 16px;
  }

  .about2-button {
    padding: 12px 32px;
    font-size: 16px;
  }

  .about2-domain {
    font-size: 14px;
  }
}
