    :root {
      --green: #09710F;
      --green-light: #E9F7ED;
      --btn-bg: #09710F;
      --btn-hover: #075a0d;
      --radius: 22px;
      --shadow: 0 4px 32px rgba(0,0,0,0.10);
    }
    html, body { margin: 0; padding: 0; min-height: 100vh; background: #f5f5f5; font-family: Arial, sans-serif; }
    body { display: flex; flex-direction: column; min-height: 100vh; }
    .container {
      width: 100%; max-width: 580px; margin: 36px auto 0 auto;
      background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
      padding: 0 0 34px 0; display: flex; flex-direction: column; align-items: center; flex: 1 0 auto;
    }
    .logo { width: 145px; margin-top: 32px; margin-bottom: 18px; }
    .event-info {
      width: 82%; background: var(--green-light); border-radius: 16px;
      padding: 28px 28px 16px 28px; margin-bottom: 22px; margin-top: 6px;
      box-shadow: 0 2px 14px #09710f12; display: flex; flex-direction: column; gap: 10px;
    }
    .event-info-title { font-weight: 700; font-size: 1.25em; color: var(--green); margin-bottom: 7px; letter-spacing: 0.01em; }
    .event-data-row { display: flex; justify-content: space-between; font-size: 1.09em; padding: 3px 0; }
    .weather-current-main {
      margin-top: 13px; font-size: 1.15em; font-weight: bold; color: var(--green);
      display: flex; align-items: center; gap: 12px;
    }
    .weather-desc-main { font-size: 1em; color: #333; margin-bottom: -2px;}
    .weather-label { font-size: 0.96em; color: #0b380d; opacity: 0.80; margin-right: 12px; }
    .day-cards-list {
      width: 85%; display: flex; flex-direction: column; gap: 28px; margin-bottom: 30px;
    }
    .day-card {
      background: #fff;
      border-radius: 20px;
      box-shadow: 0 8px 32px rgba(9, 113, 15, 0.09);
      border: 2.2px solid #E1F3E5;
      transition: box-shadow 0.18s, border-color 0.18s, transform 0.16s;
      padding: 0;
      overflow: hidden;
      position: relative;
    }
    .day-card:hover {
      border-color: #09710F;
      box-shadow: 0 14px 40px rgba(9, 113, 15, 0.17);
      transform: translateY(-3px) scale(1.015);
    }
    .day-card-header {
      background: #E9F7ED;
      padding: 17px 26px 11px 26px;
      display: flex; justify-content: space-between; align-items: center;
      border-bottom: 1px solid #D0EEDA;
    }
    .day-date {
      font-weight: bold;
      color: #09710F;
      font-size: 1.15em;
      letter-spacing: 0.02em;
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .day-weather {
      display: flex; align-items: center; gap: 8px; font-size: 1.11em; font-weight: bold;
    }
    .day-infos {
      display: flex; flex-wrap: wrap; gap: 24px 50px; margin: 12px 0 0 0; padding: 0 26px 0 26px;
    }
    .day-info-item { font-size: 1em; color: #222; }
    .day-btn-wrap { width: 100%; display: flex; justify-content: flex-end; margin-top: 14px; padding: 0 26px 17px 0; }
    .day-btn {
      background: var(--btn-bg); color: #fff; font-weight: 600; border: none; border-radius: 13px;
      padding: 13px 32px; font-size: 1.07em; box-shadow: 0 2px 8px #09710f11; cursor: pointer; transition: background 0.18s, transform 0.11s;
      margin-right: 20px;
    }
    .day-btn:hover, .day-btn:active { background: var(--btn-hover); transform: scale(1.05);}
    .faq-back-btn {
  display: block;
  margin: 28px auto 0 auto;
  background: #f6f6f6;
  color: var(--green, #09710F);
  font-size: 1.11em;
  font-weight: 600;
  border: 2px solid var(--green, #09710F);
  border-radius: 13px;
  padding: 11px 22px 11px 14px;
  box-shadow: 0 1px 7px #09710f0c;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, border 0.18s;
  letter-spacing: 0.02em;
}
.faq-back-btn:hover, .faq-back-btn:active {
  background: var(--green, #09710F);
  color: #fff;
}
    .faq-btn {
      margin-top: 24px; background: #f6f6f6; color: var(--green); font-size: 1.17em; font-weight: 600;
      border: 2px solid var(--green); border-radius: 14px; padding: 18px 0; transition: background 0.18s, color 0.18s;
      box-shadow: 0 1px 7px #09710f0c; width: 82%; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 0.85em;
    }
    .faq-btn:hover, .faq-btn:active { background: var(--green); color: #fff;}
    .main-footer {
      width: 100vw; background: #f8f8f8; border-top: 1.5px solid #e0e0e0;
      padding: 18px 0 12px 0; font-size: 1.02em; position: fixed; left: 0; bottom: 0; z-index: 9000;
      display: flex; justify-content: center; align-items: center; flex-shrink: 0;
    }
    .footer-links { color: #888; display: flex; gap: 18px; flex-wrap: wrap;}
    .footer-links a { color: #888; text-decoration: none; transition: color 0.18s; }
    .footer-links a:hover { color: #09710F; text-decoration: underline;}
    .cookie-overlay { position: fixed; z-index: 99999; left: 0; top: 0; right: 0; bottom: 0; background: rgba(0,0,0,0.70);
      display: flex; align-items: center; justify-content: center; animation: fadeIn 0.3s;}
    @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; }}
    .cookie-box {
      background: #fff; border-radius: 24px; padding: 32px 22px 24px 22px; box-shadow: 0 2px 32px #0002;
      max-width: 96vw; width: 360px; text-align: center; display: flex; flex-direction: column; align-items: center;
    }
    .cookie-box h2 { margin-top: 0; color: var(--green); font-size: 1.27em; margin-bottom: 12px; }
    .cookie-box p { font-size: 1.07em; color: #173618; margin-bottom: 18px; line-height: 1.6;}
    .cookie-buttons { display: flex; width: 100%; gap: 20px; margin-top: 6px; justify-content: center;}
    .cookie-buttons button { flex: 1; border: none; border-radius: 13px; padding: 13px 0; font-size: 1em; font-weight: 600; cursor: pointer; transition: background 0.14s; margin: 0;}
    .cookie-accept { background: var(--green); color: #fff;}
    .cookie-accept:hover { background: var(--btn-hover);}
    .cookie-deny { background: #e0e0e0; color: #333; border: 1px solid #aaa;}
    .cookie-deny:hover { background: #d3d3d3;}
    @media (max-width: 700px) {
      .container { max-width: 99vw; }
      .event-info { padding: 18px 4vw 10px 4vw;}
      .footer-links { gap: 10px; font-size: 0.97em;}
      .main-footer { font-size: 0.97em; padding: 10px 0 8px 0;}
      .cookie-box { width: 99vw; padding: 18px 4vw 18px 4vw;}
      .day-cards-list { width: 97vw; }
      .day-card-header, .day-infos { padding-left: 3vw; padding-right: 3vw; }
      .day-btn-wrap { padding-left: 3vw; padding-right: 3vw; }
    }
    @media (max-width: 600px) {
      .day-card-header, .day-infos { padding-left: 2vw; padding-right: 2vw; }
      .day-btn-wrap { padding-left: 2vw; padding-right: 2vw; }
      .day-cards-list { width: 95vw; }
      .event-info { padding: 14px 3vw 6px 3vw;}
    }