/*---------------------------
  CSS RESET & 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;
}
html {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  background: #E5E9F2;
  color: #132652;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
}
ul, ol {
  list-style: none;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  display: block;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
*, *::before, *::after {
  box-sizing: inherit;
}

/*-------------------------------------------
  COLOR PALETTE (BRAND: AZUROVÁ KABINA)
--------------------------------------------*/
:root {
  --primary: #234078;
  --primary-dark: #132652;
  --secondary: #E5E9F2;
  --secondary-light: #F5F8FB;
  --accent: #FBAE17;
  --danger: #e63946;
  --success: #29b67d;
  --text: #132652;
  --text-light: #FFFFFF;
  --muted: #A9BBDD;
  --card-shadow: 0 6px 28px 0 rgba(36, 48, 120, 0.12);
  --card-radius: 20px;
}

/*------------------------
  FONTS & TYPOGRAPHY
------------------------*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap');

h1, h2, h3, h4, h5 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
h1 {
  font-size: 2.7rem;
  line-height: 1.2;
}
h2 {
  font-size: 2rem;
  line-height: 1.25;
}
h3 {
  font-size: 1.3rem;
  line-height: 1.3;
}
h4 {
  font-size: 1.15rem;
}
h5, h6 {
  font-size: 1rem;
}
p, li, .subheadline {
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 1rem;
  color: var(--text);
  line-height: 1.65;
  margin-bottom: 16px;
}
.subheadline {
  color: var(--primary-dark);
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}

.legal-section h1, .legal-section h2 {
  color: var(--primary-dark);
}

/*--------------------------
  GENERAL LAYOUT CONTAINER
---------------------------*/
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
/*-----------------------------
  HEADER & NAVIGATION
------------------------------*/
header {
  background: var(--primary);
  color: var(--text-light);
  box-shadow: 0 2px 16px -4px rgba(35, 64, 120, 0.10);
  position: relative;
  z-index: 50;
}
header .container {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
header a img {
  height: 38px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: 32px;
}
.main-nav a {
  color: var(--secondary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  position: relative;
  padding: 4px 0 3px 0;
  transition: color 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--accent);
}
.cta-btn {
  background: var(--accent);
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  border-radius: 30px;
  font-size: 1.07rem;
  padding: 12px 32px 11px 32px;
  border: none;
  box-shadow: 0 2px 16px 0 rgba(251,174,23,0.14);
  margin-left: 30px;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: var(--primary-dark);
  color: #fff;
  box-shadow: 0 4px 32px 0 rgba(35,64,120,0.20);
}

/*-------------------
  MOBILE NAV
--------------------*/
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 24px;
  top: 22px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--accent);
  z-index: 2002;
  cursor: pointer;
  transition: color 0.22s;
  padding: 4px 8px;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: #fff;
}
.mobile-menu {
  display: none;
}
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--primary-dark);
  color: #fff;
  z-index: 2001;
  animation: slideInMobileMenu 0.47s cubic-bezier(0.68,-0.55,0.27,1.55) forwards;
  box-shadow: 0 0 40px 10px rgba(35,64,120,0.08);
}
@keyframes slideInMobileMenu {
  0% { transform: translateX(100%); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: translateX(0); opacity: 1; }
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 24px 24px 0;
  background: none;
  border: none;
  font-size: 2.5rem;
  color: var(--accent);
  cursor: pointer;
  transition: color 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-left: 42px;
  gap: 16px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  margin-bottom: 10px;
  padding: 7px 0 7px 6px;
  border-radius: 8px;
  transition: background 0.14s, color 0.18s;
  text-transform: uppercase;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}

