.air-section {
  padding: 30px 20px;
  background: #f8fafc;
}

.air-wrapper {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.air-content {
  flex: 1;
}

.air-content h2 {
  font-size: 34px;
  margin-bottom: 10px;
  color: #0f172a;
}

.tagline {
  color: #0284c7;
  font-size: 18px;
  margin-bottom: 15px;
}

.air-content p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #334155;
}

.air-features {
  margin: 20px 0;
  padding-left: 0;
  list-style: none;
}

.air-features li {
  margin-bottom: 10px;
  font-size: 15px;
}

.air-btn {
  display: inline-block;
  background: #074A41;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s;
}

.air-btn:hover {
  background: #142343;
  color:white;
}

.air-image {
  flex: 1;
}

.air-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .air-wrapper {
    flex-direction: column;
  }
}