/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Layout */
body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #1aecf0;
  color: #2f2f2f;
  line-height: 1.6;
}

/* Header and Navigation */
header {
  background-color: #264653;
  padding: 20px 0;
}

nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 24px;
}

nav ul li a {
  color: #e6f5f2;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

nav ul li a:hover {
  color: #f76c5e;
}

/* Hero Section */
.hero {
  background-color: #2a9d8f;
  padding: 60px 0;
  text-align: center;
  color: #fff;
}

.hero h1 {
  font-size: 48px;
  font-weight: bold;
}

.hero p {
  font-size: 24px;
}

/* Section Styles */
section {
  padding: 40px 10%;
  margin-bottom: 40px;
  background-color: #e6f5f2;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

h1, h2, h3 {
  color: #264653;
  margin-bottom: 20px;
}

/* Footer */
footer {
  background-color: #1d3557;
  color: #fff;
  padding: 20px;
  text-align: center;
}

footer a {
  color: #f76c5e;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}

/* Form Styling */
form {
  display: grid;
  gap: 15px;
  max-width: 600px;
  margin: 0 auto;
}

input, textarea {
  padding: 10px;
  font-size: 16px;
  border: 2px solid #2a9d8f;
  border-radius: 6px;
  transition: border-color 0.3s ease;
}

input:focus, textarea:focus {
  border-color: #f76c5e;
  outline: none;
}

button {
  padding: 14px;
  background-color: #264653;
  border: none;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  border-radius: 6px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #1d3557;
}