/* style/download.css */

/* Base styles for the page content, assuming body background is #000000 (dark) */
.page-download {
  color: #ffffff; /* Light text for dark background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-bottom: 60px; /* Add some padding at the bottom for overall spacing */
}

/* Header offset for the first main content section */
.page-download__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px;
  padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
  background: linear-gradient(135deg, #0a192f 0%, #000000 100%); /* Dark gradient background for hero */
  overflow: hidden; /* Prevent content overflow */
}

.page-download__hero-content {
  max-width: 900px;
  margin-bottom: 40px;
  z-index: 1;
}

.page-download__hero-title {
  font-size: 3.2em;
  color: #26A9E0; /* Brand color for emphasis */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-download__hero-description {
  font-size: 1.2em;
  color: #f0f0f0;
  margin-bottom: 30px;
}

.page-download__hero-small-text {
  font-size: 0.9em;
  color: #cccccc;
  margin-top: 20px;
}

.page-download__download-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  margin-bottom: 30px;
}

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

.page-download__btn-primary {
  background-color: #26A9E0; /* Primary brand color */
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-download__btn-primary:hover {
  background-color: #1e87b6;
  border-color: #1e87b6;
}

.page-download__btn-secondary {
  background-color: transparent;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-download__btn-secondary:hover {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-download__btn-icon {
  margin-right: 10px;
  width: 32px;
  height: 32px;
  min-width: 32px; /* Ensure icon doesn't shrink too much */
  min-height: 32px;
  /* No filter on images */
}

.page-download__hero-image-wrapper {
  margin-top: 40px;
  max-width: 100%;
  overflow: hidden;
  box-sizing: border-box;
}

.page-download__hero-image {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  min-width: 200px; /* Minimum image size */
  min-height: 200px;
  /* No filter on images */
}

/* General section styling */
.page-download__section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  text-align: center;
}

.page-download__section-title {
  font-size: 2.5em;
  color: #26A9E0;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.page-download__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__section-description {
  font-size: 1.1em;
  color: #cccccc;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}