/*----------------------
  HERO SECTIONS
-----------------------*/
.hero {
  background: linear-gradient(90deg, #E5E9F2 0 70%, #FBAE17 100%);
  padding: 60px 0 60px 0;
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
}
.hero .content-wrapper {
  padding: 0;
  max-width: 600px;
}
.hero h1 {
  font-size: 2.5rem;
  color: var(--primary-dark);
}
.hero .subheadline {
  color: var(--primary);
  font-size: 1.18rem;
  font-weight: 600;
}
.hero .cta-btn {
  margin-top: 19px;
}

/*-------------------
  GENERAL SECTIONS
--------------------*/
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.content-wrapper {
  max-width: 860px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}
.cta-section {
  background: var(--accent);
  color: var(--primary);
  border-radius: var(--card-radius);
  box-shadow: 0 6px 28px 0 rgba(251,174,23,0.10);
  text-align: center;
  align-items: center;
  justify-content: center;
  padding: 48px 24px 44px 24px;
  gap: 22px;
}
.cta-section h2 {
  color: var(--primary-dark);
  font-size: 2rem;
}
.cta-section p {
  color: var(--primary-dark);
  font-size: 1.12rem;
}

.confirmation-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 450px;
  background: linear-gradient(90deg, #E5E9F2 70%, #FBAE17 100%);
}

/*------------------------
  FLEX LAYOUT PATTERNS
--------------------------*/
.feature-grid, .service-list, .step-list, .values-list, .benefit-icons, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
  margin-bottom: 8px;
}
.feature-grid {
  gap: 28px;
  justify-content: flex-start;
}
.feature-grid li {
  background: var(--secondary-light);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 22px 26px 20px 26px;
  font-size: 1.1rem;
  min-width: 200px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 7px;
}
.step-list {
  flex-direction: row;
  gap: 36px;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 10px;
  padding-left: 0;
}
.step-list li {
  background: var(--secondary-light);
  border-radius: 16px;
  box-shadow: 0 2px 8px 0 rgba(35,64,120,0.07);
  padding: 18px 21px 16px 21px;
  min-width: 170px;
  flex: 1 1 190px;
  position: relative;
  margin-bottom: 20px;
}
.step-list img {
  width: 32px;
  height: 32px;
  margin-bottom: 8px;
  vertical-align: middle;
}
.service-list {
  gap: 32px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px 0 rgba(35,64,120,0.08);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 28px 24px 28px;
  min-width: 220px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow 0.21s, border-color 0.17s;
}
.service-item img {
  width: 44px;
  height: 44px;
}
.service-item h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
}
.service-item .price {
  font-family: 'Montserrat', Arial, sans-serif;
  background: var(--accent);
  color: var(--primary);
  border-radius: 22px;
  padding: 7px 20px 6px 20px;
  font-weight: 900;
  font-size: 1.08rem;
  letter-spacing: 0.05em;
  margin-top: 7px;
  align-self: flex-start;
}
.service-item:hover, .service-item:focus-within {
  box-shadow: 0 12px 48px 0 rgba(35,64,120,0.14);
  border-color: var(--accent);
}

.values-list, .benefit-icons {
  gap: 24px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin-bottom: 12px;
  margin-top: 13px;
}
.values-list li, .benefit-icons li {
  background: var(--secondary-light);
  border-radius: 14px;
  padding: 15px 19px 12px 19px;
  font-size: 1.02rem;
  color: var(--primary-dark);
  box-shadow: 0 2px 10px 0 rgba(35,64,120,0.06);
  min-width: 150px;
  flex: 1 1 180px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.benefit-icons img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
}


/***************
 CARDS & FLEX PATTERNS
***************/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  box-shadow: var(--card-shadow);
  border-radius: var(--card-radius);
  padding: 22px 28px 20px 28px;
}
.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;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 6px 30px 0 rgba(35,64,120,0.11);
  padding: 20px;
  gap: 12px;
  max-width: 350px;
  min-width: 200px;
  margin-bottom: 20px;
  border-left: 7px solid var(--accent);
  transition: box-shadow 0.16s;
  position: relative;
}
.testimonial-card:hover {
  box-shadow: 0 12px 48px 0 rgba(251,174,23,0.15);
}
.testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}
.customer-quote {
  color: var(--primary-dark);
  font-size: 1.08rem;
  font-style: italic;
  margin-bottom: 8px;
}
.customer-name {
  color: var(--muted);
  font-weight: 700;
  font-size: 1rem;
}
.testimonial-card .stars {
  color: #FBAE17;
  font-size: 1.12rem;
  letter-spacing: 2px;
  margin-top: 3px;
}


