.mainNav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100px;
  background:var(--nav-bg);
  box-shadow:0 8px 16px rgba(0,0,0,0.3);
  z-index:1000;
  padding:0 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  box-sizing:border-box;
}

.nav-logo{
  display:flex;
  align-items:center;
  height:100%;
}

.nav-logo img{
  height:80px;
  width:80px;
  border-radius:50%;
  object-fit:cover;
  display:block;
  box-shadow:0 4px 6px rgba(0,0,0,0.2);
}

.nav-toggle-checkbox{
  display:none;
}

.nav-toggle-label{
  display:flex;
  align-items:center;
  justify-content:center;
}

.material-icons{
  font-size:42px;
  color:var(--nav-text);
}

.nav-menu{
  position:absolute;
  top:100%;
  left:0;
  width:100%;
  background:var(--nav-bg);
  list-style:none;
  margin:0;
  padding:0;
  display:none;
  flex-direction:column;
  box-sizing:border-box;
}

.nav-menu li{
  width:100%;
}

.nav-menu a{
  color:var(--nav-text);
  text-decoration:none;
  font-size:20px;
  font-weight:700;
  padding:16px 20px;
  width:100%;
  display:block;
  box-sizing:border-box;
}

.nav-menu a:hover{
  background:var(--nav-accent);
  color:#1d1d1d;
}

.nav-toggle-checkbox:checked ~ .nav-menu{
  display:flex;
}

.heroSection{
  margin-top:100px;
  margin-bottom:140px;
  padding:40px 20px;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:30px;
  box-sizing:border-box;
}

.heroLeft h1{
  font-size:34px;
  line-height:1.2;
  color:#111;
  font-weight:800;
}

.heroLeft p{
  font-size:16px;
  line-height:1.55;
  color:#333;
}

.heroCTA{
  padding:14px 24px;
  background:var(--nav-accent);
  color:#000;
  border-radius:8px;
  font-size:18px;
  font-weight:700;
  text-decoration:none;
  display:inline-block;
}

.heroRight{
  display:flex;
  justify-content:center;
  width:100%;
}

.heroIconTile{
  background:#ffffff;
  padding:30px;
  border-radius:18px;
  box-shadow:0 12px 24px rgba(0,0,0,0.15);
}

.heroIcon{
  font-size:160px !important;
  color:#d32f2f;
  line-height:1;
}

.siteFooter{
  position:static;
  width:100%;
  background:var(--nav-bg);
  color:var(--nav-text);
  padding:20px 10px 25px;
  text-align:center;
  box-sizing:border-box;
  border-top:1px solid rgba(255,255,255,0.1);
  margin-top:40px;
}

.footer-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  justify-items:center;
  gap:12px 20px;
  margin-bottom:15px;
}

.footer-links a{
  color:var(--nav-text);
  font-size:15px;
  text-decoration:none;
  font-weight:500;
  padding-bottom:3px;
}

.footer-bottom{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:5px;
  font-size:14px;
  font-weight:700;
  color:var(--nav-accent);
  flex-wrap:wrap;
}

.footer-divider{
  color:var(--nav-accent);
}

.copyright-icon{
  font-size:16px;
  color:var(--nav-accent);
}

.errorPage{
  width:100%;
  min-height:calc(100vh - 150px);
  display:flex;
  justify-content:center;
  align-items:center;
  padding:40px 20px;
  box-sizing:border-box;
}

.errorCard{
  background:#fff;
  padding:30px 20px;
  border-radius:8px;
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
  text-align:center;
  width:100%;
  max-width:340px;
}

.errorCard h1{
  font-size:48px;
  margin:10px 0 5px;
  color:var(--nav-accent);
  font-weight:800;
}

.errorCard p{
  font-size:15px;
  color:#333;
  margin-bottom:25px;
}

.errorIcon{
  font-size:42px;
  color:var(--nav-accent);
}

.errorReturn{
  display:inline-block;
  padding:10px 20px;
  font-size:15px;
  font-weight:600;
  text-decoration:none;
  color:var(--nav-bg);
  background:var(--nav-accent);
  border-radius:6px;
}

.supportPage{
  margin-top:120px;
  margin-bottom:40px;
  padding:30px 16px;
  display:flex;
  justify-content:center;
  box-sizing:border-box;
}

.supportContainer{
  width:100%;
  text-align:center;
}

.supportContainer h1{
  font-size:32px;
  font-weight:800;
  margin-bottom:18px;
  color:#111;
}

.supportIntro{
  font-size:16px;
  line-height:1.5;
  margin-bottom:25px;
  color:#333;
}

.supportBox{
  background:#ffffff;
  padding:28px 22px;
  border-radius:16px;
  box-shadow:0 10px 24px rgba(0,0,0,0.12);
}

.supportIcon{
  font-size:60px !important;
  color:var(--nav-accent);
  margin-bottom:10px;
}

.supportLabel{
  font-size:18px;
  font-weight:700;
  margin-bottom:6px;
}

.supportEmail{
  font-size:18px;
  font-weight:600;
  color:var(--nav-bg);
  background:var(--nav-accent);
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  display:inline-block;
  margin-bottom:12px;
}

.supportEmail:hover{
  opacity:.85;
}

.supportNote{
  font-size:14px;
  color:#555;
}
