body {
  font-family: 'Helvetica', Arial, sans-serif;
  background: #3a3a3a;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 900px;
  margin: 40px auto;
  background: #3a3a3a;
  padding: 40px 60px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

h1 {
  font-size: 2.5rem;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
}

h2 {
  font-size: 22px;
  color: #567fa9;
  margin-bottom: 12px;
  border-bottom: 2px solid #567fa9;
  padding-bottom: 4px;
}

p {
  color: #d0d0d0;
  line-height: 1.6;
  margin-bottom: 15px;
}

label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
  color: #4a9eff;
}

input[type="text"],
input[type="tel"],
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 10px;
  font-size: 14px;
  margin-top: 4px;
  border: 1px solid #555;
  border-radius: 6px;
  transition: border 0.2s;
  box-sizing: border-box;
  appearance: none;
  background: #2a2a2a;
  color: #ffffff;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2C3E50;
  outline: none;
}

textarea {
  resize: vertical;
}

.multi-entry {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  flex-wrap: wrap;
  position: relative;
}

.multi-entry input,
.multi-entry select {
  flex: 1;
  min-width: 120px;
}

.add-button {
  margin-top: 10px;
  cursor: pointer;
  background: #2C3E50;
  color: white;
  border: none;
  padding: 4px 10px;
  border-radius: 4px;
}

button.generate {
  margin-top: 25px;
  background: #27ae60;
  color: white;
  border: none;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 6px;
  font-size: 16px;
}

button.generate:hover,
.add-button:hover {
  opacity: 0.85;
}

.section-box {
  background: transparent;
  padding: 0;
  border-radius: 0;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  box-sizing: border-box;
}

.section-box label {
  display: block;
  font-weight: 600;
  color: #e0e0e0;
  margin-top: 12px;
  width: 100%;
  text-align: left;
}

.section-box input,
.section-box select,
.section-box textarea {
  width: 100%;
}

.dropdown-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #ccc;
  background: white;
  z-index: 1000;
  display: none;
}

.dropdown-list div {
  padding: 5px;
  cursor: pointer;
}

.dropdown-list div:hover {
  background: #eee;
}

.generate-container {
  margin-top: 40px;
  text-align: center;
}

/* ===== TABLET SCREENS (768px and up) ===== */
@media (min-width: 768px) {
  .container {
    max-width: 750px;
  }
}

/* ===== DESKTOP SCREENS (1024px and up) ===== */
@media (min-width: 1024px) {
  .container {
    max-width: 900px;
  }
}

/* ===== PRINT STYLES ===== */
@media print {
  body {
    background: white;
  }

  .container {
    background: white;
    box-shadow: none;
  }

  button {
    display: none;
  }

  .generate-container {
    display: none;
  }
}