@charset "utf-8";
/* CSS Document */


.spec-banner-section {
  background-color: #f5f7fa;
  padding: 4rem 2rem;
position: relative;
}

.spec-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;

  background-color: #ffffff;
  padding: 3rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.spec-banner-content {
  flex: 1 1 500px;
}

.spec-banner-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #3a3a3a;
  margin-bottom: 1rem;
}

.spec-banner-text {
  font-size: 1.15rem;
  line-height: 1.6;
  color: #555;
}

.spec-banner-image {
  flex: 1 1 400px;
  text-align: center;
}

.spec-banner-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
}

@media (max-width: 992px) {
  .spec-banner-title {
    font-size: 2rem;
  }

  .spec-banner-text {
    font-size: 1.05rem;
  }
}

@media (max-width: 768px) {
  .spec-banner-container {
    flex-direction: column-reverse;
    text-align: center;
  }

  .spec-banner-content {
    flex: unset;
  }

  .spec-banner-title {
    font-size: 1.8rem;
  }
}

.spec-core-section,
.spec-documents-section,
.spec-security-section {
  background-color: #f9fafa;
  padding: 4rem 2rem;
  color: #1a1a1a;
position: relative;
}

.spec-core-container,
.spec-documents-container,
.spec-security-container {
  max-width: 960px;
  margin: 0 auto;
  background: #ffffff;
  padding: 3rem;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.spec-core-title {
  font-size: 2.3rem;
  font-weight: bold;
  text-align: center;
  color: #3a3a3a;
  margin-bottom: 2rem;
}

.spec-core-intro {
  font-size: 1.05rem;
  text-align: center;
  margin-bottom: 2.5rem;
  color: #333;
}

.spec-core-principle {
  margin-bottom: 2rem;
}

.spec-core-principle h3 {
  font-size: 1.25rem;
  font-weight: bold;
  color: #8c2c2c;
  margin-bottom: 0.7rem;
}

.spec-core-principle h3 span {
  color: #aa3e3e;
}

.spec-core-principle p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #333;
}

.spec-core-highlight {
  font-size: 1.05rem;
  text-align: center;
  background-color: #fffbe8;
  border-left: 4px solid #aa3e3e;
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.05);
  margin-top: 2.5rem;
}

.spec-section-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
  text-align: center;
  color: #3a3a3a;
}

.spec-documents-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-documents-list li {
  position: relative;
  padding-left: 18px;
}

.spec-documents-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d60000;
  font-size: 20px;
  line-height: 1;
}

.spec-documents-list a {
  text-decoration: none;
  color: #212529;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.spec-documents-list a:hover {
  color: #d60000;
  transform: translateX(4px);
}

.spec-documents-list a .link-text {
  text-decoration: underline;
}

.spec-documents-list a .icon {
  text-decoration: none;
  margin-right: 4px;
}



.spec-security-list li {
  margin-bottom: 1rem;
  font-size: 1rem;
  line-height: 1.6;
}



.spec-security-brochures {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.spec-security-brochures li {
  position: relative;
  padding-left: 18px;
}

.spec-security-brochures li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d60000;
  font-size: 20px;
  line-height: 1;
}

.spec-security-brochures a {
  text-decoration: none;
  color: #212529;
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.spec-security-brochures a:hover {
  color: #d60000;
  transform: translateX(4px);
}

.spec-security-brochures a .link-text {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .spec-core-container,
  .spec-documents-container,
  .spec-security-container {
    padding: 2rem;
  }

  .spec-core-title,
  .spec-section-title {
    font-size: 1.9rem;
  }

  .spec-core-principle h3 {
    font-size: 1.1rem;
  }

  .spec-core-highlight {
    font-size: 0.95rem;
  }
}
