/* Support Button Section Styles */
/* Following site-grid-rails.css for layout and style.css for colors/fonts */

.support-button {
  background-color: var(--ica-bg);
  padding: 2rem 0;
}

.support-button__content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 80px;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .support-button {
    padding: 1.5rem 0;
  }
  
  .support-button__content {
    min-height: 60px;
  }
}

@media (max-width: 480px) {
  .support-button {
    padding: 1rem 0;
  }
  
  .support-button__content {
    min-height: 50px;
  }
}
