/* style/download-center-security-notice.css */
.page-download-center-security-notice {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

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

.page-download-center-security-notice__container--center {
  text-align: center;
}

.page-download-center-security-notice__hero {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: #fff;
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-security-notice__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: bold;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-download-center-security-notice__hero-subtitle {
  font-size: 1.5em;
  margin-bottom: 40px;
  opacity: 0.9;
}

.page-download-center-security-notice__section {
  padding: 60px 0;
  border-bottom: 1px solid #eee;
}

.page-download-center-security-notice__section:last-of-type {
  border-bottom: none;
}

.page-download-center-security-notice__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

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

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

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

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

.page-download-center-security-notice__icon {
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
  color: #007bff;
}

.page-download-center-security-notice__grid-item h3 {
  font-size: 1.5em;
  color: #007bff;
  margin-bottom: 15px;
}

.page-download-center-security-notice__list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.page-download-center-security-notice__list li {
  background-color: #e9f5ff;
  border-left: 5px solid #007bff;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 8px;
  font-size: 1.1em;
  line-height: 1.8;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.page-download-center-security-notice__list li p {
  margin: 0;
  color: #333;
}

.page-download-center-security-notice__list li strong {
  color: #0056b3;
}

.page-download-center-security-notice__cta-box {
  background-color: #fff3cd;
  border: 1px solid #ffeeba;
  border-radius: 8px;
  padding: 30px;
  margin-top: 50px;
  text-align: center;
  color: #856404;
}

.page-download-center-security-notice__cta-box p {
  font-size: 1.3em;
  margin-bottom: 20px;
  color: #333;
}

.page-download-center-security-notice__numbered-list {
  list-style: none;
  padding: 0;
  counter-reset: item;
}

.page-download-center-security-notice__numbered-list li {
  counter-increment: item;
  margin-bottom: 40px;
  position: relative;
  padding-left: 70px;
}

.page-download-center-security-notice__numbered-list li::before {
  content: counter(item);
  position: absolute;
  left: 0;
  top: 0;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8em;
  font-weight: bold;
  box-shadow: 0 4px 10px rgba(0, 123, 255, 0.4);
}

.page-download-center-security-notice__numbered-list li h3 {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 10px;
}

.page-download-center-security-notice__image-inline {
  max-width: 100%;
  height: auto;
  margin: 20px 0;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-download-center-security-notice__faq-item {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.page-download-center-security-notice__faq-item:hover {
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.page-download-center-security-notice__faq-question {
  font-size: 1.3em;
  color: #007bff;
  padding: 20px 25px;
  margin: 0;
  cursor: pointer;
  background-color: #f0f8ff;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}

.page-download-center-security-notice__faq-question::after {
  content: '+';
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5em;
  transition: transform 0.3s ease;
}

.page-download-center-security-notice__faq-question.active::after {
  content: '-';
  transform: translateY(-50%) rotate(180deg);
}

.page-download-center-security-notice__faq-answer {
  padding: 0 25px 20px;
  margin: 0;
  color: #555;
  display: none;
  font-size: 1.1em;
}

.page-download-center-security-notice__faq-answer.active {
  display: block;
}

.page-download-center-security-notice__final-cta {
  background-color: #007bff;
  color: #fff;
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-download-center-security-notice__image-cta {
  max-width: 100%;
  height: auto;
  border-radius: 15px;
  margin-bottom: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-download-center-security-notice__final-cta .page-download-center-security-notice__section-title {
  color: #fff;
}

.page-download-center-security-notice__final-cta .page-download-center-security-notice__section-title::after {
  background-color: #ffc107;
}

.page-download-center-security-notice__final-cta p {
  font-size: 1.2em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-download-center-security-notice__small-text {
  font-size: 0.9em;
  opacity: 0.8;
  margin-top: 20px;
}

.page-download-center-security-notice__btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  font-size: 1.1em;
}

.page-download-center-security-notice__btn--primary {
  background-color: #ffc107;
  color: #0056b3;
}

.page-download-center-security-notice__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-security-notice__btn--secondary {
  background-color: #0056b3;
  color: #fff;
}

.page-download-center-security-notice__btn--secondary:hover {
  background-color: #004085;
  transform: translateY(-3px);
  box-shadow: 0 7px 20px rgba(0, 0, 0, 0.3);
}

.page-download-center-security-notice__btn--large {
  padding: 18px 45px;
  font-size: 1.3em;
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-download-center-security-notice__hero-title {
    font-size: 2.8em;
  }
  .page-download-center-security-notice__hero-subtitle {
    font-size: 1.2em;
  }
  .page-download-center-security-notice__section-title {
    font-size: 2em;
  }
  .page-download-center-security-notice__grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .page-download-center-security-notice__numbered-list li {
    padding-left: 60px;
  }
  .page-download-center-security-notice__numbered-list li::before {
    width: 45px;
    height: 45px;
    font-size: 1.6em;
  }
}

@media (max-width: 768px) {
  .page-download-center-security-notice__hero {
    padding: 80px 0;
  }
  .page-download-center-security-notice__hero-title {
    font-size: 2.2em;
  }
  .page-download-center-security-notice__hero-subtitle {
    font-size: 1em;
  }
  .page-download-center-security-notice__section {
    padding: 40px 0;
  }
  .page-download-center-security-notice__section-title {
    font-size: 1.8em;
  }
  .page-download-center-security-notice__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-download-center-security-notice__btn--large {
    padding: 15px 35px;
    font-size: 1.1em;
  }
  .page-download-center-security-notice__grid {
    grid-template-columns: 1fr;
  }
  .page-download-center-security-notice__list li,
  .page-download-center-security-notice__faq-item {
    padding: 15px;
  }
  .page-download-center-security-notice__faq-question {
    font-size: 1.1em;
  }
  .page-download-center-security-notice__numbered-list li {
    padding-left: 50px;
  }
  .page-download-center-security-notice__numbered-list li::before {
    width: 40px;
    height: 40px;
    font-size: 1.4em;
  }
}

@media (max-width: 480px) {
  .page-download-center-security-notice__hero {
    padding: 60px 0;
  }
  .page-download-center-security-notice__hero-title {
    font-size: 1.8em;
  }
  .page-download-center-security-notice__hero-subtitle {
    font-size: 0.9em;
  }
  .page-download-center-security-notice__section-title {
    font-size: 1.5em;
    margin-bottom: 25px;
  }
  .page-download-center-security-notice__btn {
    font-size: 0.9em;
    padding: 10px 20px;
  }
  .page-download-center-security-notice__btn--large {
    font-size: 1em;
    padding: 12px 25px;
  }
  .page-download-center-security-notice__grid-item h3 {
    font-size: 1.3em;
  }
  .page-download-center-security-notice__faq-question {
    font-size: 1em;
    padding: 15px 20px;
  }
  .page-download-center-security-notice__faq-question::after {
    right: 20px;
  }
  .page-download-center-security-notice__faq-answer {
    padding: 0 20px 15px;
    font-size: 1em;
  }
  .page-download-center-security-notice__numbered-list li h3 {
    font-size: 1.5em;
  }
}