:root{
  --green: #0f9d58;
  --green-dark: #0c7a45;
  --muted: #6b7280;
  --bg: #ffffff;
  --surface: #f7f7f7;
  --max-width: 1100px;
  --radius: 10px;
  --wrap-padding: 20px;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  background:var(--bg);
  color:#1f2937;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}

.wrap{
  width:calc(100% - (var(--wrap-padding) * 2));
  max-width:var(--max-width);
  margin:0 auto;
  padding:var(--wrap-padding);
}

.site-header{
  background:var(--green);
  color:#fff;
  padding:14px 0;
}
.site-header .wrap{display:flex;align-items:center;justify-content:space-between;gap:20px}
.logo{font-size:20px;font-weight:700}
.main-nav a{color:white;text-decoration:none;margin-left:16px;font-weight:600}
.main-nav a:hover{opacity:.9}

.hero{
  display:grid;
  grid-template-columns: 1fr 320px;
  gap:24px;
  align-items:start;
  padding:28px 0;
}
.hero-text h2{color:var(--green);font-size:28px;margin-bottom:8px}
.hero-text p{color:var(--muted);margin-bottom:12px}
.benefits{list-style:disc;margin:10px 0 0 18px;color:var(--muted)}
.summary-card{
  background:var(--surface);
  border-radius:var(--radius);
  padding:16px;
  border:1px solid #e6e9ee;
  font-size:14px;
}
.summary-card h3{margin-top:0;color:#0f9d58}
.summary-card ol{padding-left:18px;margin:8px 0;color:var(--muted)}
.summary-card .small{font-size:12px;color:var(--muted)}

.form-section{margin-top:8px;margin-bottom:28px}
.form-section h2{color:var(--green);margin-bottom:12px}

.luggage-form {
    width: 100%;
    max-width: 650px;
    margin: 40px auto;
    padding: 25px;
    background: #ffffff;
    border-left: 5px solid #2a9d47;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.luggage-form h2 {
    font-size: 26px;
    color: #2a9d47;
    margin-bottom: 5px;
}

.luggage-form p {
    font-size: 15px;
    color: #333;
    margin-bottom: 20px;
}

.luggage-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: #1d1d1d;
}

.luggage-form input,
.luggage-form select,
.luggage-form textarea {
    width: 100%;
    background: #f7fdf8;
    border: 1px solid #c8e4d0;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    transition: 0.25s ease;
}

.luggage-form input:focus,
.luggage-form select:focus,
.luggage-form textarea:focus {
    border-color: #2a9d47;
    background: #ffffff;
    box-shadow: 0 0 6px rgba(42,157,71,0.35);
    outline: none;
}

.luggage-form button {
    width: 100%;
    background: #2a9d47;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.luggage-form button:hover {
    background: #23803a;
}


.strip{
  background:var(--surface);
  padding:18px 0;
  border-radius:8px;
  margin-top:6px;
}
.info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin-top:10px;
}
.info-grid article{background:white;padding:14px;border-radius:8px;border:1px solid #eef2f7}
.info-grid h4{margin:0 0 8px 0;color:var(--green)}
.info-grid p{margin:0;color:var(--muted);font-size:14px}

.site-footer{background:var(--green);color:#fff;padding:18px 0;margin-top:30px}
.site-footer p{margin:0}

@media (max-width:980px){
  .hero{grid-template-columns:1fr; }
  .info-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:600px){
  .wrap{padding:14px}
  .info-grid{grid-template-columns:1fr}
  .main-nav{display:none}
  .hero-text h2{font-size:22px}
  fieldset{padding:12px}
  label{font-size:13px}
  input,select,textarea{font-size:14px}
  .summary-card{order:2}
}
