/* ===================================================================
   CSS RESET & BASE TYPOGRAPHY (Normalize)
   =================================================================== */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  background: #fff;
  color: #3A3D4D;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
*, *:before, *:after { box-sizing: border-box; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s; }
ul, ol { margin-left: 24px; }
strong { font-weight: bold; }
input, button, textarea, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
button { cursor: pointer; }

/* ===================================================================
   FONTS (Google Fonts fallback, ensure local loading)
   =================================================================== */
@import url('https://fonts.googleapis.com/css?family=Merriweather:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700&display=swap');

h1, h2, h3, h4, .hero h1 {
  font-family: 'Merriweather', Georgia, serif;
  color: #3A3D4D;
  letter-spacing: -0.01em;
  line-height: 1.12;
}
h1   { font-size: 2.4rem; font-weight: 900; margin-bottom: 16px; }
h2   { font-size: 1.7rem; font-weight: 700; margin-bottom: 14px; }
h3   { font-size: 1.25rem; font-weight: 700; margin-bottom: 10px; }
h4   { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.subheadline {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.02rem;
  color: #ADB892;
  margin-bottom: 24px;
}

p, li, td, th, input, button, a {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}

/* Artistic headings */
h1, .hero h1 {
  color: #F3EDD4;
  text-shadow: 2px 4px 8px rgba(58,61,77,0.08);
  background: #3A3D4D;
  display: inline-block;
  padding: 6px 18px 10px 0px;
  border-radius: 0 44px 44px 0;
}

h2 {
  position: relative;
  background: linear-gradient(90deg, #ADB892 0%, #F3EDD4 100%);
  color: #3A3D4D;
  border-radius: 0 22px 22px 0;
  display: inline-block;
  padding: 2px 14px 2px 0;
}
h3 {
  color: #3A3D4D;
  letter-spacing: 0.01em;
}

/* ===================================================================
   ARTISTIC COLORS & STYLE VARIABLES
   =================================================================== */
:root {
  --brand-primary: #3A3D4D;
  --brand-secondary: #ADB892;
  --brand-accent: #F3EDD4;
  --brand-accent2: #ffcb3a;
  --brand-highlight: #FF8456;
  --brand-deep: #28273F;
}

body {
  background: linear-gradient(120deg, #F3EDD4 0%, #fff 100%);
}

/* ===================================================================
   LAYOUT & CONTAINER
   =================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Section spacing - as required */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================================================
   HEADER & NAVIGATION (Desktop)
   =================================================================== */
header {
  width: 100%;
  background: #3A3D4D;
  box-shadow: 0 6px 14px rgba(58,61,77,0.08);
  position: sticky;
  top: 0;
  z-index: 101;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  padding-bottom: 10px;
}
header img {
  height: 54px;
  width: auto;
  margin-right: 24px;
  filter: drop-shadow(0 1px 3px #ADB89230);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.main-nav a {
  color: #F3EDD4;
  opacity: 0.97;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  font-size: 1.03rem;
  padding: 7px 18px;
  border-radius: 18px;
  transition: background 0.2s, color 0.2s, box-shadow 0.15s;
  position: relative;
}
.main-nav a.cta-primary, .main-nav a.active {
  background: #F3EDD4;
  color: #3A3D4D !important;
  box-shadow: 0 2px 12px 0 #ADB89233;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #ADB892;
  color: #fff;
  outline: none;
}
.main-nav a.cta-primary:hover, .main-nav a.cta-primary:focus {
  background: #ffcb3a;
  color: #28273F;
}

/* Burger - hide desktop */
.mobile-menu-toggle {
  display: none;
}

/* ===================================================================
   HERO SECTION & MAJOR CTA
   =================================================================== */
.hero {
  background: linear-gradient(90deg, #ffb966 0%, #ADB892 100%);
  border-radius: 0 0 40px 0;
  margin-bottom: 48px;
  box-shadow: 0 4px 30px #3A3D4D09;
  padding: 42px 0 24px 0;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 10px;
  padding-left: 0;
}
.hero h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  background: none;
  color: #3A3D4D;
  text-shadow: none;
  padding: 0;
  border-radius: 0;
}
.hero .subheadline {
  color: #FFF;
  font-size: 1.12rem;
  font-weight: 700;
}

/* ===================================================================
   FLEX LAYOUTS & CARD COMPONENTS
   Artistic card hover: shadow, border accent, slight scale
   =================================================================== */
.features-grid, .recipes-grid, .country-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}

.feature-card, .country-card, .recipe-card {
  background: #FFF;
  border-radius: 20px 44px 20px 20px;
  box-shadow: 0 4px 16px #3A3D4D15;
  padding: 30px 24px 22px 24px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 340px;
  transition: transform 0.18s, box-shadow 0.22s, border 0.18s;
  border: 2px solid transparent;
  position: relative;
}
.feature-card img {
  height: 54px;
  width: 54px;
  margin-bottom: 18px;
  filter: drop-shadow(0 1px 5px #ADB89280);
}

.feature-card:hover,
.country-card:hover,
.recipe-card:hover {
  box-shadow: 0 10px 32px #3A3D4D21;
  transform: translateY(-3px) scale(1.025);
  border: 2px solid var(--brand-deep);
  z-index: 2;
}

.recipe-card h3, .country-card h3, .feature-card h3 {
  font-size: 1.11rem;
  font-family: 'Merriweather', Georgia, serif;
  margin-bottom: 8px;
}
.tags {
  color: #ADB892;
  font-size: 0.98rem;
  margin-top: 4px;
  font-style: italic;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  margin-bottom: 20px;
  position: relative;
  border-radius: 22px;
  box-shadow: 0 4px 14px 0px #3A3D4D0E;
  padding: 26px 22px;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================================================================
   FILTER-BAR (Rezepte)
   =================================================================== */
.filter-bar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  margin: 18px 0 22px 0;
}
.filter-bar button {
  background: #ADB892;
  color: #fff;
  padding: 6px 18px;
  border-radius: 18px;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
  font-weight: 700;
  border: 0;
  font-size: 1rem;
  margin-bottom: 6px;
}
.filter-bar button:hover,
.filter-bar button:focus {
  background: #FF8456;
  color: #fff;
  box-shadow: 0 4px 12px #FF845633;
  outline: none;
}
.filter-bar span {
  font-family: 'Merriweather', Georgia, serif;
  color: #3A3D4D;
  font-weight: 700;
}
input[type="text"] {
  display: block;
  width: 100%;
  max-width: 350px;
  padding: 9px 16px;
  border-radius: 16px;
  border: 1.5px solid #ADB892;
  margin-bottom: 12px;
  font-size: 1.06rem;
  outline: none;
}
input[type="text"]:focus {
  border-color: #FF8456;
  box-shadow: 0 2px 6px #FF845640;
}

/* ===================================================================
   CTA BLOCK (bottom call2action section)
   =================================================================== */
.cta-block {
  background: #ffcb3a;
  border-radius: 20px 44px 0 0;
  text-align: center;
  box-shadow: 0 -3px 20px #3A3D4D08;
  padding: 32px 0 48px 0;
  margin-bottom: 0;
}
.cta-block h2 {
  background: none;
  color: #28273F;
  font-size: 1.37rem;
  margin-bottom: 14px;
}

/* ===================================================================
   BUTTONS & INTERACTIVES
   =================================================================== */
a.cta-primary, .cta-primary, button.cta-primary {
  background: var(--brand-primary);
  color: #fff;
  border-radius: 22px 44px 22px 22px;
  padding: 10px 28px;
  font-family: 'Merriweather', Georgia, serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: 0;
  outline: none;
  box-shadow: 0 2px 14px 0 #ADB89233;
  transition: background 0.2s, color 0.15s, box-shadow 0.13s, transform 0.13s;
  margin-top: 16px;
  display: inline-block;
}
a.cta-primary:hover, .cta-primary:hover, .cta-primary:focus, button.cta-primary:hover {
  background: var(--brand-highlight);
  color: #fff;
  transform: translateY(-2px) scale(1.035);
  box-shadow: 0 4px 20px #FF845650;
}
a.cta-primary.active {
  background: var(--brand-accent2);
  color: #28273F;
  pointer-events: none;
}

/* ===================================================================
   TABLE (Workshops)
   =================================================================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0 20px 0;
  background: #fff;
  box-shadow: 0 2px 10px #ADB89210;
  border-radius: 18px;
  overflow: hidden;
}
thead tr {
  background: #ADB892;
  color: #fff;
  font-weight: 700;
}
th, td {
  padding: 14px 13px;
  text-align: left;
  font-size: 1rem;
}
tbody tr:nth-child(even) {
  background: #F3EDD4;
}
tbody tr:hover {
  background: #ffcb3a44;
}

/* ===================================================================
   TESTIMONIALS (Review sections)
   =================================================================== */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  border-radius: 18px 32px 18px 18px;
  background: #fff;
  color: #3A3D4D;
  box-shadow: 0 3px 22px #ADB89222;
  margin-bottom: 20px;
  border-left: 6px solid #ffcb3a;
}
.testimonial-card p {
  flex: 2 2 60%;
  font-size: 1.045rem;
  font-family: 'Merriweather', Georgia, serif;
  color: #3A3D4D;
  margin-bottom: 0;
}
.testimonial-card span {
  flex: 1 1 auto;
  font-size: 0.97rem;
  color: #3A3D4D;
  opacity: 0.85;
  text-align: right;
  font-style: italic;
  font-family: 'Roboto', Arial, sans-serif;
}

/* ===================================================================
   SECTION, TEXT SECTION, ABOUT & USP
   =================================================================== */
.section, section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section {
  margin-bottom: 24px;
  color: #3A3D4D;
  font-size: 1.01rem;
  max-width: 900px;
  line-height: 1.8;
}
.about-section h1 {
  font-size: 2rem;
}
.usp-section ul {
  margin-top: 12px;
  margin-bottom: 28px;
}
.usp-section ul li {
  margin-bottom: 9px;
  font-size: 1.02rem;
  position: relative;
  padding-left: 22px;
}
.usp-section ul li::before {
  content: '★';
  color: #ADB892;
  position: absolute;
  left: 0;
  top: 0;
}

/* ===================================================================
   CONTACT, CONFIRMATION, SPECIAL BLOCKS
   =================================================================== */
.contact-section, .confirmation-section {
  background: #F3EDD488;
  border-radius: 0 0 34px 34px;
  margin-top: 22px;
  padding: 44px 20px 20px 20px;
}
.contact-section ul {
  margin: 10px 0 18px 24px;
}
.confirmation-section a.cta-primary {
  margin-top: 24px;
}

/* ===================================================================
   FOOTER
   =================================================================== */
footer {
  background: #3A3D4D;
  color: #F3EDD4;
  border-radius: 40px 0 0 0;
  padding: 42px 0 22px 0;
  box-shadow: 0 -2px 24px #3A3D4D15;
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}
footer nav {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
footer nav a {
  color: #F3EDD4;
  opacity: 0.86;
  transition: color 0.16s, opacity 0.14s;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 0.99rem;
}
footer nav a:hover, footer nav a:focus {
  color: #ffcb3a;
  opacity: 1;
  outline: none;
}
footer .text-section p {
  margin-bottom: 5px;
  color: #ffcb3a;
  font-size: 0.97rem;
}

/* ===================================================================
   MOBILE MENU (Burger Navigation)
   =================================================================== */
.mobile-menu-toggle {
  display: none;
  background: #FDB85A;
  color: #3A3D4D;
  font-size: 2rem;
  border-radius: 10px;
  width: 46px;
  height: 46px;
  justify-content: center;
  align-items: center;
  border: none;
  margin-left: 20px;
  transition: background 0.14s, color 0.13s;
  z-index: 314;
}
.mobile-menu-toggle:hover {
  background: #ffcb3a;
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #3A3D4DE6;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.55,1.4,.5,1);
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 0 0 0 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: #F3EDD4;
  color: #3A3D4D;
  font-size: 2.3rem;
  border: none;
  border-radius: 16px;
  position: absolute;
  right: 28px;
  top: 22px;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10101;
  box-shadow: 0 1px 10px #ADB89222;
  transition: background 0.13s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #ffcb3a;
  color: #28273F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 86px;
  padding: 40px 32px 32px 32px;
}
.mobile-nav a {
  color: #F3EDD4;
  background: none;
  padding: 12px 0;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  border-radius: 0;
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  border-bottom: 2px solid #ADB89252;
  transition: color 0.15s, background 0.15s;
  margin-bottom: 0;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #ADB892;
  color: #fff;
  outline: none;
}

/* ===================================================================
   COOKIE CONSENT BANNER & MODAL
   =================================================================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: #fffbea;
  color: #3A3D4D;
  border-top: 4px solid #ffcb3a;
  box-shadow: 0 -4px 24px #3A3D4D15;
  z-index: 99999;
  padding: 26px 16px 24px 16px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: center;
  font-size: 1.08rem;
  animation: cookiebannerfadein 0.9s cubic-bezier(.342,.92,.48,1);
}
@keyframes cookiebannerfadein {
  from { opacity:0; transform: translateY(80px); }
  to   { opacity:1; transform: translateY(0);   }
}
.cookie-banner__text {
  flex: 2 1 300px;
}
.cookie-banner__actions {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  background: #ADB892;
  color: #fff;
  padding: 8px 22px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  transition: background 0.15s, color 0.12s, box-shadow 0.13s;
}
.cookie-btn.accept {
  background: #3A3D4D;
  color: #fff;
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: #FF8456;
  color: #fff;
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: #ffcb3a;
  color: #28273F;
}
.cookie-btn.settings {
  background: #F3EDD4;
  color: #28273F;
  border: 1px solid #ADB892;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #ADB892;
  color: #fff;
}

.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(42,40,64,0.84);
  z-index: 100001;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  opacity: 1;
  animation: fadein .36s ease-out;
}
@keyframes fadein {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-dialog {
  background: #FFF;
  border-radius: 30px 12px 30px 30px;
  max-width: 390px;
  padding: 36px 28px 32px 28px;
  box-shadow: 0 8px 44px #28273F23;
  color: #3A3D4D;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.cookie-modal h2 {
  color: #3A3D4D;
  font-size: 1.15rem;
  margin-bottom: 10px;
  background: none;
}
.cookie-modal-close {
  position: absolute;
  right: 18px; top: 16px;
  background: #F3EDD4;
  color: #3A3D4D;
  font-size: 1.8rem;
  border: none;
  border-radius: 13px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.13s;
}
.cookie-modal-close:hover {
  background: #FF8456;
  color: #fff;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F3EDD4;
  border-radius: 8px;
  padding: 10px 16px;
  margin-bottom: 10px;
  font-size: 1.01rem;
}
.cookie-category[aria-disabled="true"] {
  opacity: 0.66;
}
.cookie-category-toggle {
  width: 34px;
  height: 20px;
  border-radius: 11px;
  background: #ADB892;
  position: relative;
  outline: none;
}
.cookie-category-toggle input {
  opacity: 0;
  width: 0; height: 0;
}
.cookie-category-toggle .slider {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.16s;
}
.cookie-category-toggle input:checked ~ .slider {
  left: 16px;
  background: #FF8456;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  justify-content: flex-end;
}

/* ===================================================================
   RESPONSIVE DESIGN (Mobile-first)
   =================================================================== */
@media (max-width: 900px) {
  .features-grid, .recipes-grid, .country-grid, .content-grid {
    gap: 16px;
  }
  .feature-card, .recipe-card, .country-card {
    min-width: 170px;
    max-width: 100%;
    flex: 1 1 100%;
    padding: 22px 12px;
  }
  header .container {
    flex-direction: row;
    gap: 8px;
  }
  .main-nav {
    gap: 8px;
  }
  .section, section {
    padding: 30px 6px;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 7px;
  }
  .content-wrapper {
    gap: 10px;
  }
  .features-grid, .recipes-grid, .country-grid {
    flex-direction: column;
    gap: 20px;
  }
  .feature-card, .recipe-card, .country-card {
    max-width: 100%;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  footer .content-wrapper {
    flex-direction: column;
    gap: 18px;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 10px;
    text-align: left;
  }
}

@media (max-width: 480px) {
  body { font-size: 0.96rem; }
  h1 { font-size: 1.32rem !important; }
  h2 { font-size: 1.05rem !important; }
  .hero { padding-top: 26px !important; }
  .testimonial-card { padding: 18px; }
  .cookie-banner { font-size: 0.98rem; padding: 16px 4px 18px 4px; }
  .cta-block { padding: 24px 0 28px 0; }
}

/* ===================================================================
   MISC: SCROLLBARS, HIGHLIGHTS, FOCUS
   =================================================================== */
::-webkit-scrollbar { width: 8px; background: #fff; }
::-webkit-scrollbar-thumb { background: #F3EDD4; border-radius: 6px; }
a:focus, button:focus, input:focus, .cta-primary:focus { outline: 2px solid #ffcb3aCC; outline-offset: 2px; }

/* ===================================================================
   MICRO-ANIMATIONS AND ARTISTIC ACCENTS
   =================================================================== */
.feature-card::after, .country-card::after, .recipe-card::after {
  content: '';
  display: block;
  position: absolute;
  top: 14px; right: 14px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #ffcb3a44;
  z-index: 0;
  pointer-events: none;
  animation: floatDot 4s infinite cubic-bezier(.2,.57,.3,1.1);
}
@keyframes floatDot {
  0%,100% { transform: translateY(0) scale(1); }
  40% { transform: translateY(-8px) scale(1.25); }
}
.feature-card:hover::before, .country-card:hover::before {
  content: '';
  position: absolute;
  left: 6px; top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: #FF8456;
  z-index: 1;
  opacity: 0.7;
  animation: popDot 0.3s forwards;
}
@keyframes popDot {
  0% { transform: scale(0.5); opacity: 0; }
  70% { transform: scale(1.5); opacity: 0.85; }
  100% { transform: scale(1.0); opacity: 0.7; }
}

/* ===================================================================
   PRINT STYLES (Hide nav/menu/banners)
   =================================================================== */
@media print {
  header, .main-nav, .mobile-menu, .cookie-banner, .cookie-modal, footer { display: none !important; }
  .container { max-width: 100%; padding: 0; }
}

/* END CSS */
