.documents-section {
  background: linear-gradient(135deg, #eaf8ff 0%, #ffffff 100%);
  padding: 60px 0;
}

.documents-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  align-items: flex-start;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.documents-text {
  flex: 1 1 400px;
}

.documents-title {
  font-size: 1.6rem;
  margin-bottom: 20px;
  color: #003f6d;
  text-align: center;
}

.section-line {
  border: none;
  border-top: 1px solid #ccc;
  margin: 10px auto 30px auto;
  width: 80%;
}

.documents-list {
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
}

.documents-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.documents-list img {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.documents-list a {
  color: #005b96;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.5;
  display: inline-block;
}

.documents-list a:hover {
  text-decoration: underline;
}

.reg {
  font-weight: 600;
  color: #003f6d;
  margin-top: 30px;
  text-align: center;
}

.reg a {
  color: #003f6d;
  text-decoration: none;
}

.documents-image {
  flex: 1 1 400px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  max-width: 600px;
  margin: 0 auto;
}

.documents-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

@media (max-width: 768px) {
  .documents-container {
    flex-direction: column;
    align-items: center;
  }

  .documents-text,
  .documents-image {
    flex: 1 1 100%;
    max-width: 100%;
  }

  .documents-list li {
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .documents-list a {
    font-size: 0.95rem;
  }

  .documents-title {
    text-align: center;
  }

  .reg {
    text-align: center;
  }

  .documents-image {
    margin-top: 30px;
  }
}
