/* style/beginner-guide-basic-operations.css */
.page-beginner-guide-basic-operations {
  --primary-color: #007bff;
  --secondary-color: #ffc107;
  --text-dark: #212529;
  --text-light: #f8f9fa;
  --bg-light: #f8f9fa;
  --bg-dark: #343a40;
  --border-color: #dee2e6;
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-dark);
}

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

.page-beginner-guide-basic-operations__hero-section {
  background: linear-gradient(135deg, var(--primary-color) 0%, #0056b3 100%); /* Adjusted for better contrast */
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-basic-operations__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-beginner-guide-basic-operations__hero-section > * {
  position: relative;
  z-index: 2;
}

.page-beginner-guide-basic-operations__main-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  font-weight: bold;
  color: var(--text-light);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-beginner-guide-basic-operations__subtitle {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0; /* Slightly lighter for readability on dark background */
}

.page-beginner-guide-basic-operations__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.7;
}

.page-beginner-guide-basic-operations__btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.2s ease;
  margin: 10px;
  cursor: pointer;
}

.page-beginner-guide-basic-operations__btn--primary {
  background-color: var(--secondary-color);
  color: var(--text-dark); /* Ensure dark text on light button */
  border: 2px solid var(--secondary-color);
}

.page-beginner-guide-basic-operations__btn--primary:hover {
  background-color: #e6b000; /* Darker secondary */
  transform: translateY(-2px);
}

.page-beginner-guide-basic-operations__btn--secondary {
  background-color: transparent;
  color: var(--text-light);
  border: 2px solid var(--text-light);
}

.page-beginner-guide-basic-operations__btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.page-beginner-guide-basic-operations__content-section {
  padding: 60px 0;
  background-color: var(--bg-light);
}

.page-beginner-guide-basic-operations__content-section--alt {
  background-color: #f0f4f8; /* A slightly different light background */
}

.page-beginner-guide-basic-operations__section-title {
  font-size: 2.5em;
  color: var(--primary-color);
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 15px;
}

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

.page-beginner-guide-basic-operations__sub-title {
  font-size: 1.8em;
  color: #0056b3; /* Darker primary for contrast */
  margin-top: 40px;
  margin-bottom: 20px;
  border-left: 5px solid var(--secondary-color);
  padding-left: 15px;
}

.page-beginner-guide-basic-operations__list {
  list-style-type: disc;
  margin-left: 25px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-beginner-guide-basic-operations__list li {
  margin-bottom: 10px;
  line-height: 1.8;
}

.page-beginner-guide-basic-operations__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-beginner-guide-basic-operations__cta-text {
  text-align: center;
  font-size: 1.1em;
  margin-top: 30px;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.page-beginner-guide-basic-operations__button-group {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
}

.page-beginner-guide-basic-operations__faq {
  margin-top: 40px;
}

.page-beginner-guide-basic-operations__faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 15px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-beginner-guide-basic-operations__faq-question {
  font-size: 1.3em;
  color: var(--primary-color);
  margin-bottom: 10px;
}

.page-beginner-guide-basic-operations__faq-answer {
  color: var(--text-dark);
}

.page-beginner-guide-basic-operations__inline-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: bold;
}

.page-beginner-guide-basic-operations__inline-link:hover {
  text-decoration: underline;
}

.page-beginner-guide-basic-operations__cta-section {
  background: linear-gradient(45deg, #0056b3, var(--primary-color));
  color: var(--text-light);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-beginner-guide-basic-operations__cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.page-beginner-guide-basic-operations__cta-section > * {
  position: relative;
  z-index: 2;
}

.page-beginner-guide-basic-operations__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #e0e0e0;
}

.page-beginner-guide-basic-operations__cta-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.6;
}

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

  .page-beginner-guide-basic-operations__section-title {
    font-size: 2em;
  }

  .page-beginner-guide-basic-operations__sub-title {
    font-size: 1.5em;
  }

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

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

  .page-beginner-guide-basic-operations__subtitle {
    font-size: 1em;
  }

  .page-beginner-guide-basic-operations__section-title {
    font-size: 1.8em;
  }

  .page-beginner-guide-basic-operations__btn {
    display: block;
    margin: 10px auto;
    width: 80%;
  }
}