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

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

.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,
.nav-toggle-label{
  display:none;
}

.nav-menu{
  display:flex;
  align-items:center;
  gap:3rem;
  margin:0;
  padding:0;
  list-style:none;
  height:100%;
}

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

.nav-menu a{
  display:flex;
  align-items:center;
  height:100%;
  padding:0 8px;
  text-decoration:none;
  color:var(--nav-text);
  font-weight:700;
  font-size:18px;
  letter-spacing:.01em;
  position:relative;
  transition:color .2s;
}

.nav-menu a:hover{
  color:var(--nav-accent);
}

.nav-menu a:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:3px;
  background:var(--nav-accent);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .2s;
}

.nav-menu a:hover:after{
  transform:scaleX(1);
}

.nav-logo img:hover{
  animation:rock .4s ease-in-out 1;
}

.heroSection{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:60px;
  padding:120px 8% 80px;
  box-sizing:border-box;
  background:#f3f2ef;
  min-height:calc(100vh - 100px);
}

.heroLeft{
  flex:1;
  max-width:600px;
}

.heroLeft h1{
  font-size:54px;
  line-height:1.1;
  font-weight:800;
  margin-bottom:20px;
  color:#111;
}

.heroLeft p{
  font-size:20px;
  line-height:1.55;
  margin-bottom:35px;
  color:#333;
}

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

.heroRight{
  flex:1;
  display:flex;
  justify-content:center;
  align-items:center;
}

.heroIconTile{
  background:#ffffff;
  padding:60px;
  border-radius:22px;
  box-shadow:0 25px 50px rgba(0,0,0,0.15);
}

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

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

.footer-links{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:40px;
  margin-bottom:20px;
}

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

.footer-links a:after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:var(--nav-accent);
  transform:scaleX(0);
  transform-origin:center;
  transition:transform .2s;
}

.footer-links a:hover:after{
  transform:scaleX(1);
}

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

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

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

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

.errorCard{
  background:#fff;
  padding:40px 50px;
  border-radius:10px;
  box-shadow:0 4px 16px rgba(0,0,0,0.25);
  text-align:center;
  max-width:500px;
  width:100%;
  z-index:5;
}

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

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

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

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

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

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

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

.supportIntro{
  font-size:18px;
  line-height:1.55;
  margin-bottom:35px;
  color:#333;
}

.supportBox{
  background:#ffffff;
  padding:35px 40px;
  border-radius:18px;
  box-shadow:0 12px 28px rgba(0,0,0,0.12);
}

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

.supportLabel{
  font-size:20px;
  font-weight:700;
  margin-bottom:8px;
  color:#111;
}

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

.supportEmail:hover{
  opacity:.85;
}

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