.button-grid-section {
  background: #2d3250;
}

.button-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px 20px;
  min-height: 200px;
  border-radius: 12px;
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
  cursor: pointer;
}

.button-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  object-fit: cover;
  border-radius: 8px;
}

.button-text {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  font-family: 'Vend Sans', sans-serif;
}

.button-description {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  text-align: center;
  margin-top: 12px;
  margin-bottom: 0;
  line-height: 1.4;
  font-family: 'Vend Sans', sans-serif;
}

.button-box-1 {
  background: #6b4e9c;
}

.button-box-2 {
  background: #6b4e9c;
}

.button-box-3 {
  background: #6b4e9c;
}

.button-box-4 {
  background: #6b4e9c;
}

.button-box-1:hover {
  background: #7b5eac;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(107, 78, 156, 0.4);
}

.button-box-2:hover {
  background: #7b5eac;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(107, 78, 156, 0.4);
}

.button-box-3:hover {
  background: #7b5eac;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(107, 78, 156, 0.4);
}

.button-box-4:hover {
  background: #7b5eac;
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(107, 78, 156, 0.4);
}

@media (max-width: 768px) {
  .button-box {
    min-height: 150px;
    padding: 20px 15px;
  }
}

@media (max-width: 768px) {
  .button-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
  }
}

@media (max-width: 768px) {
  .button-text {
    font-size: 16px;
  }
}

