/* ================= WHAT SETS ADELE APART ================= */

.aa-section {
  background: #23B5B1; /* Solid background */
  color: #fff;
  padding: 50px 70px;
  border-radius: 20px;
  max-width: 950px;
  margin: 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}

.aa-section .content {
  max-width: 600px;
  z-index: 2;
}

.aa-section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-weight: bold;
  color: #000;
}

.aa-section p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #fff;
}

.aa-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.aa-buttons a {
  text-decoration: none;
  font-weight: bold;
  padding: 12px 25px;
  border-radius: 25px;
  transition: 0.3s ease;
  display: inline-block;
}

/* Primary Button */
.aa-buttons .btn-primary {
  background: #fff;
  color: #f76902;
  border: 2px solid #fff;
}
.aa-buttons .btn-primary:hover {
  background: transparent;
  color: #fff;
}

/* Secondary Button */
.aa-buttons .btn-secondary {
  background: #2ccbc6;
  color: #fff;
  border: none;
}
.aa-buttons .btn-secondary:hover {
  background: #23b2ae;
}

/* Background Image (right side watermark) */
.aa-bg-watermark {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 300px;
  opacity: 0.3;
  z-index: 1;
}

.aa-bg-watermark img {
  width: 100%;
  height: auto;
  object-fit: contain;
  border: none;
}

/* ================= TABLET ================= */
@media (max-width: 1024px) {
  .aa-section {
    padding: 40px 40px;
    max-width: 90%;
  }

  .aa-bg-watermark {
    width: 220px;
    right: 20px;
  }
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {
  .aa-section {
    max-width: 950px; /* keep desktop structure */
    padding: 50px 20px; /* reduce only side padding */
    margin: 30px 30px; /* maintain left/right spacing */
    flex-direction: column;
    text-align: center;
  }

  .aa-section .content {
    max-width: 100%;
  }

  .aa-section h2 {
    font-size: 1.5rem;
  }

  .aa-section p {
    font-size: 1rem;
  }

  .aa-buttons {
    justify-content: center;
  }

  /* Hide watermark ONLY on mobile */
  .aa-bg-watermark {
    display: none;
  }
}