* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: #111;
  color: #f5f5f5;
  line-height: 1.5;
}

.container {
  width: min(900px, 92%);
  margin: 0 auto;
  padding: 32px 0 60px;
}

.hero {
  margin-bottom: 24px;
}

.hero h1 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.card {
  background: #1e293b;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

h2 {
  margin-top: 0;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
}

label {
  margin-bottom: 6px;
  font-weight: 700;
}

input,
select,
button {
  font: inherit;
}

input,
select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #444;
  background: #0f0f0f;
  color: #fff;
}

button,
.btn {
  display: inline-block;
  margin-top: 18px;
  padding: 12px 18px;
  border: none;
  border-radius: 10px;
  background: #f2b300;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

button:hover,
.btn:hover {
  opacity: 0.92;
}

button,
.btn {
  background: #f2b300;
}

.btn.secondary {
  background: #2d2d2d;
  color: #fff;
  border: 1px solid #444;
}

button:hover,
.btn:hover {
  transform: translateY(-1px);
}

.results .result-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.result-item {
  background: #121212;
  border: 1px solid #2a2a2a;
  border-radius: 10px;
  padding: 14px;
}

.result-item span {
  display: block;
  font-size: 0.95rem;
  color: #ccc;
  margin-bottom: 8px;
}

.result-item strong {
  font-size: 1.2rem;
}

.summary {
  margin-top: 18px;
  color: #ddd;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.presets{
  margin-bottom:15px;
}

.presets button{
  background:#1e293b;
  color:white;
  border:none;
  padding:6px 12px;
  margin:4px;
  border-radius:6px;
  cursor:pointer;
  font-size:14px;
}

.presets button:hover{
  background:#334155;
}

.hero img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 10px 0 20px 0;
}

.hero img {
  max-width: 600px;
  width: 100%;
  height: auto;
  display: block;
  margin: 20px auto;
  border-radius: 8px;
}

.hero {
  text-align: center;
}

h1 {
  text-align: center;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
}

.hero {
  text-align: center;
  margin-bottom: 30px;
}

.hero h1 {
  margin-bottom: 10px;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 20px auto;
  font-size: 1.1rem;
}
.card {
  background: #1e293b;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.hero {
  border-bottom: 1px solid #eee;
  padding-bottom: 25px;
}

body {
  background: #0f172a;
  color: #e5e7eb;
  font-family: system-ui, -apple-system, Arial, sans-serif;
}




