/* style/download.css */

/* Base styles for the download page */
.page-download {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #ffffff; /* Default text color for dark body background */
  background-color: transparent; /* Body background is handled by shared.css */
}

/* Fixed header offset */
.page-download__hero-section {
  padding-top: var(--header-offset, 120px);
}

/* General container for content */
.page-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

/* Section titles */
.page-download__section-title {
  font-size: 2.5em;
  color: #ffffff;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

/* Text blocks */
.page-download__text-block {
  font-size: 1.1em;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #ffffff;
  text-align: center;
}

/* Buttons */
.page-download__btn-primary,
.page-download__btn-secondary {
  display: inline-block;
  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;
  cursor: pointer;
  text-align: center;
  box-sizing: border-box;
}

.page-download__btn-primary {
  background-color: #C30808; /* Specific color for Register/Login, used for primary CTA */
  color: #FFFF00; /* Specific font color for Register/Login */
  border: 2px solid #C30808;
}

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

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

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

.page-download__btn-full-width {
  width: 100%;
  display: block;
  margin-top: 20px;
}

/* Hero Section */
.page-download__hero-section {
  background-color: #017439; /* Brand color as background */
  color: #ffffff;
  padding-bottom: 60px;
}

.page-download__hero-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.page-download__hero-content {
  flex: 1;
  text-align: left;
}

.page-download__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #ffffff;
}

.page-download__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  line-height: 1.7;
  color: #ffffff;
}

.page-download__cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-start;
}