:root{
  --bg:#eef3f7;
  --panel:#f5f8fb;
  --white:#ffffff;
  --text:#1f2937;
  --muted:#6b7280;
  --line:#d7e1ea;
  --green:#2f8f7a;
  --orange:#f59e0b;
  --blue:#0b5ed7;
  --max: 980px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
}
a{color: var(--blue); text-decoration:none}
a:hover{text-decoration:underline}

.container{max-width:var(--max); margin:0 auto; padding: 14px}

/* Header */
.header{
  background: var(--white);
  border-bottom:1px solid var(--line);
}
.nav{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:10px;
}
.brand img{width:56px; height:56px; object-fit:contain}
.brand .brandtext{
  font-weight:900;
  color:#0f766e;
  line-height:1.05;
}
.brand .brandtext small{
  display:block;
  font-weight:900;
  color:#0f766e;
}

.menu{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}
.menu a{
  color:#111827;
  font-weight:800;
  padding:10px 0;
}
.menu a.active{
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 10px;
}
.menu .join{
  background: var(--orange);
  color:#111827;
  padding:8px 12px;
  border-radius:8px;
  font-weight:900;
}
.menu .join:hover{filter:brightness(.96); text-decoration:none}

/* Main panel */
.panel{
  background: var(--panel);
  border:1px solid var(--line);
  border-radius: 12px;
  padding: 26px 16px;
  text-align:center;
}

/* Titles */
.h1{
  font-size:30px;
  font-weight:900;
  margin: 4px 0 14px;
}
.p{
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  line-height:1.8;
}

/* Button like your screenshot (green + red dashed border) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  min-width: 260px;
  padding: 12px 16px;
  border-radius: 6px;
  font-weight:900;
  border: 2px dashed #c94b4b;
  background: var(--green);
  color:#fff;
  margin: 12px auto 16px;
}
.btn:hover{filter:brightness(.97); text-decoration:none}

/* Images area */
.img{
  display:flex;
  justify-content:center;
  margin: 12px 0 18px;
}
.img img{
  width: 520px;
  max-width: 100%;
  border-radius: 10px;
}

/* Green section bar */
.bar{
  margin: 18px 0 12px;
  background: var(--green);
  color:#fff;
  font-weight:900;
  padding: 10px 12px;
  border-radius: 6px;
  text-align:center;
}

/* White content block */
.block{
  background: var(--white);
  border:1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  text-align:left;
  margin: 12px 0;
}
.block h3{
  margin:0 0 10px;
  font-size:18px;
}
.list{margin:0; padding-left:18px; line-height:1.85}

/* Contact form (same simple style) */
.form label{display:block; font-weight:900; margin: 10px 0 6px}
.form input, .form textarea{
  width:100%;
  padding: 12px;
  border:1px solid var(--line);
  border-radius: 4px;
  font-size:15px;
  background:#fff;
}
.form textarea{min-height:140px}
.submit{
  background:#2563eb;
  color:#fff;
  border:none;
  padding: 12px 16px;
  border-radius: 4px;
  font-weight:900;
  margin-top: 10px;
  cursor:pointer;
}
.submit:hover{filter:brightness(.97)}

/* Footer */
.footer{
  text-align:center;
  color:#64748b;
  padding: 20px 0 8px;
}