
body {
            font-family: 'Segoe UI', sans-serif;
        }
        .hero {
            background: linear-gradient(135deg, #0d1b3d, #2c3e50);
            color: #fff;
            padding: 100px 0;
        }
        .badge-price {
            font-size: 1.2rem;
            font-weight: bold;
        }
        .cta-btn {
            background-color: #ffc107;
            color: #000;
            font-weight: bold;
        }

.banner-section {
  background: url('img/Banner1.png') center center/cover no-repeat;
  min-height: 80vh;
  position: relative;
  overflow: hidden;
}
.banner-overlay {
  z-index: 1;
  background: rgba(20,40,80,0.4);
}
.banner-content {
  z-index: 2;
}

/* Contact Form Styles */
.contact-form {
  max-width: 400px;
  margin: 40px auto;
  padding: 30px 25px 25px 25px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  font-weight: 500;
  margin-bottom: 4px;
  color: #0d1b3d;
}
.contact-form input,
.contact-form select {
  padding: 10px 12px;
  border: 1px solid #bfc9d9;
  border-radius: 5px;
  font-size: 1rem;
  background: #f7f9fc;
  transition: border 0.2s;
}
.contact-form input:focus,
.contact-form select:focus {
  border-color: #0d1b3d;
  outline: none;
}
.contact-form button[type="submit"] {
  background: linear-gradient(90deg, #0d1b3d, #2c3e50);
  color: #fff;
  border: none;
  padding: 12px 0;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form button[type="submit"]:hover {
  background: linear-gradient(90deg, #2c3e50, #0d1b3d);
}
.contact-form option {
  color: #0d1b3d;
}
