.stockroom-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  font-family: Arial, sans-serif;
  color: #333;
}

.stockroom-header {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.stockroom-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.stockroom-row img {
  height: auto;
  max-height: 300px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.stockroom-description {
  max-width: 400px;
  text-align: left;
  padding: 10px 20px;
  border-radius: 8px;
  background-color: #f8f8f8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  font-size: 15px;
  line-height: 1.5;
}

.stockroom-description a {
  color: #004aad;
  text-decoration: none;
}

.stockroom-description a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .stockroom-row {
    flex-direction: column;
    align-items: center;
  }

  .stockroom-description {
    max-width: 90%;
    text-align: center;
  }
}

.stockroom-options {
  margin-top: 60px;
}

.stockroom-options-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  align-items: flex-start;
}

.stockroom-text {
  max-width: 800px;
  flex: 1;
}

.stockroom-text h2 {
  color: #004aad;
  font-size: 20px;
  margin-bottom: 20px;
}

.stockroom-links {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.stockroom-links a {
  font-weight: bold;
  text-align: center;
  color: #004aad;
  text-decoration: none;
  font-size: 16px;
  line-height: 1.4;
}

.stockroom-links a:hover {
  text-decoration: underline;
}

.stockroom-info h3 {
  color: #004aad;
  margin-top: 10px;
  margin-bottom: 10px;
  font-size: 18px;
}

.stockroom-info p {
  font-size: 15px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.stockroom-side-image {
  max-width: 250px;
  flex-shrink: 0;
}

.stockroom-side-image img {
  width: auto;
  height: auto;
  max-height: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
  .stockroom-options-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .stockroom-links {
    justify-content: center;
  }

  .stockroom-side-image {
    margin-top: 20px;
  }
}
