/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* Header */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #0077b6;
  padding: 15px 40px;
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
}
header .logo {
  font-size: 20px;
  font-weight: bold;
}
header nav a {
  margin: 0 10px;
  color: #fff;
  text-decoration: none;
  font-weight: 500;
}
header nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  background: url("https://images.unsplash.com/photo-1581091012184-5c4d6c1c0e19?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80") no-repeat center center/cover;
  color: white;
  text-align: center;
  padding: 100px 20px;
}
.hero h1 {
  font-size: 40px;
  margin-bottom: 10px;
  text-shadow: 2px 2px 6px rgba(0,0,0,0.6);
}
.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}
.btn-primary {
  background: #28a745;
  color: white;
  padding: 12px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
}
.btn-primary:hover {
  background: #218838;
}

/* Form Section */
.form-section {
  background: #f8f9fa;
  padding: 50px 20px;
  text-align: center;
}
.form-section h2 {
  margin-bottom: 20px;
}
form {
  background: #fff;
  max-width: 500px;
  margin: auto;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  text-align: left;
}
form label {
  display: block;
  margin: 10px 0 5px;
}
form input, form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}
form textarea {
  resize: none;
  height: 80px;
}
.btn-secondary {
  background: #0077b6;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 6px;
  margin-bottom: 15px;
  cursor: pointer;
}
.btn-secondary:hover {
  background: #005f86;
}

/* Footer */
footer {
  background: #0077b6;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
}
