.file-shelves-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1rem;
  font-family: Arial, sans-serif;
}

.full-width-banner {
  width: 70%;
  height: auto;
  display: block;
 
  margin-bottom: 1rem;
  margin: auto;
}

.file-shelves-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.file-shelves-item {
  flex: 1 1 300px;
  max-width: 300px;
  text-align: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 1rem;
}

.file-shelves-item img {
  height: 250px;
  width: auto;
  max-width: 100%;
  border-radius: 4px;
}

.file-shelves-description {
  text-align: center;
  font-size: 1rem;
  margin-bottom: 2rem;
}



.file-shelves-note {
  text-align: center;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.file-shelves-subsection h3 {
  font-size: 1.2rem;
  text-align: left;
  margin: 2rem 0 1rem;
}

.file-divider-table {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
}

.file-divider-table table {
  flex: 1 1 350px;
  border-collapse: collapse;
  width: 100%;
  max-width: 400px;
  border: 1px solid #ccc;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  border-radius: 6px;
  overflow: hidden;
}

.file-divider-table th,
.file-divider-table td {
  padding: 0.6rem;
  text-align: center;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  border-bottom: 1px solid #e0e0e0;
}

.file-divider-table thead {
  background-color: #f2f2f2;
  font-weight: bold;
}

.file-shelves-divider-image img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}

.file-shelves-warning {
  background-color: #cfcfcc;
  border-radius: 8px;
  padding: 1.2rem;
  margin-bottom: 2rem;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  line-height: 1.5;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
}


.file-shelves-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 1rem;
  text-align: center;
  margin: 1rem 0;
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
}

.file-shelves-grid small {
  display: block;
  font-size: 0.75rem;
  color: #666;
}

.file-shelves-reminder {
  background-color: #cfcfcc;
  border-radius: 6px;
  padding: 1rem;
  text-align: center;
  font-weight: bold;
  font-size: 1rem;
  margin-bottom: 1rem;
}

.call-to-order div {
  background-color: #669999;
  color: white;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.95rem;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}


.file-shelves-5col {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.file-shelves-5col img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 8px rgba(0,0,0,0.08);
}

.file-shelves-5col div {
  font-family: Arial, sans-serif;
  font-size: 0.95rem;
  padding: 0.25rem;
}

.file-shelves-5col small {
  display: block;
  font-size: 0.75rem;
  color: #666;
}

.call-to-order {
  background-color: #669999;
  color: white;
  border-radius: 6px;
  padding: 0.6rem;
  margin-top: 0.3rem;
  font-size: 0.95rem;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
}


@media (max-width: 768px) {
  .file-shelves-5col {
    grid-template-columns: 1fr;
  }

  .file-shelves-5col img {
    margin: 0 auto;
  }
}

.setup-fee-button {
  margin-top: 0.8rem;
  padding: 0.5rem 1rem;
  background-color: #333366;
  color: white;
  border: none;
  border-radius: 6px;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 0 6px rgba(0,0,0,0.15);
}

.setup-fee-button:hover {
  background-color: #444488;
}

.finish-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 0.8rem;
  justify-items: center;
  margin: 2rem 0;
}

.finish-options-grid img {
  width: 110px;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 0 6px rgba(0,0,0,0.1);
  transition: transform 0.2s ease-in-out;
}

.finish-options-grid img:hover {
  transform: scale(1.05);
}
