/* style/app-download-security.css */
.page-app-download-security {
  font-family: 'Arial', sans-serif;
  color: #d5d1bc; /* Light text for dark background */
  background-color: #2A2E43; /* Main dark background */
  line-height: 1.6;
}

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

/* Hero Section */
.page-app-download-security__hero-section {
  background: linear-gradient(135deg, #2A2E43 0%, #3a3f5a 100%); /* Darker gradient */
  padding: 100px 0;
  text-align: center;
  color: #ffffff;
}

.page-app-download-security__hero-title {
  font-size: 3.2em;
  margin-bottom: 20px;
  color: #FFD700; /* Gold for emphasis */
  font-weight: bold;
}

.page-app-download-security__hero-subtitle {
  font-size: 1.3em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  color: #d5d1bc;
}

.page-app-download-security__cta-group {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.page-app-download-security__btn {
  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, transform 0.3s ease;
  white-space: nowrap;
}

.page-app-download-security__btn--primary {
  background-color: #FFD700;
  color: #2A2E43;
  border: 2px solid #FFD700;
}

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

.page-app-download-security__btn--secondary {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-app-download-security__btn--secondary:hover {
  background-color: #FFD700;
  color: #2A2E43;
  transform: translateY(-3px);
}

.page-app-download-security__btn--tertiary {
  background-color: #4a4f6d;
  color: #FFD700;
  border: 2px solid #4a4f6d;
}

.page-app-download-security__btn--tertiary:hover {
  background-color: #5a5f7d;
  color: #FFD700;
  transform: translateY(-3px);
}

/* Content Sections */
.page-app-download-security__content-section,
.page-app-download-security__technology-section,
.page-app-download-security__tips-section,
.page-app-download-security__cta-section {
  padding: 80px 0;
  background-color: #2A2E43;
}

.page-app-download-security__section-title {
  font-size: 2.5em;
  color: #FFD700;
  text-align: center;
  margin-bottom: 50px;
  font-weight: bold;
}

.page-app-download-security__paragraph {
  font-size: 1.1em;
  color: #d5d1bc;
  max-width: 900px;
  margin: 0 auto 20px auto;
  text-align: justify;
}

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

.page-app-download-security__feature-item {
  background-color: #3A3F5A; /* Slightly lighter dark blue */
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease;
}

.page-app-download-security__feature-item:hover {
  transform: translateY(-10px);
}

.page-app-download-security__feature-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.5));
}

.page-app-download-security__feature-title {
  font-size: 1.8em;
  color: #FFD700;
  margin-bottom: 15px;
  font-weight: bold;
}

.page-app-download-security__feature-description {
  font-size: 1em;
  color: #c0c0c0;
  text-align: justify;
}

.page-app-download-security__tips-list {
  list-style: none;
  padding: 0;
  margin-top: 40px;
}

.page-app-download-security__tips-list li {
  background-color: #3A3F5A;
  margin-bottom: 20px;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-app-download-security__tips-list li a {
  color: #FFD700;
  text-decoration: none;
  font-weight: bold;
}

.page-app-download-security__tips-list li a:hover {
  text-decoration: underline;
}

.page-app-download-security__list-title {
  font-size: 1.5em;
  color: #FFD700;
  margin-bottom: 10px;
  font-weight: bold;
}

.page-app-download-security__tips-list p {
  color: #c0c0c0;
  font-size: 1.05em;
  text-align: justify;
}

.page-app-download-security__cta-section {
  text-align: center;
  background-color: #2A2E43;
  padding-bottom: 100px;
}

.page-app-download-security__cta-section .page-app-download-security__paragraph {
  margin-bottom: 30px;
}

.page-app-download-security__footer-image {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-top: 60px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-app-download-security__hero-title {
    font-size: 2.5em;
  }
  .page-app-download-security__section-title {
    font-size: 2em;
  }
  .page-app-download-security__feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-app-download-security__hero-section,
  .page-app-download-security__content-section,
  .page-app-download-security__technology-section,
  .page-app-download-security__tips-section,
  .page-app-download-security__cta-section {
    padding: 60px 0;
  }
  .page-app-download-security__hero-title {
    font-size: 2em;
  }
  .page-app-download-security__hero-subtitle {
    font-size: 1.1em;
  }
  .page-app-download-security__section-title {
    font-size: 1.8em;
  }
  .page-app-download-security__feature-item {
    padding: 25px;
  }
  .page-app-download-security__feature-title {
    font-size: 1.6em;
  }
  .page-app-download-security__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-app-download-security__cta-group {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .page-app-download-security__hero-title {
    font-size: 1.8em;
  }
  .page-app-download-security__hero-subtitle {
    font-size: 1em;
  }
  .page-app-download-security__section-title {
    font-size: 1.5em;
  }
  .page-app-download-security__feature-grid {
    grid-template-columns: 1fr;
  }
  .page-app-download-security__feature-item {
    padding: 20px;
  }
  .page-app-download-security__feature-title {
    font-size: 1.4em;
  }
  .page-app-download-security__list-title {
    font-size: 1.3em;
  }
  .page-app-download-security__paragraph,
  .page-app-download-security__feature-description,
  .page-app-download-security__tips-list p {
    font-size: 0.95em;
  }
}