.euroavia-split-section {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background-color: #f8fafc;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  box-sizing: border-box;
}

.split-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 50px;
}

.split-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.feature-bar {
  display: flex;
  align-items: center;
  background: #ffffff;
  padding: 16px 24px;
  border-radius: 12px 32px; 
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  border-left: 4px solid #003366;
  opacity: 0;
  transform: translateX(-80px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1), 
              box-shadow 0.3s ease;
}

.feature-bar.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.feature-bar.is-visible:hover {
  transform: translateX(5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}



.bar-icon {
  font-size: 1.5rem;
  color: #003366;
  min-width: 45px;
  text-align: left;
}



.bar-text {
  display: flex;
  flex-direction: column;
}

.bar-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: #003366;
  margin: 0 0 3px 0;
}

.bar-subtitle {
  font-size: 0.88rem;
  color: #64748b;
  line-height: 1.3;
}

.split-right {
  flex: 1;
  padding: 10px 0;
}

.section-heading {
  font-size: 2.4rem;
  font-weight: 800;
  color: #003366;
  margin: 0 0 20px 0;
  line-height: 1.2;
}

.section-paragraph {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #475569;
  margin: 0 0 30px 0;
}

.button-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 9999px;
  text-decoration: none;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-primary {
  background-color: #003366;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 82, 204, 0.25);
}

.btn-primary:hover {
  background-color: #003366;
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: #003366;
  border: 2px solid #003366;
}

.btn-secondary:hover {
  background-color: rgba(0, 82, 204, 0.05);
  transform: translateY(-2px);
}

@media (max-width: 900px) {
  .split-wrapper {
    flex-direction: column;
    gap: 30px;
  }

  .split-right {
    display: contents; 
  }

  .section-heading {
    order: 1;
    font-size: 1.9rem;
    text-align: center;
    width: 100%;
    margin: 0;
  }

  .split-left {
    order: 2;
    width: 100%;
  }

  .button-group {
    order: 3;
    justify-content: center;
    width: 100%;
    margin-top: 10px;
  }

  .section-paragraph {
    display: none; 
  }

  .btn {
    width: 100%; 
    max-width: 280px;
  }
    .btn-secondary {
    order: 1;
  }

  .btn-primary {
    order: 2;
  }
  
}