/* About 4: Full width centered with background image */
.about4 {
  width: 100%;
  padding: 80px 40px;
  background-color: var(--main-bg);
  position: relative;
  overflow: hidden;
}

.about4-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.2;
  z-index: 1;
  background-image: url('../img/img21pc.webp');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.about4-background img {
  display: none;
}

.about4-container {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.about4-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about4-title {
  font-size: 64px;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.1;
  font-family: Arial, sans-serif;
}

.about4-text {
  font-size: 18px;
  color: var(--text-primary);
  margin: 0;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

@media (max-width: 1024px) {
  .about4-title {
    font-size: 48px;
  }
}

@media (max-width: 768px) {
  .about4 {
    padding: 60px 20px;
  }

  .about4-background {
    background-image: url('../img/aboutimg-mobile.jpeg');
  }

  .about4-title {
    font-size: 36px;
  }

  .about4-text {
    font-size: 16px;
  }
}
