:root{
  --green:#0f7a52;
  --orange:#ff7a3d;
  --text:#1f2937;
  --muted:#6b7280;
  --bg:#f6f8fb;
  --card:#ffffff;
  --border:#e5e7eb;
}
*{box-sizing:border-box}
body{margin:0;font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;color:var(--text);background:var(--bg)}
.container{width:min(1100px,92%);margin:0 auto}
header{background:#fff;border-bottom:1px solid var(--border)}
header .container{display:flex;align-items:center;justify-content:flex-start;padding:16px 0}
.logo img{height:44px;width:auto;display:block}

.offers-section{padding:26px 0 40px}
.container_offers h1{margin:0 0 18px;font-size:28px;line-height:1.2;text-align:center}
.offers{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px}
@media (max-width: 900px){.offers{grid-template-columns:repeat(2,minmax(0,1fr));}}
@media (max-width: 640px){.offers{grid-template-columns:repeat(2,1fr);}}

.offer{background:var(--card);border:1px solid var(--border);border-radius:16px;padding:14px;box-shadow:0 6px 18px rgba(16,24,40,.06)}
.offer-header{display:flex;flex-direction:column;align-items:flex-start;gap:8px}
.offer-header_logo{
  width:140px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  background:transparent;
  border:none;
  padding:0;
  overflow:hidden;
  flex:0 0 auto;
}

.offer-header_logo img{
  height:100%;
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}
.offer-header_title{font-weight:800;font-size:16px}
.offer-header_subtitle{color:var(--muted);font-size:13px;margin-top:2px}

.offer-badge{display:inline-block;margin:10px 0 12px;padding:7px 10px;border-radius:999px;font-size:12px;font-weight:700;background:rgba(15,122,82,.08);color:var(--green)}
.offer-button a{display:block;text-align:center;text-decoration:none;font-weight:800;padding:12px 14px;border-radius:12px;background:linear-gradient(135deg,var(--orange),#ff9a6e);color:#fff}
.offer-button a:hover{filter:brightness(.98)}

footer{background:#fff;border-top:1px solid var(--border)}
.footer-container{padding:22px 0}
.footer-columns{display:grid;grid-template-columns:1fr 1fr;gap:16px;margin-top:14px}
@media (max-width: 800px){.footer-columns{grid-template-columns:1fr}}
.footer-row{font-size:12px;line-height:1.5;color:#4b5563;margin:10px 0}

@media (max-width: 480px){
  .offer-header_logo{width:120px;height:40px}
}
