/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Fonts & Colors */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #199bd2;
  background-color: #f9f9f9;
}

/* Header */
.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #158bd4;
  color: #fff;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s;
}

.nav a:hover {
  color: #040313;
}

/* Hero Section */
.hero {
  background: linear-gradient(rgba(247, 244, 244, 0.5), rgba(10, 87, 169, 0.5)),
              url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9') center/cover no-repeat;
  height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: #139dec;
  color: #222;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  transition: background 0.3s;
}

.btn:hover {
  background: #f6f3f0;
}

/* Form Section */
.form-section {
  max-width: 600px;
  margin: 3rem auto;
  padding: 2rem;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.form-section h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  color: #0c68be;
}

.consult-form label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.consult-form input,
.consult-form select,
.consult-form textarea {
  width: 100%;
  padding: 0.75rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.consult-form button {
  width: 100%;
  padding: 1rem;
  border: none;
  background: #0b7aaa;
  color: #fff;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}

.consult-form button:hover {
  background: #f4f2ef;
  color: #222;
}

/* Footer */
.footer {
  text-align: center;
  padding: 1rem;
  background: #106da7;
  color: #fff;
  margin-top: 3rem;
}