body {
  font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
  margin: 0;
  min-height: 100vh;
  background: linear-gradient(120deg, #0f2027 0%, #2c5364 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f0f6fb;
}

/* Container */
.container {
  max-width: 500px;
  margin: 60px auto;
  background: rgba(255, 255, 255, 0.08);
  padding: 40px 24px;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 80px;
  animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  text-align: center;
  margin-bottom: 28px;
  color: #00fff7;
  font-size: 2.3rem;
  letter-spacing: 2px;
  font-weight: 700;
}

/* Labels */
label {
  display: block;
  margin-top: 18px;
  font-weight: 500;
  color: #e6f1fa;
  letter-spacing: 1px;
  font-size: 0.95rem;
}

/* Inputs + selects + textarea */
select, textarea, input[type="text"], input[type="email"], input[type="tel"], input[type="file"] {
  width: 100%;
  margin-top: 7px;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,255,247,0.6);
  font-size: 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #04121f;
  transition: all 0.3s ease;
  box-sizing: border-box;
}

select:focus, textarea:focus, input:focus {
  border-color: #00fff7;
  outline: none;
  box-shadow: 0 0 10px rgba(0, 255, 247, 0.6);
  background: rgba(255, 255, 255, 0.18);
}

/* Issue rows */
.issue-group { margin-top: 15px; }
.issue-row {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.issue-row label {
  flex: 1;
  margin: 0;
  font-size: 0.95rem;
}
.issue-row select {
  width: 100px;
}

/* Buttons */
button {
  margin-top: 28px;
  width: 100%;
  padding: 14px;
  background: linear-gradient(90deg, #00fff7 0%, #007bff 100%);
  color: #0f2027;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}
button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 18px rgba(0, 255, 247, 0.4);
}
button:active {
  transform: scale(0.98);
}

/* Branding header */
.branding-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  background: linear-gradient(90deg, #0f2027, #2c5364);
  display: flex;
  align-items: center;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  border-bottom: 2px solid rgba(0,255,247,0.3);
}

.branding-logo {
  font-size: 2rem;
  font-weight: 700;
  color: #00fff7;
  letter-spacing: 2px;
  margin-left: 28px;
}

/* Footer */
.footer {
  background: #0f2027;
  color: #e0eafc;
  padding: 40px 20px;
  text-align: center;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-section {
  flex: 1;
  min-width: 250px;
}

.footer-section h3 {
  font-size: 1.2rem;
  color: #00fff7;
  margin-bottom: 15px;
}

.footer-section ul {
  list-style: none;
  padding: 0;
}

.footer-section ul li {
  margin: 5px 0;
}

.footer-section ul li a {
  color: #e0eafc;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-section ul li a:hover {
  color: #00fff7;
}

.footer-section p {
  margin: 5px 0;
}

.footer-section a {
  color: #00fff7;
  text-decoration: none;
}

.footer-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  margin-top: 20px;
  border-top: 1px solid #2c5364;
  padding-top: 10px;
  font-size: 0.9rem;
}

/* Responsive tweaks */
@media (min-width: 600px) {
  .container { max-width: 700px; padding: 48px 36px; }
  h1 { font-size: 2.6rem; }
}
@media (min-width: 900px) {
  .container { max-width: 900px; padding: 56px 72px; }
  h1 { font-size: 3rem; }
}
@media (max-width: 480px) {
  .container { padding: 20px 10px; max-width: 95vw; }
  h1 { font-size: 1.6rem; }
  .branding-logo { font-size: 1.3rem; margin-left: 12px; }
  .branding-header { height: 46px; }
}
