:root {
  --green-900: #0f4d3f;
  --green-700: #1f7a5b;
  --green-500: #2fad75;
  --green-100: #e7f6ee;
  --text-900: #0f172a;
  --text-700: #334155;
  --text-500: #64748b;
  --bg-50: #ffffff;
  --accent: #f3fce9;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji", "Segoe UI Emoji";
  color: var(--text-900);
  background: var(--bg-50);
  line-height: 1.6;
}

.container { width: 100%; max-width: 1100px; margin: 0 auto; padding: 20px 1em 40px 1em; }
.container p{
  margin:20px 0;
}

header { border-bottom: 1px solid #e5e7eb; background: linear-gradient(0deg, #ffffff 0%, #f8fff6 100%); }

.topbar { display: flex; justify-content: space-between; align-items: center; padding: 18px 1em; }

.brand { display: flex; align-items: center; gap: 14px; }

.brand__logo { width: 40px; height: 40px; border-radius: 50%; background: var(--green-500); display: inline-flex; align-items: center; justify-content: center; color: white; font-weight: 700; }

.brand__avatar { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid #eaf9f1; box-shadow: 0 2px 8px rgba(31, 122, 91, 0.15); }

.brand__title { font-size: 1.4rem; font-weight: 700; color: var(--green-900); text-decoration: none; }
.brand__title:hover { opacity: 0.8; }

nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 18px; }
nav a { text-decoration: none; color: var(--text-700); font-weight: 600; }
nav a:hover { color: var(--green-700); }

.hero { background: linear-gradient(180deg, var(--accent), #ffffff); border-bottom: 1px solid #e5e7eb;}
.hero__inner { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 24px; padding: 36px 1em 28px 1em; align-items: center; }
.hero h1 { margin: 0 0 10px 0; font-size: 2rem; color: var(--green-900); }
.hero p { margin: 0; color: var(--text-700); }
.hero__image { width: 220px; height: 220px; border-radius: 50%; overflow: hidden; border: 6px solid #eaf9f1; box-shadow: 0 8px 24px rgba(31, 122, 91, 0.15); justify-self: end; }

.btn { display: inline-block; padding: 10px 16px; border-radius: 10px; background: var(--green-700); color: white; text-decoration: none; font-weight: 700; box-shadow: 0 6px 14px rgba(31, 122, 91, 0.22); }
.btn:hover { background: var(--green-900); }

.grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px;  padding-top: 30px;}
.card { border: 1px solid #e5e7eb; border-radius: 14px; padding: 16px; background: white; transition: transform 160ms ease, box-shadow 160ms ease; display: block; text-decoration: none; color: var(--text-900); }
.card:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,0,0,0.06); }
.card h3 { margin-top: 8px; margin-bottom: 8px; color: var(--text-900); }
.card p { color: var(--text-700); }
.badge { display: inline-block; padding: 4px 10px; border-radius: 999px; background: var(--green-100); color: var(--green-900); font-weight: 700; font-size: 12px; }

footer { margin-top: 40px;  border-top: 1px solid #e5e7eb; background: #f8fff6; }
.footer__inner { padding: 22px 1em 10px 1em;color: var(--text-500); }
.footer__links { font-size:14px; display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }
.footer__links a { text-decoration: none; color: var(--text-500); }
.footer__links a:hover {text-decoration: underline; color: var(--green-700); }
.footer__disclaimer { font-size: 13px; color: var(--text-500); line-height: 1.5; }

main { padding: 24px 0; }

input, textarea { width: 100%; padding: 10px 12px; border: 1px solid #d1d5db; border-radius: 10px; font: inherit; }
label { font-weight: 600; color: var(--text-700); }
form .row { display: grid; gap: 12px; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { justify-self: start; }
  .grid { grid-template-columns: 1fr; }
  .footer__inner{
    padding:20px;
  }
  
}
