/* General styles for the support page */
.page-support {
  font-family: Arial, sans-serif;
  color: #333333; /* Dark text on light body background #F4F7FB */
  line-height: 1.6;
}

.page-support__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.page-support__section-title {
  font-size: 32px;
  font-weight: bold;
  color: #1F2D3D;
  text-align: center;
  margin-bottom: 20px;
}

.page-support__section-description {
  font-size: 18px;
  color: #555555;
  text-align: center;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-support__text-block {
  max-width: 900px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.7;
}

.page-support__text-block p {
  margin-bottom: 15px;
}

.page-support__card {
  background: #FFFFFF; /* Card BG */
  border: 1px solid #D6E2FF; /* Border */
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}