/* Section Styles */
.hlm-social-usage {
  text-align: center;
  padding: 50px 20px;
  background: #fff;
}

.hlm-section-title {
  font-family: 'roc-grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #7A06D3;
  margin-bottom: 15px;
}

.hlm-section-description {
  font-family: 'roc-grotesk', sans-serif;
  font-size: 1.2rem;
  color: #4a4a4a;
  margin-bottom: 30px;
}

.hlm-chart-container {
  max-width: 1100px;
  height: 400px;
  margin: 0 auto;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px;
  background-color: #ffffff;
}

/* Responsive Chart Container */
@media (max-width: 768px) {
  .hlm-chart-container {
    max-width: 90%;
    height: 300px;
    padding: 10px;
  }

  .hlm-section-title {
    font-size: 2rem;
  }

  .hlm-section-description {
    font-size: 1rem;
  }
}

/* Smooth Hover Animation */
.hlm-chart-container:hover {
  transition: all 0.5s ease;
  transform: scale(1.02);
  box-shadow: 0 8px 30px rgba(122, 6, 211, 0.2);
}
