.page-beginner-guide-customer-support {
  font-family: 'Arial', sans-serif;
  color: #E0E0E0; /* Light gray for text on dark background */
  background-color: #0A2342; /* Main dark blue background */
}

.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, #0A2342, #1A3F6C);
  padding: 100px 0;
  text-align: center;
  color: #FFD700; /* Gold for hero title */
}

.page-beginner-guide-customer-support__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold */
  line-height: 1.2;
}

.page-beginner-guide-customer-support__hero-subtitle {
  font-size: 1.4em;
  margin-bottom: 40px;
  color: #E0E0E0;
}

.page-beginner-guide-customer-support__section-title {
  font-size: 2.5em;
  color: #FFD700; /* Gold */
  text-align: center;
  margin-top: 60px;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

.page-beginner-guide-customer-support__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-beginner-guide-customer-support__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 25px;
  text-align: justify;
  color: #E0E0E0;
}

.page-beginner-guide-customer-support__inline-link {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide-customer-support__inline-link:hover {
  text-decoration: underline;
}

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

.page-beginner-guide-customer-support__grid-item {
  background-color: #1A3F6C; /* Slightly lighter blue for cards */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-customer-support__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-customer-support__item-title {
  font-size: 1.6em;
  color: #FFD700; /* Gold */
  margin-bottom: 15px;
  text-align: center;
}

.page-beginner-guide-customer-support__grid-item p {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0; /* Lighter gray for paragraph text */
}

.page-beginner-guide-customer-support__channel-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-beginner-guide-customer-support__channel-card {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-beginner-guide-customer-support__channel-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-beginner-guide-customer-support__channel-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5)); /* Gold glow */
}

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

.page-beginner-guide-customer-support__channel-card p {
  font-size: 1em;
  line-height: 1.7;
  color: #C0C0C0;
  margin-bottom: 25px;
}

.page-beginner-guide-customer-support__btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-beginner-guide-customer-support__btn--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
}

.page-beginner-guide-customer-support__btn--primary:hover {
  background-color: #E6C200; /* Darker gold */
  transform: translateY(-2px);
}

.page-beginner-guide-customer-support__btn--secondary {
  background-color: #0A2342; /* Dark blue */
  color: #FFD700; /* Gold */
  border: 2px solid #FFD700;
}

.page-beginner-guide-customer-support__btn--secondary:hover {
  background-color: #FFD700; /* Gold */
  color: #0A2342; /* Dark blue */
  transform: translateY(-2px);
}

.page-beginner-guide-customer-support__cta-buttons {
  text-align: center;
  margin-top: 60px;
  margin-bottom: 80px;
}

.page-beginner-guide-customer-support__cta-buttons .page-beginner-guide-customer-support__btn {
  margin: 0 15px;
}

.page-beginner-guide-customer-support__step-by-step {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-beginner-guide-customer-support__step-card {
  background-color: #1A3F6C;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  position: relative;
}

.page-beginner-guide-customer-support__step-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background-color: #FFD700;
  color: #0A2342;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5em;
  font-weight: bold;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-customer-support__step-card ol {
  list-style: decimal;
  padding-left: 25px;
  margin-top: 20px;
  color: #C0C0C0;
}

.page-beginner-guide-customer-support__step-card ol li {
  margin-bottom: 10px;
  line-height: 1.6;
}

.page-beginner-guide-customer-support__list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-beginner-guide-customer-support__list li {
  background-color: #1A3F6C;
  margin-bottom: 15px;
  padding: 20px 25px;
  border-left: 5px solid #FFD700;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.7;
  color: #E0E0E0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-beginner-guide-customer-support__list li strong {
  color: #FFD700;
}

.page-beginner-guide-customer-support__image-showcase {
  padding: 60px 0;
  background-color: #0A2342;
}

.page-beginner-guide-customer-support__image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-beginner-guide-customer-support__image-item {
  background-color: #1A3F6C;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  text-align: center;
}

.page-beginner-guide-customer-support__image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-beginner-guide-customer-support__image-caption {
  padding: 15px;
  font-size: 1em;
  color: #FFD700;
  background-color: #1A3F6C;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-beginner-guide-customer-support__hero-title {
    font-size: 2.5em;
  }

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

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

  .page-beginner-guide-customer-support__btn {
    padding: 10px 20px;
    font-size: 1em;
  }

  .page-beginner-guide-customer-support__cta-buttons .page-beginner-guide-customer-support__btn {
    margin: 10px 0;
    display: block;
  }

  .page-beginner-guide-customer-support__grid, 
  .page-beginner-guide-customer-support__channel-grid, 
  .page-beginner-guide-customer-support__step-by-step, 
  .page-beginner-guide-customer-support__image-grid {
    grid-template-columns: 1fr;
  }
}

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

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

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

  .page-beginner-guide-customer-support__grid-item,
  .page-beginner-guide-customer-support__channel-card,
  .page-beginner-guide-customer-support__step-card {
    padding: 20px;
  }

  .page-beginner-guide-customer-support__item-title,
  .page-beginner-guide-customer-support__card-title {
    font-size: 1.4em;
  }

  .page-beginner-guide-customer-support__channel-icon {
    width: 60px;
    height: 60px;
  }
}