:root{
  --green-dark:#062d21;
  --green:#0b4a35;
  --green-soft:#0f6045;
  --gold:#c8a24a;
  --gold-light:#e3c876;
  --cream:#f7f3e8;
  --text:#123b2b;
  --muted:#64746c;
  --white:#ffffff;
  --shadow:0 12px 35px rgba(0,0,0,.10);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  background:var(--cream);
  color:var(--text);
  line-height:1.6;
}

a{
  color:var(--green);
  text-decoration:none;
  font-weight:700;
}

header{
  background:linear-gradient(135deg,var(--green-dark),var(--green));
  color:var(--white);
  padding:28px 7%;
  box-shadow:var(--shadow);
}

header h1{
  margin:0;
  font-size:28px;
  letter-spacing:.3px;
}

.page{
  padding:70px 7%;
  max-width:1200px;
  margin:auto;
}

.page h1{
  font-family:Georgia,serif;
  font-size:46px;
  line-height:1.15;
  color:var(--green-dark);
  margin:0 0 24px;
}

.page h2{
  font-size:28px;
  color:var(--green);
  margin-top:32px;
}

.card{
  background:var(--white);
  border-radius:18px;
  padding:30px;
  margin:22px 0;
  box-shadow:var(--shadow);
  border-top:5px solid var(--gold);
}

.card h2,
.card h3{
  margin-top:0;
  color:var(--green-dark);
}

ul{
  padding-left:22px;
}

li{
  margin:8px 0;
}

.btn,
button,
input[type="submit"]{
  background:var(--green);
  color:white;
  padding:13px 22px;
  border-radius:12px;
  border:0;
  font-weight:800;
  cursor:pointer;
}

input,
textarea{
  border:1px solid #d8ded9;
  border-radius:10px;
  font-size:16px;
  margin-top:6px;
}

footer{
  background:var(--green-dark);
  color:white;
  padding:32px 7%;
  margin-top:60px;
}

.back-link{
  display:inline-block;
  margin-top:25px;
  color:var(--gold);
}

@media(max-width:800px){
  header{padding:22px 5%}
  .page{padding:45px 5%}
  .page h1{font-size:34px}
  .card{padding:22px}
}

/* Professional Navigation */

.header{
  position:sticky;
  top:0;
  z-index:9999;
  backdrop-filter:blur(12px);
}

.nav a{
  position:relative;
  transition:.25s ease;
}

.nav a:hover{
  color:#c8a24a;
}

.nav a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-6px;
  width:0;
  height:2px;
  background:#c8a24a;
  transition:.25s ease;
}

.nav a:hover::after{
  width:100%;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 8px 18px rgba(0,0,0,.18);
}

.card{
  transition:.25s ease;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 40px rgba(0,0,0,.12);
}


.featured-actions{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-top:20px;
}

.featured-actions .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:240px;
  text-align:center;
  margin:0;
}

@media(max-width:700px){
  .featured-actions{
    flex-direction:column;
  }

  .featured-actions .btn{
    width:100%;
    min-width:0;
  }
}

.topbar{
  background:#062d21;
  color:white;
  padding:10px 6%;
  display:flex;
  justify-content:space-between;
  gap:14px;
  font-size:14px;
}

.topbar a{
  color:#e3c876;
  font-weight:800;
}

.site-header{
  background:linear-gradient(135deg,#062d21,#0b4a35);
  padding:28px 6%;
}

.brand{
  display:flex;
  align-items:center;
  gap:20px;
  color:white;
}

.brand img{
  width:82px;
  height:82px;
  object-fit:contain;
}

.brand h1{
  margin:0;
  color:white;
}

.brand p{
  margin:8px 0 0;
  color:white;
}

@media(max-width:700px){
  .topbar{
    flex-direction:column;
    font-size:13px;
  }

  .brand img{
    width:60px;
    height:60px;
  }

  .brand h1{
    font-size:28px;
  }

  .brand p{
    font-size:15px;
  }
}

.back-link{
display:inline-block;
margin-top:25px;
padding:12px 20px;
background:#0b513b;
color:#fff !important;
text-decoration:none;
border-radius:8px;
font-weight:700;
}

.back-link:hover{
background:#083d2c;
}
