.page-app-download-security-notice {
  font-family: 'Arial', sans-serif;
  color: #0A2342; /* Main text color */
  line-height: 1.6;
  background-color: #f8f9fa;
}

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

.page-app-download-security-notice__hero-section {
  background: linear-gradient(135deg, #0A2342 0%, #2a4a6e 100%); /* Dark blue gradient */
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-app-download-security-notice__hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('[GALLERY:bg:abstract,geometric,dark_blue]');
  background-size: cover;
  opacity: 0.1;
  z-index: 0;
}

.page-app-download-security-notice__hero-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  font-weight: bold;
  color: #FFD700; /* Gold for emphasis */
  position: relative;
  z-index: 1;
}

.page-app-download-security-notice__hero-description {
  font-size: 1.2em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

.page-app-download-security-notice__button {
  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, transform 0.3s ease;
  position: relative;
  z-index: 1;
}

.page-app-download-security-notice__button--primary {
  background-color: #FFD700; /* Gold */
  color: #0A2342;
  border: 2px solid #FFD700;
}

.page-app-download-security-notice__button--primary:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-app-download-security-notice__button--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  margin-left: 15px;
}

.page-app-download-security-notice__button--secondary:hover {
  background-color: #FFD700;
  color: #0A2342;
  transform: translateY(-3px);
}

.page-app-download-security-notice__content-section {
  padding: 60px 0;
  background-color: #ffffff;
  border-bottom: 1px solid #eee;
}

.page-app-download-security-notice__content-section:nth-of-type(even) {
  background-color: #f2f4f6;
}

.page-app-download-security-notice__section-title {
  font-size: 2.2em;
  color: #0A2342;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.page-app-download-security-notice__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  margin: 15px auto 0;
  border-radius: 2px;
}

.page-app-download-security-notice__text-intro, .page-app-download-security-notice__text-final, .page-app-download-security-notice__text-outro {
  font-size: 1.1em;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 30px;
  color: #333;
}

.page-app-download-security-notice__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-app-download-security-notice__grid-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-app-download-security-notice__grid-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.page-app-download-security-notice__item-title {
  font-size: 1.5em;
  color: #0A2342;
  margin-top: 20px;
  margin-bottom: 15px;
}

.page-app-download-security-notice__item-text {
  font-size: 1em;
  color: #555;
  text-align: left;
}

.page-app-download-security-notice__image {
  max-width: 120px;
  height: auto;
  margin-bottom: 20px;
}

.page-app-download-security-notice__steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.page-app-download-security-notice__step-item {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: left;
  position: relative;
  padding-top: 60px; /* Space for step number */
}

.page-app-download-security-notice__step-number {
  position: absolute;
  top: 15px;
  left: 30px;
  background-color: #FFD700;
  color: #0A2342;
  font-size: 1.8em;
  font-weight: bold;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.page-app-download-security-notice__step-title {
  font-size: 1.4em;
  color: #0A2342;
  margin-bottom: 15px;
}

.page-app-download-security-notice__step-text {
  font-size: 1em;
  color: #555;
}

.page-app-download-security-notice__step-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 20px;
}

.page-app-download-security-notice__list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.page-app-download-security-notice__list li {
  margin-bottom: 10px;
  color: #333;
  font-size: 1em;
}

.page-app-download-security-notice__list--checked li {
  position: relative;
  padding-left: 30px;
}

.page-app-download-security-notice__list--checked li::before {
  content: '✔';
  color: #FFD700;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.2em;
}

.page-app-download-security-notice__list-heading {
  display: inline;
  font-size: 1.1em;
  color: #0A2342;
  margin-right: 5px;
}

.page-app-download-security-notice__commitment {
  background-color: #0A2342;
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-app-download-security-notice__commitment .page-app-download-security-notice__section-title {
  color: #FFD700;
}

.page-app-download-security-notice__commitment .page-app-download-security-notice__text-intro,
.page-app-download-security-notice__commitment .page-app-download-security-notice__text-outro {
  color: #e0e0e0;
}

.page-app-download-security-notice__faq-item {
  background-color: #ffffff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 25px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-app-download-security-notice__faq-question {
  font-size: 1.3em;
  color: #0A2342;
  margin-bottom: 10px;
}

.page-app-download-security-notice__faq-answer {
  font-size: 1em;
  color: #555;
}

.page-app-download-security-notice__faq-answer a {
  color: #0A2342;
  text-decoration: underline;
}

.page-app-download-security-notice__faq-answer a:hover {
  color: #FFD700;
}

.page-app-download-security-notice__cta-final {
  background: linear-gradient(45deg, #0A2342, #4a6c90);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-app-download-security-notice__cta-title {
  font-size: 2.5em;
  color: #FFD700;
  margin-bottom: 20px;
}

.page-app-download-security-notice__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .page-app-download-security-notice__hero-title {
    font-size: 2.2em;
  }

  .page-app-download-security-notice__hero-description {
    font-size: 1em;
  }

  .page-app-download-security-notice__section-title {
    font-size: 1.8em;
  }

  .page-app-download-security-notice__grid,
  .page-app-download-security-notice__steps-grid {
    grid-template-columns: 1fr;
  }

  .page-app-download-security-notice__button {
    width: 100%;
    margin-left: 0;
    margin-bottom: 15px;
  }

  .page-app-download-security-notice__button--secondary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-app-download-security-notice__hero-title {
    font-size: 1.8em;
  }

  .page-app-download-security-notice__section-title {
    font-size: 1.5em;
  }

  .page-app-download-security-notice__button {
    padding: 12px 20px;
    font-size: 1em;
  }
}

/* Ensure link contrast */
.page-app-download-security-notice a {
  color: #0A2342;
}
.page-app-download-security-notice a:hover {
  color: #FFD700;
}
.page-app-download-security-notice__item-text a {
  color: #0A2342; /* Ensure links in text are visible */
}
.page-app-download-security-notice__item-text a:hover {
  color: #FFD700;
}
.page-app-download-security-notice__commitment a {
  color: #FFD700;
}
.page-app-download-security-notice__commitment a:hover {
  color: #ffffff;
}