* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f9fafc;
  color: #000; /* Black text everywhere */
}

/* Container */
.container {
  width: 90%;
  max-width: 1100px; /* Larger for general layout; adjust for form if needed */
  margin: auto;
}

/* Header */
.header {
  background-color: #fff;
  padding: 20px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px; /* Adjusted gap for better spacing; was 200px which might be too wide */
}

.logo {
  font-size: 1.25rem;
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.4px;
  line-height: 1.25;
  color: #020402;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: #040505;
  font-weight: 500;
  transition: color 0.3s;
  font-family: Poppins;
}

.nav-links a:hover {
  color: #32aa27;
}

/* Social Links (if used in HTML) */
.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

/* Apply Flow Section */
.apply-flow h1 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 20px;
  color: #002b5c;
}

/* Form Styling */
form {
  background: #fff;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 600px; /* Narrower for form focus */
  margin: 0 auto; /* Center the form */
}

input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 6px;
  color: #000; /* black text inside inputs */
}

input::placeholder {
  color: #555;
}

input:focus {
  border-color: #002b5c;
  outline: none;
  box-shadow: 0 0 5px rgba(0, 43, 92, 0.3);
}

.btn-primary {
  background-color: #002b5c;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #004080;
}

/* Multi-Step Form Additions */
.step-indicators {
  display: flex;
  justify-content: center;
  margin-bottom: 20px;
}

.step-indicator {
  padding: 10px 20px;
  margin: 0 10px;
  background: #e0e0e0;
  border-radius: 5px;
}

.step-indicator.completed {
  background: #002b5c;
  color: white;
}

.form-step {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.form-step h2 {
  text-align: center;
  color: #002b5c;
  margin-bottom: 15px;
}

input.error {
  border-color: red;
}

.form-navigation {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
}

.next-btn, .prev-btn {
  background-color: #002b5c;
  color: white;
  border: none;
  padding: 12px 20px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

.next-btn:hover, .prev-btn:hover {
  background-color: #004080;
}

/* Photo Preview */
#photoPreview {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

/* Footer */
.footer {
  background: #002b5c;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}