.focus-areas-section {
  padding: 8rem 0;
  position: relative;
  background-color: transparent;
  color: var(--color-dark);
  z-index: 2;
  overflow: hidden;
}

.focus-areas-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.focus-areas-header {
  text-align: center;
  margin-bottom: 4rem;
}

.focus-areas-subtitle {
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
  display: block;
}

.focus-areas-title {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  line-height: 1.1;
  font-weight: 800;
  margin: 0;
}

.focus-areas-cloud {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  padding: 2rem 0;
}

/* Sticker Pill Style */
.sticker-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  background-color: #fff;
  border: 4px solid var(--color-dark);
  border-radius: 100px; /* Pill shape */
  text-decoration: none;
  color: var(--color-dark);
  box-shadow: 6px 6px 0px var(--color-dark);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Bouncy transition */
  cursor: pointer;
  position: relative;
}

.sticker-pill:hover {
  transform: scale(1.15) rotate(0deg) translateY(-5px) !important;
  box-shadow: 10px 10px 0px var(--color-dark);
  z-index: 10;
}

.sticker-icon {
  font-size: 2rem;
  filter: drop-shadow(2px 2px 0px rgba(0,0,0,0.1));
}

.sticker-title {
  font-size: 1.25rem;
  font-weight: 800;
  margin: 0;
  line-height: 1;
}

/* Add custom rotations and colors to make it chaotic and fun */
.sticker-pill:nth-child(1) { transform: rotate(-4deg); background-color: var(--color-mango); margin-top: 1rem; }
.sticker-pill:nth-child(2) { transform: rotate(6deg); background-color: #A7E6FF; }
.sticker-pill:nth-child(3) { transform: rotate(-2deg); background-color: #FFB6C1; margin-bottom: 2rem; }
.sticker-pill:nth-child(4) { transform: rotate(5deg); background-color: #E6E6FA; margin-top: -1rem; }
.sticker-pill:nth-child(5) { transform: rotate(-5deg); background-color: #98FB98; }
.sticker-pill:nth-child(6) { transform: rotate(3deg); background-color: #FFDAB9; margin-bottom: 1.5rem; }
.sticker-pill:nth-child(7) { transform: rotate(-6deg); background-color: #E0FFFF; margin-top: 2rem; }
.sticker-pill:nth-child(8) { transform: rotate(4deg); background-color: #F0E68C; }
.sticker-pill:nth-child(9) { transform: rotate(-3deg); background-color: #DDA0DD; margin-bottom: -1rem; }
.sticker-pill:nth-child(10) { transform: rotate(5deg); background-color: #FFA07A; margin-top: 1rem; }

/* Responsive adjustments */
@media (max-width: 768px) {
  .sticker-pill {
    padding: 0.75rem 1.5rem;
  }
  .sticker-icon {
    font-size: 1.5rem;
  }
  .sticker-title {
    font-size: 1.1rem;
  }
  .focus-areas-cloud {
    gap: 1rem;
  }
}

