*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

:root{
  --vs-green:#18a61a;
  --vs-green-soft:#dff6df;
  --vs-text:#0c0c0c;
  --vs-muted:#6a6a6a;
  --vs-border:#cdeccc;
  --vs-shadow: 0 6px 18px rgba(0,0,0,.12);
}

body{
  font-family: Arial, Helvetica, sans-serif;
  color: var(--vs-text);
  background:#f6f7f6;
}

/* =========================
   CONTAINER
========================= */
.vs-container{
  width:min(1180px, 92vw);
  margin: 0 auto;
  padding: 18px 0 24px;
  position:relative;
}

/* Floating Help */
.vs-help{
  position:fixed;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--vs-green);
  color:#fff;
  font-weight:900;
  padding: 16px 10px;
  border-radius: 14px;
  writing-mode: vertical-rl;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  text-decoration:none;
}

/* =========================
   TOP SECTION
========================= */
.vs-top{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items:start;
}

.vs-title{
  font-size:44px;
  line-height:1.05;
  font-weight:900;
  margin-bottom:6px;
}

.vs-sub{
  color: var(--vs-muted);
  font-size:13px;
  line-height:1.5;
  max-width:520px;
}

/* Steps */
.vs-steps{
  margin-top:20px;
  display:flex;
  gap:14px;
  background: var(--vs-green-soft);
  padding: 16px 20px;
  border-radius: 8px;
}

.vs-step{
  display:flex;
  align-items:center;
  gap:15px;
}

.vs-ico{
  width:32px;
  height:32px;
  border-radius:6px;
  background: var(--vs-green);
  color:#fff;
  display:grid;
  place-items:center;
  font-weight:900;
}

.vs-step-head{
  font-size:12px;
  font-weight:900;
  color: var(--vs-green);
}

.vs-step-sub{
  font-size:15px;
}

/* Image */
.vs-right{
  display:flex;
  justify-content:flex-end;
}

.vs-hero-img{
  width:110%;
  height:230px;
  border-radius:10px;
  object-fit:cover;
  box-shadow: var(--vs-shadow);
  margin-top:14px;
}

/* =========================
   FORM CARD
========================= */
.vs-card{
  margin-top:12px;
  background: var(--vs-green-soft);
  border-radius:12px;
  padding:16px 18px;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}

/* Grid */
.vs-grid{
  display:grid;
  gap:12px;
}

.vs-grid-4{
  grid-template-columns: repeat(4, 1fr);
}

.vs-grid-3{
  margin-top:12px;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap:18px;
}

/* Fields */
.vs-field label{
  display:block;
  font-weight:800;
  font-size:12px;
  margin-bottom:6px;
}

.vs-field input,
.vs-field select{
  width:100%;
  height:40px;
  border:1px solid #cfcfcf;
  border-radius:6px;
  padding:0 10px;
  font-size:13px;
}

.vs-field input:focus,
.vs-field select:focus{
  border-color: var(--vs-green);
  box-shadow: 0 0 0 2px rgba(24,166,26,.15);
  outline:none;
}

/* Panels */
.vs-panel{
  background: #e9fde9;
  border:1px solid var(--vs-border);
  border-radius:10px;
  padding:20px;
}

.vs-panel-title{
  font-size:12px;
  font-weight:900;
  margin-bottom:15px;
}

/* Checkboxes */
.vs-check{
  display:flex;
  align-items:flex-start;
  gap:8px;
  font-size:12px;
  margin-bottom:10px;
}

.vs-check input{
  margin-top:3px;
  accent-color: var(--vs-green);
}

/* Radio */
.vs-row{
  display:flex;
  gap:14px;
  margin-bottom:10px;
}

.vs-radio{
  display:flex;
  gap:6px;
  font-size:12px;
}

.vs-radio input{
  accent-color: var(--vs-green);
}

/* Link */
.vs-link{
  display:inline-block;
  font-size:11px;
  color:#3b7a3b;
  text-decoration:underline;
  margin-top:4px;
}

/* Submit */
.vs-submit-wrap{
  display:flex;
  justify-content:flex-end;
  margin-top:14px;
}

.vs-btn{
  background: var(--vs-green);
  color:#fff;
  border:none;
  height:36px;
  padding:0 22px;
  font-weight:900;
  font-size:13px;
  border-radius:6px;
  cursor:pointer;
}

.vs-btn:hover{
  opacity:.9;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 980px){
  .vs-top{
    grid-template-columns:1fr;
  }

  .vs-grid-4,
  .vs-grid-3{
    grid-template-columns:1fr;
  }

  .vs-hero-img{
    height:180px;
  }

  .vs-help{
    display:none;
  }
}
/* =========================
   OVERRIDE LAYOUT WRAPPER
========================= */

.page-content {
  padding: 0 !important;
  margin: 0 !important;
  max-width: 100% !important;
}

.page-content > .vs-container {
  margin-top: 0;
}

