/* style/download-guide.css */

/* Base styles for the page */
.page-download-guide {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Dark text for light body background */
  background-color: #FFFFFF;
}

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

.page-download-guide__section-title {
  font-size: 2.5em;
  color: #26A9E0; /* Brand primary color for titles */
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-download-guide__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #26A9E0;
  border-radius: 2px;
}

.page-download-guide__section-description {
  font-size: 1.1em;
  text-align: center;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  color: #555555;
}

.page-download-guide__sub-title {
  font-size: 1.8em;
  color: #26A9E0;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-download-guide__text-block p,
.page-download-guide__feature-list li,
.page-download-guide__step-list li,
.page-download-guide__trouble-list li {
  margin-bottom: 15px;
  font-size: 1.05em;
}

.page-download-guide__text-block a,
.page-download-guide__feature-list li a,
.page-download-guide__step-list li a,
.page-download-guide__trouble-list li a {
  color: #26A9E0; /* Brand color for links */
  text-decoration: none;
}

.page-download-guide__text-block a:hover,
.page-download-guide__feature-list li a:hover,
.page-download-guide__step-list li a:hover,
.page-download-guide__trouble-list li a:hover {
  text-decoration: underline;
}

/* Buttons */
.page-download-guide__btn-primary,
.page-download-guide__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
  box-sizing: border-box;
  text-align: center;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Break long words */
}

.page-download-guide__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  border: 2px solid #26A9E0;
}

.page-download-guide__btn-primary:hover {
  background-color: #1a7fb0;
  border-color: #1a7fb0;
  transform: translateY(-2px);
}

.page-download-guide__btn-secondary {
  background-color: #FFFFFF;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-download-guide__btn-secondary:hover {
  background-color: #e0f2f7;
  color: #1a7fb0;
  border-color: #1a7fb0;
  transform: translateY(-2px);
}

.page-download-guide__cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  width: 100%; /* Ensure container takes full width */
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}

/* Hero Section */
.page-download-guide__hero-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 0;
  background-color: #f0f8ff; /* Light background for hero */
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
}

.page-download-guide__hero-content {
  flex: 1;
  padding-right: 40px;
  text-align: left;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}