.page-support {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
}

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

.page-support__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-support__hero {
  background: linear-gradient(135deg, #003366 0%, #001a33 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-support__hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(255, 204, 0, 0.1) 0%, rgba(255, 204, 0, 0) 70%);
  opacity: 0.3;
  animation: page-support__rotate 20s linear infinite;
}

@keyframes page-support__rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.page-support__hero .page-support__container {
  position: relative;
  z-index: 1;
}

.page-support__title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #FFCC00;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-support__description {
  font-size: 1.1em;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-support__subtitle {
  font-size: 2.2em;
  color: #003366;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  position: relative;
}

.page-support__subtitle::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #FFCC00;
  border-radius: 2px;
}

.page-support__text {
  font-size: 1em;
  color: #555;
  margin-bottom: 15px;
}

.page-support__button {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1em;
}

.page-support__button--primary {
  background-color: #FFCC00;
  color: #003366;
}

.page-support__button--primary:hover {
  background-color: #e6b800;
  transform: translateY(-2px);
}

.page-support__button--secondary {
  background-color: #003366;
  color: #FFCC00;
  border: 1px solid #FFCC00;
}

.page-support__button--secondary:hover {
  background-color: #001a33;
  border-color: #e6b800;
  transform: translateY(-2px);
}

.page-support__contact-options {
  padding: 60px 0;
  background-color: #fff;
}

.page-support__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.page-support__card {
  background-color: #f0f4f8;
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  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.12);
}

.page-support__card-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
  object-fit: contain;
}

.page-support__card-title {
  font-size: 1.5em;
  color: #003366;
  margin-bottom: 15px;
}

.page-support__card-text {
  color: #666;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__responsible-gaming {
  padding: 80px 0;
  background-color: #eef5fb;
}

.page-support__content-left {
  flex: 1;
}

.page-support__content-left .page-support__subtitle {
  text-align: left;
  margin-left: 0;
}

.page-support__content-left .page-support__subtitle::after {
  left: 0;
  transform: translateX(0);
}

.page-support__image-right {
  flex: 1;
  text-align: center;
}

.page-support__image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.page-support__cta {
  background-color: #003366;
  color: #fff;
  padding: 70px 0;
  text-align: center;
}

.page-support__cta .page-support__subtitle {
  color: #FFCC00;
}

.page-support__cta .page-support__description {
  font-size: 1.1em;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  color: #e0e0e0;
}

.page-support__cta-buttons .page-support__button {
  margin: 0 10px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-support__hero {
    padding: 60px 0;
  }
  .page-support__title {
    font-size: 2.2em;
  }
  .page-support__subtitle {
    font-size: 1.8em;
  }
  .page-support__container--flex {
    flex-direction: column;
  }
  .page-support__content-left, .page-support__image-right {
    flex: none;
    width: 100%;
  }
  .page-support__content-left .page-support__subtitle {
    text-align: center;
  }
  .page-support__content-left .page-support__subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .page-support__hero {
    padding: 50px 0;
  }
  .page-support__title {
    font-size: 1.8em;
  }
  .page-support__description {
    font-size: 1em;
  }
  .page-support__subtitle {
    font-size: 1.6em;
  }
  .page-support__grid {
    grid-template-columns: 1fr;
  }
  .page-support__cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  .page-support__cta-buttons .page-support__button {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .page-support__hero {
    padding: 40px 0;
  }
  .page-support__title {
    font-size: 1.5em;
  }
  .page-support__description {
    font-size: 0.9em;
  }
  .page-support__subtitle {
    font-size: 1.4em;
  }
  .page-support__card {
    padding: 20px;
  }
  .page-support__card-title {
    font-size: 1.3em;
  }
}