.page-beginner-guide-customer-support {
  font-family: 'Arial', sans-serif;
  color: #e5dfd3; /* Light text for dark background */
  background-color: #1A202C;
  line-height: 1.6;
}

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

.page-beginner-guide-customer-support__hero-section {
  background: linear-gradient(135deg, #1A202C 0%, #3a475a 100%); /* Dark gradient for hero */
  padding: 80px 0;
  text-align: center;
  border-bottom: 2px solid #FFD700;
}

.page-beginner-guide-customer-support__hero-title {
  font-size: 3.5em;
  color: #FFD700; /* Accent color for main title */
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-customer-support__hero-subtitle {
  font-size: 1.3em;
  color: #e5dfd3;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-beginner-guide-customer-support__cta-button {
  display: inline-block;
  background-color: #FFD700; /* Accent for CTA */
  color: #1A202C; /* Dark text for accent background */
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-beginner-guide-customer-support__cta-button:hover {
  background-color: #e6c200; /* Slightly darker accent on hover */
  transform: translateY(-3px);
}

.page-beginner-guide-customer-support__content-section {
  padding: 60px 0;
}

.page-beginner-guide-customer-support__content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr; /* Main content and sidebar */
  gap: 40px;
}

.page-beginner-guide-customer-support__main-article {
  background-color: #2a3447; /* Slightly lighter dark background for article */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-customer-support__section-title {
  font-size: 2.2em;
  color: #FFD700; /* Accent for section titles */
  margin-top: 40px;
  margin-bottom: 25px;
  border-left: 5px solid #FFD700;
  padding-left: 15px;
}

.page-beginner-guide-customer-support__section-title:first-of-type {
  margin-top: 0;
}

.page-beginner-guide-customer-support__main-article p {
  margin-bottom: 15px;
  font-size: 1.05em;
  color: #cccccc;
}

.page-beginner-guide-customer-support__contact-method {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background-color: #343f54; /* Even lighter dark background for method blocks */
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-customer-support__contact-icon {
  flex-shrink: 0;
  margin-right: 20px;
}

.page-beginner-guide-customer-support__contact-icon img {
  width: 60px;
  height: 60px;
  object-fit: contain;
}

.page-beginner-guide-customer-support__method-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 10px;
}

.page-beginner-guide-customer-support__contact-details p {
  margin-bottom: 10px;
  color: #e5e5e5;
}

.page-beginner-guide-customer-support__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 15px;
  color: #e5e5e5;
}

.page-beginner-guide-customer-support__list li {
  margin-bottom: 5px;
}

.page-beginner-guide-customer-support__cta-small {
  display: inline-block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.95em;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-customer-support__cta-small:hover {
  background-color: #e6c200;
}

.page-beginner-guide-customer-support__numbered-list {
  list-style-type: none;
  padding-left: 0;
}

.page-beginner-guide-customer-support__numbered-list li {
  margin-bottom: 30px;
  background-color: #343f54;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-customer-support__sub-section-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
}

.page-beginner-guide-customer-support__bullet-list {
  list-style-type: '👉 ';
  margin-left: 20px;
  margin-bottom: 15px;
  color: #e5e5e5;
}

.page-beginner-guide-customer-support__bullet-list li {
  margin-bottom: 8px;
  padding-left: 5px;
}

.page-beginner-guide-customer-support__image-inline {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-customer-support__faq-section {
  background-color: #343f54;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 20px;
  border-left: 4px solid #FFD700;
}

.page-beginner-guide-customer-support__faq-section p {
  color: #e5e5e5;
}

.page-beginner-guide-customer-support__final-cta {
  text-align: center;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 215, 0, 0.3);
}

.page-beginner-guide-customer-support__final-cta p {
  font-size: 1.2em;
  color: #e5dfd3;
  margin-bottom: 25px;
}

.page-beginner-guide-customer-support__sidebar {
  background-color: #2a3447;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-beginner-guide-customer-support__sidebar-block {
  background-color: #343f54;
  padding: 20px;
  border-radius: 8px;
  margin-bottom: 30px;
  border-top: 4px solid #FFD700;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-customer-support__sidebar-title {
  font-size: 1.6em;
  color: #FFD700;
  margin-top: 0;
  margin-bottom: 15px;
  text-align: center;
}

.page-beginner-guide-customer-support__sidebar-block p {
  font-size: 0.95em;
  color: #cccccc;
  margin-bottom: 15px;
  text-align: center;
}

.page-beginner-guide-customer-support__sidebar-image {
  max-width: 100%;
  height: auto;
  border-radius: 5px;
  margin-bottom: 15px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-customer-support__sidebar-cta {
  display: block;
  background-color: #FFD700;
  color: #1A202C;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  text-align: center;
  transition: background-color 0.3s ease;
}

.page-beginner-guide-customer-support__sidebar-cta:hover {
  background-color: #e6c200;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-beginner-guide-customer-support__content-grid {
    grid-template-columns: 1fr;
  }

  .page-beginner-guide-customer-support__hero-title {
    font-size: 2.8em;
  }

  .page-beginner-guide-customer-support__hero-subtitle {
    font-size: 1.1em;
  }

  .page-beginner-guide-customer-support__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-customer-support__method-title {
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-beginner-guide-customer-support__hero-section {
    padding: 60px 0;
  }

  .page-beginner-guide-customer-support__hero-title {
    font-size: 2.2em;
  }

  .page-beginner-guide-customer-support__hero-subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-customer-support__content-section {
    padding: 40px 0;
  }

  .page-beginner-guide-customer-support__main-article,
  .page-beginner-guide-customer-support__sidebar {
    padding: 20px;
  }

  .page-beginner-guide-customer-support__contact-method {
    flex-direction: column;
    text-align: center;
  }

  .page-beginner-guide-customer-support__contact-icon {
    margin-right: 0;
    margin-bottom: 15px;
  }

  .page-beginner-guide-customer-support__list,
  .page-beginner-guide-customer-support__bullet-list {
    margin-left: 0;
    text-align: left;
    padding-left: 20px;
  }

  .page-beginner-guide-customer-support__cta-small {
    width: 100%;
    box-sizing: border-box;
    margin-top: 15px;
  }
}

@media (max-width: 480px) {
  .page-beginner-guide-customer-support__hero-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-customer-support__cta-button {
    padding: 12px 25px;
    font-size: 1em;
  }

  .page-beginner-guide-customer-support__section-title {
    font-size: 1.5em;
  }

  .page-beginner-guide-customer-support__method-title {
    font-size: 1.4em;
  }

  .page-beginner-guide-customer-support__sub-section-title {
    font-size: 1.3em;
  }
}