/*************
  FOOTER
*************/
footer {
  background: var(--primary-dark);
  color: var(--secondary);
  margin-top: 60px;
  padding-top: 34px;
  padding-bottom: 22px;
}
.footer-top {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 20px;
}
.footer-top img {
  width: 56px;
  height: 56px;
}
.company-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 1rem;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
  margin-bottom: 16px;
  justify-content: flex-start;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #fff;
}
.newsletter-signup {
  margin-top: 8px;
  font-size: 1.03rem;
  color: var(--secondary);
}
.footer-bottom {
  margin-top: 27px;
  font-size: 0.97rem;
  color: var(--muted);
}

/*---------------------------------------------
  TABLES, FORMS, etc. (BASIC DESIGN)
---------------------------------------------*/
table {
  border-collapse: collapse;
  border-spacing: 0;
  width: 100%;
  margin-bottom: 22px;
}
th, td {
  text-align: left;
  padding: 10px 14px;
  border-bottom: 1px solid #e5e9f2;
}

/*-------------------------------
  LINK & BUTTON HOVER EFFECTS
-------------------------------*/
a, .cta-btn, .footer-nav a, .main-nav a, .mobile-nav a, .service-item, .testimonial-card {
  transition: all 0.17s cubic-bezier(.47,1.64,.41,.8);
}

/*-------------------------
  MISCELLANEOUS ELEMENTS
--------------------------*/
.price {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  color: var(--primary);
  background: var(--accent);
  padding: 8px 18px 7px 18px;
  border-radius: 20px;
  font-size: 1.07rem;
  letter-spacing: 0.04em;
  margin-top: 9px;
}
.text-section {
  font-size: 1.04rem;
  color: var(--text);
}
.legal-section {
  background: #fff;
  border-radius: 18px;
  padding: 36px 30px;
  margin-top: 16px;
  margin-bottom: 32px;
  box-shadow: 0 6px 30px 0 rgba(35,64,120,0.08);
}

