body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  background: #fdfdfd;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.logo {
  font-size: 1.5rem;
  font-weight: bold;
  color: #006d77;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  background: #fff;
}

.hero-text {
  flex: 1;
  padding-right: 2rem;
}

.hero-text h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.hero-text p {
  margin-bottom: 1rem;
}

.cta-button {
  background: #ff6f00;
  color: #fff;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 5px;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.search-bar {
  display: flex;
  justify-content: center;
  padding: 1rem;
  background: #f0f0f0;
}

.search-bar input {
  padding: 0.5rem;
  width: 300px;
  border: 1px solid #ccc;
  border-radius: 4px 0 0 4px;
}

.search-bar button {
  padding: 0.5rem 1rem;
  background: #006d77;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
}

.resources {
  padding: 2rem;
  background: #fff;
}

.resource-grid {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.resource-item {
  flex: 1;
  background: #f9f9f9;
  padding: 1rem;
  border-radius: 6px;
}

.blog {
  padding: 2rem;
  background: #f0f0f0;
}

.blog-grid {
  display: flex;
  gap: 2rem;
  margin-top: 1rem;
}

.blog-post {
  flex: 1;
  background: #fff;
  padding: 1rem;
  border-radius: 6px;
}

.blog-post img {
  width: 100%;
  border-radius: 6px;
}

footer {
  text-align: center;
  padding: 1rem;
  background: #fff;
  border-top: 1px solid #eee;
}
