.page-support {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #E0E0E0;
  background-color: #121212;
  line-height: 1.6;
}

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

.page-support__section-title {
  color: #FFD700;
  text-align: center;
  font-size: 2.8em;
  margin-bottom: 20px;
  padding-top: 60px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-support__section-description {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #C0C0C0;
}

.page-support__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1A2B3C 0%, #0A1621 100%);
  overflow: hidden;
}

.page-support__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin-bottom: 40px;
}

.page-support__hero-title {
  font-size: 3.5em;
  color: #FFD700;
  margin-bottom: 20px;
  text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
}

.page-support__hero-description {
  font-size: 1.3em;
  color: #E0E0E0;
  line-height: 1.8;
  margin-bottom: 30px;
}

.page-support__cta-button {
  display: inline-block;
  padding: 18px 45px;
  background: #FFD700;
  color: #1A2B3C;
  text-decoration: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.page-support__cta-button:hover {
  background: #FFC107;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-support__hero-image-container {
  width: 100%;
  max-width: 1000px;
  margin-top: 40px;
}

.page-support__hero-image {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  object-fit: cover;
}

.page-support__contact-methods-section {
  padding: 80px 0;
  background-color: #1A2B3C;
}

.page-support__contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__contact-card {
  background-color: #2A3C4D;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__contact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-support__contact-icon {
  width: 120px;
  height: 120px;
  margin: 0 auto 25px;
  display: block;
  object-fit: contain;
}

.page-support__card-title {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__card-text {
  color: #C0C0C0;
  font-size: 1em;
  line-height: 1.7;
  margin-bottom: 25px;
  flex-grow: 1;
}

.page-support__card-text a {
  color: #FFD700;
  text-decoration: none;
}

.page-support__card-text a:hover {
  text-decoration: underline;
}

.page-support__card-button {
  display: inline-block;
  padding: 12px 25px;
  background: #FFD700;
  color: #1A2B3C;
  text-decoration: none;
  border-radius: 6px;
  font-size: 1em;
  font-weight: bold;
  transition: background 0.3s ease, transform 0.3s ease;
}

.page-support__card-button:hover {
  background: #FFC107;
  transform: translateY(-2px);
}

.page-support__faq-section {
  padding: 80px 0;
  background-color: #121212;
}

.page-support__faq-category {
  margin-bottom: 60px;
  background-color: #1A2B3C;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__faq-category:last-child {
  margin-bottom: 0;
}

.page-support__faq-category-title {
  color: #FFD700;
  font-size: 2.2em;
  margin-bottom: 30px;
  text-align: center;
  font-weight: bold;
}

.page-support__faq-item {
  border-bottom: 1px solid #33475B;
  margin-bottom: 15px;
  padding-bottom: 15px;
}

.page-support__faq-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.page-support__faq-question {
  background-color: transparent;
  color: #E0E0E0;
  font-size: 1.2em;
  font-weight: bold;
  width: 100%;
  text-align: left;
  padding: 15px 0;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
  position: relative;
  padding-right: 40px;
}

.page-support__faq-question:hover {
  color: #FFD700;
}

.page-support__faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  color: #FFD700;
  transition: transform 0.3s ease;
}

.page-support__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-support__faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
  color: #C0C0C0;
  padding-left: 15px;
  padding-right: 15px;
  font-size: 1.05em;
  line-height: 1.7;
}

.page-support__faq-answer p {
  margin-top: 10px;
  margin-bottom: 15px;
}

.page-support__faq-answer a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-support__faq-answer a:hover {
  text-decoration: underline;
}

.page-support__guides-section {
  padding: 80px 0;
  background-color: #0A1621;
}

.page-support__guide-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-support__guide-card {
  background-color: #1A2B3C;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.page-support__guide-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

.page-support__guide-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
}

.page-support__guide-card .page-support__card-title {
  font-size: 1.5em;
  margin-bottom: 10px;
}

.page-support__guide-card .page-support__card-title a {
  color: #FFD700;
  text-decoration: none;
}

.page-support__guide-card .page-support__card-title a:hover {
  text-decoration: underline;
}

.page-support__guide-card .page-support__card-text {
  font-size: 0.95em;
  margin-bottom: 20px;
  flex-grow: 1;
}