/*----------------------
  RESPONSIVE DESIGN
----------------------*/
@media (max-width: 1023px) {
  .main-nav {
    gap: 14px;
    margin-left: 12px;
  }
  .service-list, .feature-grid, .testimonial-list,
  .values-list, .benefit-icons,
  .step-list {
    gap: 18px;
  }
  .service-item, .feature-grid li {
    min-width: 165px;
    padding: 22px 14px 14px 16px;
  }
  .testimonial-card {
    min-width: 165px;
  }
  .footer-top {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  section {
    padding: 27px 6px 29px 6px;
    margin-bottom: 40px;
  }
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  header .container {
    flex-direction: row;
    gap: 9px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .main-nav, .cta-btn {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .footer-top {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
  .footer-nav {
    justify-content: flex-start;
    gap: 8px;
    font-size: 0.9rem;
  }
  .service-list, .feature-grid, .values-list, .benefit-icons, .testimonial-list, .step-list {
    flex-direction: column;
    gap: 16px;
  }
  .service-item, .feature-grid li, .testimonial-card {
    min-width: unset;
    width: 100%;
    padding: 16px 10px 15px 12px;
  }
  .cta-section {
    padding: 27px 6px 27px 6px;
  }
  .content-wrapper {
    align-items: flex-start;
    padding: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 17px;
  }
  .feature-grid img, .service-item img {
    width: 34px;
    height: 34px;
  }
  .logo {
    width: 32px;
    height: 32px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.3rem;
  }
  h2 {
    font-size: 1.07rem;
  }
  section {
    padding: 12px 2px;
    margin-bottom: 28px;
  }
  .hero {
    padding: 26px 0 28px 0;
    min-height: 200px;
.
  }
  .cta-section {
    padding: 14px 3px 14px 3px;
  }
  .footer-top img {
    width: 30px;
    height: 30px;
  }
}

/*-------------------------------------
  ANIMATIONS & MICRO-INTERACTIONS
-------------------------------------*/
.service-item, .feature-grid li, .testimonial-card {
  transition: box-shadow 0.16s, transform 0.14s;
}
.service-item:hover, .feature-grid li:hover, .testimonial-card:hover {
  box-shadow: 0 16px 54px 0 rgba(251,174,23,0.09);
  transform: translateY(-3px) scale(1.02);
  z-index: 1;
}
.cta-btn:active {
  transform: scale(0.97);
}

/*----------------------------------
 COOKIE CONSENT BANNER & MODAL
-----------------------------------*/
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--primary);
  color: #fff;
  z-index: 4000;
  box-shadow: 0 -6px 18px 0 rgba(35, 64, 120, 0.13);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px 16px 24px;
  font-size: 1.06rem;
  gap: 15px;
  animation: fadeInCookie 0.7s;
}
@keyframes fadeInCookie {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.cookie-banner-buttons {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  background: var(--accent);
  color: var(--primary-dark);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 7px 20px 6px 20px;
  border-radius: 20px;
  border: none;
  margin-left: 0;
  cursor: pointer;
  transition: background 0.16s, color 0.16s;
}
.cookie-banner button.reject {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--accent);
}
.cookie-banner button.settings {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary-dark);
  color: #fff;
}
.cookie-modal-backdrop {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 4010;
  background: rgba(35, 64, 120, 0.80);
  animation: fadeInCookieBackdrop 0.39s;
}
@keyframes fadeInCookieBackdrop {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%) scale(1.02);
  z-index: 4020;
  background: #fff;
  color: var(--primary);
  min-width: 300px;
  max-width: 96vw;
  min-height: 200px;
  border-radius: 20px;
  box-shadow: 0 16px 64px 0 rgba(35,64,120,0.22);
  padding: 34px 28px 20px 28px;
  animation: fadeInCookieModal 0.31s cubic-bezier(.47,1.64,.41,.8);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: translate(-50%, -60%) scale(0.95); }
  to   { opacity: 1; transform: translate(-50%, -50%) scale(1.02); }
}
.cookie-modal h3 {
  color: var(--primary-dark);
  font-size: 1.25rem;
  margin-bottom: 10px;
  text-align: left;
}
.cookie-modal .category-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0 15px 0;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.07rem;
  font-weight: 600;
}
.cookie-modal .category input[type="checkbox"] {
  width: 19px; height: 19px;
  accent-color: var(--primary);
}
.cookie-modal .description {
  color: var(--muted);
  font-size: 0.98rem;
  margin-left: 32px;
  margin-top: -6px;
  margin-bottom: 7px;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 14px;
  margin-top: 18px;
}
.cookie-modal button {
  background: var(--accent);
  color: var(--primary-dark);
  border: none;
  border-radius: 18px;
  padding: 8px 20px 7px 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.17s, color 0.15s;
}
.cookie-modal button.cancel {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--accent);
}
.cookie-modal button:hover, .cookie-modal button:focus {
  background: var(--primary-dark);
  color: #fff;
}

/*******************
  UTILITY SPACING
*******************/
.mb-0 { margin-bottom: 0 !important; }
.mt-0 { margin-top: 0 !important; }
.mt-1 { margin-top: 8px !important; }
.mb-1 { margin-bottom: 8px !important; }
.mt-2 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 16px !important; }
.mt-3 { margin-top: 24px !important; }
.mb-3 { margin-bottom: 24px !important; }

/***************
  ACCESSIBILITY
****************/
:focus {
  outline: 2px dashed var(--accent);
  outline-offset: 2px;
}

/***********************
  PRINT / NON-SCREEN
***********************/
@media print {
  * {
    background: transparent !important;
    color: #000 !important;
    text-shadow: none !important;
    box-shadow: none !important;
  }
  header, footer, .mobile-menu, .cookie-banner, .cookie-modal-backdrop, .cookie-modal {
    display: none !important;
  }
  section, .container, .content-wrapper {
    padding: 0 !important;
    margin: 0 !important;
  }
}
