.euroavia-custom-about {
  padding: 60px 20px;
  background-color: #f4f7f9;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.euroavia-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.about-text-card {
  background: linear-gradient(300deg, #003366 0%, #001f3f 100%);
  color: #ffffff;
  width: 65%;
  padding: 60px 18% 60px 60px;
  border-radius: 32px 16px; 
  z-index: 1;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-subtitle {
  display: block;
  color: #4a82a6; 
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.about-title-light {
  font-size: 2.2rem;
  font-weight: 300;
  margin: 0 0 10px 0;
  color: #ffffff;
  line-height: 1.2;
}

.about-title-bold {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 25px 0;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: 1px;
}

.about-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #d1e2ef;
  margin: 0;
}

.about-image-card {
  width: 50%;
  margin-left: -15%;
  z-index: 2;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
  font-size: 0;
}

.about-image-card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
@media (max-width: 768px) {
  .euroavia-wrapper {
    flex-direction: column;
  }

  .about-text-card {
    width: 100%;
    padding: 40px 25px 80px 25px;
    text-align: center;
  }

  .about-title-light {
    font-size: 1.8rem;
  }

  .about-title-bold {
    font-size: 2.4rem;
  }

  .about-image-card {
    width: 90%;
    margin-left: 0;
    margin-top: -50px;
    border-radius: 10px;
  }
}