.doors-section { padding: 20px; max-width: 1200px; margin: 0 auto; }
.doors-title { font-size: 28px; margin-bottom: 20px; text-align: center; }
.doors-subtitle { font-size: 24px; margin-top: 30px; margin-bottom: 15px; position: relative; }
.doors-subtitle::after { content: ""; display: block; width: 50px; height: 3px; background: #c00; margin-top: 10px; margin-left: auto; margin-right: auto; }
.center { text-align: center; }
.doors-list { margin-left: 20px; margin-bottom: 20px; }
.doors-list li { margin-bottom: 10px; }
.doors-table-wrapper { overflow-x: auto; margin-bottom: 30px; }
.doors-table { width: 100%; border-collapse: collapse; }
.doors-table th, .doors-table td { border: 1px solid #ddd; padding: 8px; text-align: left; }
.doors-gallery {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.doors-gallery figure {
  max-width: calc(33.333% - 10px);
  width: auto;
  margin: 0;
  display: flex;
  flex-direction: column;
}

.doors-gallery img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
}

@media (max-width: 992px) {
  .doors-gallery figure {
    max-width: calc(50% - 10px);
  }
}

@media (max-width: 600px) {
  .doors-gallery figure {
    max-width: 100%;
  }
}