/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body and Font */
body {
  font-family: 'Arial, sans-serif';
  line-height: 1.6;
  color: #333;
  background-color: #f0f4f8;
}

/* Header */
header {
  background: #006d77;
  color: #ffddd2;
  padding: 1rem 0;
  text-align: center;
}

header h1 {
  margin-bottom: 0.5rem;
}

header nav ul {
  list-style: none;
}

header nav ul li {
  display: inline;
  margin: 0 1rem;
}

header nav ul li a {
  color: #ffddd2;
  text-decoration: none;
  font-weight: bold;
}

/* Hero Section */
.hero {
  background: url('hero-placeholder.jpg') no-repeat center center/cover;
  color: #fff;
  height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

.hero .btn {
  background: #ffddd2;
  color: #006d77;
  padding: 0.5rem 2rem;
  text-decoration: none;
  font-size: 1.2rem;
  border-radius: 5px;
}

/* Sections */
section {
  padding: 2rem 0;
  text-align: center;
}

section h2 {
  margin-bottom: 1.5rem;
  font-size: 2.5rem;
  color: #006d77;
}

section p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: #666;
}

/* Footer */
footer {
  background: #006d77;
  color: #ffddd2;
  text-align: center;
  padding: 1rem 0;
}

footer .social {
  margin: 1rem 0;
}

footer .social a {
  color: #ffddd2;
  margin: 0 0.5rem;
  text-decoration: none;
  font-size: 1.5rem;
}

/* Contact Form */
form {
  max-width: 600px;
  margin: 2rem auto;
  background: #fff;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

form .form-group {
  margin-bottom: 1rem;
}

form .form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: #006d77;
}

form .form-group input,
form .form-group textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form .form-group textarea {
  height: 150px;
}

form .btn {
  display: inline-block;
  background: #006d77;
  color: #ffddd2;
  padding: 0.7rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
}

form .btn:hover {
  background: #ffddd2;
  color: #006d77;
}
