.documents-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0;
  color: #000;
}
.documents-section .documents-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.documents-section .documents-list li {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: #000;
  font-weight: 600;
  max-width: 1100px;
}
.documents-section .documents-list li .icon {
  width: 37px;
  height: 37px;
  flex-shrink: 0;
  margin-top: 2px;
}
.documents-section .documents-list li .doc-link {
  color: #000;
  text-decoration: underline;
}
.documents-section .documents-list li .doc-link:hover {
  text-decoration: none;
}
.documents-section .documents-list li a {
  color: black;
}
@media (max-width: 576px) {
  .documents-section .documents-list li {
    font-size: 0.95rem;
    gap: 0.5rem;
  }
}

.procedure-list {
  margin: 20px 0;
  padding-left: 20px;
}
.procedure-list li {
  font-size: 1.125rem;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #000;
  font-weight: 400;
}
.procedure-list li:last-child {
  margin-bottom: 0;
}

.advantages-wrapper .page-title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  font-family: "Montserrat";
  margin-top: 3rem;
}
.advantages-wrapper .lead-text {
  font-size: 1.125rem;
  line-height: 1.5;
  max-width: 1100px;
  margin-bottom: 2rem;
}
.advantages-wrapper p {
  color: #000;
  font-size: 1.125rem;
}
.advantages-wrapper a {
  color: #000;
  font-size: 1.125rem;
}

.attestation-area {
  margin: 60px auto;
  color: #000;
}
.attestation-area .attestation-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
.attestation-area .attestation-grid {
  display: grid;
  grid-template-columns: 57% 40%;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 992px) {
  .attestation-area .attestation-grid {
    grid-template-columns: 1fr;
  }
}
.attestation-area .attestation-card {
  background: #e3e1e1;
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.attestation-area .attestation-card h4 {
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.attestation-area .attestation-card ol {
  counter-reset: item;
  list-style: none;
  margin: 0;
  padding-left: 30px;
}
.attestation-area .attestation-card ol > li {
  counter-increment: item;
  margin-bottom: 8px;
  line-height: 1.5;
  font-size: 1.125rem;
  position: relative;
}
.attestation-area .attestation-card ol > li::before {
  content: counter(item) ". ";
  position: absolute;
  left: -30px;
}
.attestation-area .attestation-card ol > li ol {
  counter-reset: subitem;
  margin-top: 6px;
  padding-left: 40px;
  list-style: none;
}
.attestation-area .attestation-card ol > li ol > li {
  counter-increment: subitem;
  margin-bottom: 4px;
  position: relative;
}
.attestation-area .attestation-card ol > li ol > li::before {
  content: counter(item) "." counter(subitem) ". ";
  position: absolute;
  left: -40px;
  font-weight: 400;
}
.attestation-area .attestation-card.bottom {
  margin-top: 12px;
}
.attestation-area .columns {
  columns: 2;
  column-gap: 40px;
}
@media (max-width: 768px) {
  .attestation-area .columns {
    columns: 1;
  }
}

.preparation-section {
  margin-top: 4rem;
  margin-bottom: 0rem;
}
.preparation-section .section-title {
  font-size: 1.5rem;
  font-weight: 600;
}
.preparation-section .methods-list {
  font-size: 1.125rem;
  max-width: 750px;
}

.notice {
  display: flex;
  align-items: center;
  background-color: #b0c9fc;
  border-radius: 30px;
  padding: 30px 30px;
  max-width: 1400px;
  margin: 1.5rem 0;
}
.notice .notice-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 2px solid #af4100;
  color: #af4100;
  font-weight: 700;
  font-size: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 3rem;
}
.notice p {
  margin: 0;
  font-weight: 600;
  font-size: 1.125rem;
  max-width: 1000px;
}
.notice li {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.7rem;
}
.notice h3 {
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (max-width: 600px) {
  .notice {
    font-size: 1rem;
    padding: 14px 16px;
  }
  .notice .notice-icon {
    width: 24px;
    height: 24px;
    font-size: 1rem;
    margin-right: 10px;
  }
}

.apply-section .apply-title {
  font-weight: 600;
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: left;
  margin-top: 3rem;
}
.apply-section .btn-nok a {
  display: inline-block;
  background-color: #af4100;
  color: #fff !important;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 30px 150px;
  border-radius: 45px;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.apply-section .btn-nok a:hover {
  text-decoration: underline !important;
}
.apply-section .btn-nok a:hover {
  background-color: rgba(179, 61, 11, 0.8);
  color: #fff;
}
@media (max-width: 768px) {
  .apply-section .apply-title {
    font-size: 1.125rem;
    text-align: center;
  }
  .apply-section .btn-nok a {
    width: 100%;
    max-width: 320px;
    padding: 12px 0;
    font-size: 0.95rem;
  }
}
.apply-section .btn-minstroy {
  display: inline-block;
  background-color: #af4100;
  color: #fff !important;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 30px 150px;
  border-radius: 45px;
  text-decoration: none !important;
  transition: background-color 0.2s ease, transform 0.1s ease;
}
.apply-section .btn-minstroy:hover {
  text-decoration: underline !important;
  background-color: rgba(179, 61, 11, 0.8);
  color: #fff;
}
@media (max-width: 768px) {
  .apply-section .apply-title {
    font-size: 1.125rem;
    text-align: center;
  }
  .apply-section .btn-nok {
    width: 100%;
    max-width: 320px;
    padding: 12px 0;
    font-size: 0.95rem;
  }
}

.notice p {
  font-weight: 400;
  color: #000;
}
.notice h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #000;
}

html,
body {
  overflow-x: hidden;
  max-width: 100%;
}/*# sourceMappingURL=style.css.map */