/* Sections Box Styling */
.sections-box {
  margin: 30px 0;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  background: rgba(35, 176, 255, 0.05);
}

.sections-box__content {
  text-align: center;
}

.sections-box__title {
  margin: 0 0 15px 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #23B0FF;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.sections-box__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.sections-box__link {
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  text-decoration: none;
  border: 1px solid #23B0FF;
  border-radius: 8px;
  background: transparent;
  color: #23B0FF;
  font-weight: 600;
  transition: all 0.2s ease;
}

.sections-box__link:hover {
  background: rgba(35, 176, 255, 0.15);
  transform: translateY(-2px);
}

.sections-box__link-text {
  font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 684px) {
  .sections-box {
    padding: 15px;
    margin: 20px 0;
  }

  .sections-box__links {
    flex-direction: column;
    gap: 8px;
  }

  .sections-box__link {
    width: 100%;
    justify-content: center;
  }
}
