/* 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: #000000; /* Body background from shared.css */
}

.page-download__section {
  padding: 80px 20px;
  text-align: center;
  position: relative;
}

.page-download__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  box-sizing: border-box;
}

.page-download__section-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #26A9E0; /* Brand color for titles */
  font-weight: bold;
}

.page-download__section-description {
  font-size: 1.1em;
  margin-bottom: 40px;
  color: #f0f0f0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero Section */
.page-download__hero-section {
  background: linear-gradient(135deg, #000000 0%, #26A9E0 100%);
  padding-top: var(--header-offset, 120px); /* Fixed header offset */
  padding-bottom: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
}

.page-download__hero-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
  padding: 0 15px;
}

.page-download__hero-content {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
}

.page-download__hero-title {
  font-size: 3.5em;
  color: #FFFFFF;
  margin-bottom: 20px;
  line-height: 1.2;
}

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

.page-download__hero-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-start;
}

.page-download__btn-primary {
  background-color: #26A9E0;
  color: #FFFFFF;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
}

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

.page-download__btn-download img {
  
  
  vertical-align: middle;
  filter: none; /* Ensure no filter changes image color */
}

.page-download__hero-image-wrapper {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  text-align: center;
}

.page-download__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  filter: none; /* Ensure no filter changes image color */
}

/* Why Download Section */
.page-download__why-download {
  background-color: #FFFFFF;
  color: #333333; /* Dark text for light background */
}

.page-download__why-download .page-download__section-title {
  color: #26A9E0;
}

.page-download__why-download .page-download__section-description {
  color: #555555;
}

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

.page-download__feature-item {
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-download__feature-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.page-download__feature-icon {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px; /* Enforce min size for images */
  min-height: 200px;
}

.page-download__feature-title {
  font-size: 1.5em;
  color: #26A9E0;
  margin-bottom: 15px;
}

.page-download__feature-text {
  color: #666666;
}

/* Features Overview Section */
.page-download__features-overview {
  background-color: #000000;
  color: #ffffff;
}

.page-download__features-overview .page-download__section-title {
  color: #26A9E0;
}

.page-download__features-overview .page-download__section-description {
  color: #f0f0f0;
}

.page-download__feature-category {
  margin-bottom: 60px;
  text-align: left;
}

.page-download__category-title {
  font-size: 2em;
  color: #FFFFFF;
  margin-bottom: 30px;
  text-align: center;
}

.page-download__category-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

.page-download__category-content--reverse {
  flex-direction: row-reverse;
}

.page-download__category-image {
  flex: 1;
  min-width: 300px;
  max-width: 600px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  filter: none; /* Ensure no filter changes image color */
  min-width: 200px; /* Enforce min size for images */
  min-height: 200px;
}

.page-download__category-list {
  flex: 1;
  min-width: 300px;
  list-style: none;
  padding: 0;
  margin: 0;
}