.page-support__safety-section {
  padding: 80px 0;
  background-color: #121212;
}

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

.page-support__safety-item {
  background-color: #1A2B3C;
  border-radius: 12px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__safety-item h3 {
  color: #FFD700;
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-support__safety-item p {
  color: #C0C0C0;
  font-size: 1em;
  line-height: 1.7;
}

.page-support__safety-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 20px;
  display: block;
  object-fit: contain;
}

.page-support__feedback-section {
  padding: 80px 0;
  background-color: #1A2B3C;
}

.page-support__feedback-form {
  max-width: 700px;
  margin: 40px auto 0;
  background-color: #2A3C4D;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-support__form-group {
  margin-bottom: 25px;
}

.page-support__form-group label {
  display: block;
  color: #FFD700;
  font-size: 1.1em;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-support__form-group input[type="text"],
.page-support__form-group input[type="email"],
.page-support__form-group textarea {
  width: calc(100% - 20px);
  padding: 15px;
  border: 1px solid #4A6075;
  border-radius: 8px;
  background-color: #3A4C5E;
  color: #E0E0E0;
  font-size: 1em;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.page-support__form-group input::placeholder,
.page-support__form-group textarea::placeholder {
  color: #889BB2;
}

.page-support__form-group input:focus,
.page-support__form-group textarea:focus {
  border-color: #FFD700;
  box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.3);
  outline: none;
}

.page-support__submit-button {
  display: block;
  width: 100%;
  padding: 18px;
  background: #FFD700;
  color: #1A2B3C;
  border: none;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.3);
}

.page-support__submit-button:hover {
  background: #FFC107;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.4);
}

.page-support__sticky-buttons {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

.page-support__sticky-button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px 25px;
  background-color: #FFD700;
  color: #1A2B3C;
  text-decoration: none;
  border-radius: 50px;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
  transition: all 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.page-support__sticky-button:hover {
  background-color: #FFC107;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 215, 0, 0.5);
}

.page-support__sticky-register {
  /* Specific style if needed */
}

.page-support__sticky-login {
  /* Specific style if needed */
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-support__hero-title {
    font-size: 3em;
  }
  .page-support__hero-description {
    font-size: 1.15em;
  }
  .page-support__section-title {
    font-size: 2.4em;
  }
  .page-support__contact-grid, .page-support__guide-grid, .page-support__safety-content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-support__hero-section {
    padding: 60px 15px;
  }
  .page-support__hero-title {
    font-size: 2.5em;
  }
  .page-support__hero-description {
    font-size: 1em;
  }
  .page-support__cta-button {
    padding: 15px 35px;
    font-size: 1em;
  }
  .page-support__section-title {
    font-size: 2em;
    padding-top: 40px;
  }
  .page-support__section-description {
    margin-bottom: 30px;
  }
  .page-support__contact-methods-section, .page-support__faq-section, .page-support__guides-section, .page-support__safety-section, .page-support__feedback-section {
    padding: 60px 0;
  }
  .page-support__contact-grid, .page-support__guide-grid, .page-support__safety-content {
    grid-template-columns: 1fr;
  }
  .page-support__faq-category {
    padding: 25px;
  }
  .page-support__faq-question {
    font-size: 1.1em;
    padding-right: 30px;
  }
  .page-support__faq-answer {
    font-size: 0.95em;
  }
  .page-support__feedback-form {
    padding: 25px;
  }
  .page-support__form-group label {
    font-size: 1em;
  }
  .page-support__form-group input, .page-support__form-group textarea {
    padding: 12px;
  }
  .page-support__submit-button {
    padding: 15px;
    font-size: 1.1em;
  }
  .page-support__sticky-buttons {
    bottom: 20px;
    right: 20px;
    gap: 10px;
  }
  .page-support__sticky-button {
    padding: 12px 20px;
    font-size: 1em;
    min-width: 120px;
  }
}

@media (max-width: 480px) {
  .page-support__hero-title {
    font-size: 2em;
  }
  .page-support__section-title {
    font-size: 1.8em;
  }
  .page-support__card-title {
    font-size: 1.5em;
  }
  .page-support__contact-icon {
    width: 80px;
    height: 80px;
  }
  .page-support__safety-icon {
    width: 70px;
    height: 70px;
  }
}