/* style/support.css */

.support-page {
  max-width: 1000px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.support-section {
  background: #f7f7f7;
  margin-bottom: 2rem;
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.support-section.fullwidth .section-grid,
.support-section.halfwidth .section-grid {
  display: grid;
  gap: 1.5rem;
}

.support-section.fullwidth .section-grid {
  grid-template-columns: 1fr;
}

.support-section.halfwidth .section-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.text-content h2 {
  margin-top: 0;
  color: #333;
}

.text-content .content {
  font-size: 1rem;
  line-height: 1.5;
  color: #444;
}

.media-content img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 700px) {
  .support-section.halfwidth .section-grid {
    grid-template-columns: 1fr;
  }
}
