/* style/resources-safe-download-install.css */
.page-resources-safe-download-install {
  font-family: 'Arial', sans-serif;
  color: #ffffff; /* Light text for dark body background */
  line-height: 1.6;
  background-color: transparent; /* Body background is handled by shared.css #111 */
}

.page-resources-safe-download-install__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-resources-safe-download-install__section {
  padding: 60px 0;
}

.page-resources-safe-download-install__hero-section {
  position: relative;
  padding-top: var(--header-offset, 120px);
  padding-bottom: 80px;
  background: linear-gradient(135deg, #26A9E0, #1a7bbd); /* Brand colors */
  color: #ffffff;
  text-align: center;
  overflow: hidden;
}

.page-resources-safe-download-install__hero-content {
  max-width: 900px;
  margin: 0 auto 40px auto;
  position: relative;
  z-index: 1;
}

.page-resources-safe-download-install__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  line-height: 1.2;
  color: #ffffff;
}

.page-resources-safe-download-install__hero-description {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-safe-download-install__hero-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-resources-safe-download-install__btn-primary,
.page-resources-safe-download-install__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  white-space: normal;
  word-wrap: break-word;
  box-sizing: border-box;
  max-width: 100%;
}

.page-resources-safe-download-install__btn-primary {
  background-color: #EA7C07; /* Login color for CTA */
  color: #ffffff;
  border: 2px solid #EA7C07;
}

.page-resources-safe-download-install__btn-primary:hover {
  background-color: #d16b06;
  transform: translateY(-2px);
}