body { font-family: Arial, sans-serif; background: #f8f8f8; margin: 0; }
header, footer { background: #006d3c; color: #fff; padding: 1em; text-align: center; }
.container { max-width: 900px; margin: 2em auto; background: #fff; padding: 2em; border-radius: 8px; }
.card { border: 1px solid #eee; border-radius: 8px; padding: 1em; margin-bottom: 1em; display: flex; }
.card img { width: 120px; height: 120px; object-fit: cover; border-radius: 8px; margin-right: 1em; }
.btn { background: #006d3c; color: #fff; padding: 0.5em 1em; border: none; border-radius: 4px; cursor: pointer; text-decoration: none; }
.btn-danger { background: #c0392b; }
input, textarea { width: 100%; padding: 0.5em; margin-bottom: 1em; border-radius: 4px; border: 1px solid #ccc; }
table { border-collapse: collapse; width: 100%; margin-top: 1em; }
th, td { padding: 0.5em; border: 1px solid #eee; text-align: left; }
a { color: #006d3c; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Header modern */
.main-header {
  background: #fff;
  color: #006d3c;
  padding: 0.5em 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.logo-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2em;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.5em;
}
.logo img {
  background: #fff;
  border-radius: 12px;
  border: 2px solid #006d3c;
}
.logo-text {
  font-size: 1.3em;
  font-weight: bold;
  color: #006d3c;
}
.nav-menu ul {
  list-style: none;
  display: flex;
  gap: 2em;
  margin: 0;
  padding: 0;
}
.nav-menu a {
  color: #006d3c;
  font-weight: 500;
  font-size: 1.1em;
  transition: color 0.2s;
}
.nav-menu a.active, .nav-menu a:hover {
  font-weight: bold;
  color: #009e60;
}

/* Hero Section */
.hero {
  position: relative;
  background: #8fd1c3;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  right: -20vw;
  top: -10vw;
  width: 80vw;
  height: 90vw;
  background: #6dc1ad;
  border-radius: 50% 50% 0 0 / 60% 60% 0 0;
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3em;
  max-width: 1100px;
  width: 100%;
  justify-content: center;
}
.hero-image {
  background: #009e60;
  border-radius: 50%;
  padding: 1.2em;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  position: relative;
  width: 270px;
  height: 270px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image img {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  border: 6px solid #fff;
}
.hero-text h1 {
  font-size: 2.7em;
  font-weight: bold;
  color: #006d3c;
  background: #fff;
  border-radius: 18px;
  padding: 0.5em 1em;
  margin-bottom: 1.2em;
  line-height: 1.15;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.btn-hero {
  display: inline-block;
  background: #009e60;
  color: #fff;
  font-size: 1.4em;
  font-weight: bold;
  padding: 0.5em 2.2em;
  border-radius: 12px;
  text-decoration: none;
  margin-top: 1em;
  transition: background 0.2s;
}
.btn-hero:hover {
  background: #006d3c;
}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    gap: 1.5em;
    text-align: center;
  }
  .logo-nav {
    flex-direction: column;
    gap: 0.7em;
  }
}

.field-label {
  background: #5a5a5a;
  color: #fff;
  font-weight: bold;
  border-radius: 12px;
  padding: 0.5em 1.2em;
  margin-bottom: 0.3em;
  display: inline-block;
  font-size: 1.2em;
}
.field-value {
  margin-bottom: 1.2em;
  font-size: 1.1em;
  color: #eaeaea;
}
.field-large {
  min-height: 80px;
  padding-bottom: 1.5em;
} 