/* === RESET AND 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.5;
  background: #F4F4F4;
}
ol, ul {
  list-style: none;
}
a {
  background: transparent;
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button, input, select, textarea {
  font: inherit;
}

/* === FONTS === */
@import url('https://fonts.googleapis.com/css?family=Titillium+Web:400,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #1A2E45;
  background-color: #F4F4F4;
  font-size: 16px;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #1A2E45;
  letter-spacing: 0.5px;
}
h1 { font-size: 2.8rem; line-height: 1.15; margin-bottom: 20px; }
h2 { font-size: 2rem; line-height: 1.2; margin-bottom: 18px; }
h3 { font-size: 1.25rem; margin-bottom: 10px; }
h4, h5, h6 { font-size: 1.1rem; margin-bottom: 8px; }

p, li, blockquote {
  color: #1A2E45;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 14px;
}
strong { font-weight: 700; }


/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 0; /* disables unwanted gap in container */
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  gap: 16px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 12px 0 rgba(26,46,69,0.05);
}

/* ====== HERO SECTION ====== */
.hero-section {
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #1A2E45 0%, #DA251C 100%);
  padding: 72px 0 56px 0;
  color: #fff;
  border-radius: 0 0 32px 32px;
  margin-bottom: 48px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section h1, .hero-section p {
  color: #fff;
  text-align: center;
}
.hero-section .btn-primary {
  margin-top: 24px;
}


/* ======= COMMON FLEX UTILS ======= */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 3px 28px 0 rgba(26,46,69,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s;
}
.card:hover {
  box-shadow: 0 8px 36px 0 rgba(218,37,28,0.13);
}
.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 2px 12px 0 rgba(26,46,69,0.08);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 18px;
  color: #22344C;
  max-width: 700px;
}
.testimonial-card blockquote {
  font-style: italic;
  font-size: 17px;
  color: #1A2E45;
  margin-bottom: 0;
}
.testimonial-card strong {
  font-weight: bold;
  color: #DA251C;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #F4F4F4;
  border-radius: 14px;
  box-shadow: 0 2px 8px 0 rgba(26,46,69,0.04);
  padding: 28px 20px 22px 20px;
  min-width: 220px;
  flex: 1 1 220px;
  transition: box-shadow 0.2s, background 0.2s;
}
.feature-item:hover {
  background: #fff;
  box-shadow: 0 5px 22px 0 rgba(218, 37, 28, 0.12);
}
.feature-item img {
  width: 46px;
  height: 46px;
  margin-bottom: 6px;
}

/* ====== FEATURE GRID ====== */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  width: 100%;
  margin: 20px 0 0 0;
}

/* ======= OFFERS PAGE ======= */
.offer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.offer-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(26,46,69,0.06);
  padding: 22px 18px 18px 18px;
  max-width: 340px;
  flex: 1 1 285px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  transition: box-shadow 0.2s;
}
.offer-item:hover {
  box-shadow: 0 5px 32px rgba(218,37,28,0.14);
}
.badge-limited {
  display: inline-block;
  padding: 3px 13px;
  border-radius: 11px;
  font-size: 0.93rem;
  color: #fff;
  background: #DA251C;
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.disclaimer {
  font-size: 14px;
  color: #A4A7AD;
  margin-top: 12px;
}

/* ======= FAQ LIST ======= */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq-item {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 rgba(26,46,69,0.08);
  padding: 20px 18px;
  margin-bottom: 8px;
}
.faq-item h2 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: #DA251C;
}

/* ===== CONTACT DETAILS ===== */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}
.contact-details img {
  margin-right: 7px;
  vertical-align: middle;
}

/* ===== TEXT SECTION & LISTS ===== */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.text-section ul {
  margin: 0 0 14px 0;
  padding: 0 0 0 18px;
}
.text-section li {
  color: #22344C;
  margin-bottom: 8px;
  position: relative;
}
.text-section li:before {
  content: '•';
  color: #DA251C;
  font-size: 1.1em;
  margin-right: 7px;
}

/* ===== BUTTONS ===== */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 46px;
  padding: 0 28px;
  border: none;
  border-radius: 23px;
  font-family: 'Titillium Web', sans-serif;
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, box-shadow 0.22s;
  box-shadow: 0 2px 6px 0 rgba(26,46,69,0.09);
  text-align: center;
  text-decoration: none;
  margin-right: 12px;
}
.btn-primary {
  color: #fff;
  background: linear-gradient(90deg, #1A2E45 0%, #DA251C 100%);
  box-shadow: 0 2px 12px 0 rgba(218,37,28,0.11);
}
.btn-primary:hover, .btn-primary:focus {
  background: linear-gradient(90deg, #1A2E45 20%, #b91d1b 100%);
  color: #fff;
}
.btn-secondary {
  color: #DA251C;
  background: #fff;
  border: 2px solid #DA251C;
}
.btn-secondary:hover, .btn-secondary:focus {
  color: #fff;
  background: #DA251C;
}

/* ===== HEADER & NAVIGATION ===== */
header {
  background: #fff;
  box-shadow: 0 2px 8px 0 rgba(26,46,69,0.05);
  padding: 0;
  z-index: 1600;
  position: sticky;
  top: 0;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 80px;
}
header img {
  height: 44px;
  width: auto;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Titillium Web', sans-serif;
  color: #1A2E45;
  font-weight: 600;
  font-size: 1.09rem;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
}
.main-nav a:after {
  display: block;
  content: '';
  border-bottom: 2.5px solid #DA251C;
  transform: scaleX(0);
  transition: transform 0.25s ease;
  margin-top: 1px;
}
.main-nav a:hover, .main-nav a:focus {
  color: #DA251C;
}
.main-nav a:hover:after, .main-nav a:focus:after {
  transform: scaleX(1);
}

header .btn-primary {
  margin-right: 0;
}

/* ===== MOBILE NAVIGATION ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  right: 18px;
  top: 18px;
  z-index: 2100;
  background: #DA251C;
  color: #fff;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  font-size: 2.1rem;
  box-shadow: 0 2px 12px 0 rgba(218,37,28,0.13);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  align-content: center;
  transition: background 0.23s, color 0.19s;
}
.mobile-menu-toggle:active {
  background: #B91D1B;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: linear-gradient(90deg, #1A2E45 80%, #DA251C 100%);
  z-index: 2200;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(.77,0,.18,1), opacity 0.23s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.active {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #fff;
  border: none;
  color: #DA251C;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px 0 rgba(218,37,28,0.09);
  cursor: pointer;
  z-index: 2300;
  transition: background 0.22s, color 0.18s;
}
.mobile-menu-close:hover {
  background: #DA251C;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin: 100px auto 0 auto;
  width: 90%;
  align-items: flex-start;
  max-width: 320px;
}
.mobile-nav a {
  color: #fff;
  font-size: 1.3rem;
  font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 10px 4px;
  border-radius: 8px;
  transition: background 0.17s, color 0.19s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #fff;
  color: #DA251C;
}

@media (max-width: 980px) {
  header .container {
    gap: 6px;
  }
  .main-nav {
    gap: 12px;
  }
}

@media (max-width: 768px) {
  header .container {
    flex-direction: row;
    gap: 12px;
    padding: 10px 8px;
    min-height: 66px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (min-width: 769px) {
  .mobile-menu,
  .mobile-menu-close,
  .mobile-menu-toggle { display: none !important; }
  .main-nav {
    display: flex;
  }
}


/* ===== SECTIONS & PADDING ===== */
section {
  margin-bottom: 60px;
  padding: 40px 0;
}

/* === FOOTER === */
footer {
  background: linear-gradient(90deg, #1A2E45 80%, #DA251C 100%);
  color: #fff;
  padding: 38px 0 14px 0;
  border-radius: 32px 32px 0 0;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 26px;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 250px;
  gap: 4px;
}
.footer-brand img {
  width: 46px;
  height: auto;
  margin-bottom: 5px;
}
.footer-brand p {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 170px;
}
.footer-nav a {
  color: #fff;
  font-size: 1.04rem;
  margin-bottom: 2px;
  font-weight: 500;
  transition: color 0.18s;
}
.footer-nav a:hover {
  color: #F4F4F4;
  text-decoration: underline;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  color: #fff;
  font-size: 15px;
}
.footer-contact img {
  width: 17px;
  height: 17px;
  margin-right: 7px;
  vertical-align: middle;
}
footer small {
  color: #fff;
  font-size: 13px;
  margin-top: 8px;
  display: block;
}
@media (max-width: 980px) {
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1024px) {
  .container {
    max-width: 97vw;
  }
  .feature-grid { gap: 16px; }
}
@media (max-width: 768px) {
  .section, section {
    margin-bottom: 38px;
    padding: 22px 0 !important;
    border-radius: 0;
    box-shadow: none;
  }
  .hero-section {
    border-radius: 0 0 20px 20px;
    padding: 46px 0 33px 0;
  }
  .content-wrapper {
    margin: 0;
    padding: 0 3px;
    gap: 16px;
  }
  .feature-grid, .offer-list, .card-container, .content-grid {
    flex-direction: column;
    gap: 14px;
  }
  .testimonial-card { max-width: 100%; }
  .feature-item, .offer-item { min-width: unset; max-width: 100%; }
  .text-image-section { flex-direction: column; align-items: flex-start; gap: 18px; }
}

@media (max-width: 480px) {
  .container { padding: 0 8px; }
  .footer-brand {
    align-items: flex-start;
  }
}

/* === COOKIE BANNER & MODAL === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #1A2E45;
  color: #fff;
  box-shadow: 0 -2px 18px rgba(26,46,69,0.15);
  z-index: 2500;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  font-size: 1rem;
  gap: 18px;
  animation: cookieSlideUp 0.7s cubic-bezier(.6,0,.28,1) 1;
}
@keyframes cookieSlideUp {
  from { transform: translateY(100%); }
  to { transform: translateY(0); }
}
.cookie-banner p {
  margin-bottom: 0;
  color: #fff;
  flex: 2 1 340px;
}
.cookie-actions {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-btn {
  font-family: 'Titillium Web', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 17px;
  min-width: 109px;
  min-height: 38px;
  padding: 0 18px;
  cursor: pointer;
  margin: 0;
  transition: background 0.20s, color 0.13s;
}
.cookie-btn.accept {
  background: #DA251C;
  color: #fff;
}
.cookie-btn.accept:hover { background: #B91D1B; }
.cookie-btn.reject {
  background: #fff;
  color: #1A2E45;
  border: 1.5px solid #1A2E45;
}
.cookie-btn.reject:hover { background: #DA251C; color: #fff; border-color: #DA251C; }
.cookie-btn.settings {
  background: #1A2E45;
  color: #fff;
  border: 1.5px solid #fff;
}
.cookie-btn.settings:hover { background: #fff; color: #DA251C; border-color: #DA251C; }

@media (max-width: 650px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 11px;
    padding: 15px 9px;
    font-size: 0.97rem;
  }
  .cookie-actions { flex-wrap: wrap; gap: 9px; }
}

/* === COOKIE PREFERENCES MODAL === */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(30,31,35,0.46);
  z-index: 2600;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  opacity: 1;
  transition: opacity 0.32s;
}
.cookie-modal {
  background: #fff;
  color: #1A2E45;
  border-radius: 20px;
  box-shadow: 0 10px 48px 0 rgba(26,46,69,0.16);
  max-width: 370px;
  width: 92vw;
  padding: 34px 20px 23px 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  animation: modalPopIn 0.37s cubic-bezier(.5,0,.35,1) 1;
}
@keyframes modalPopIn {
  0% { opacity: 0; transform: scale(0.88) translateY(30px); }
  100% { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.3rem;
  color: #DA251C;
  margin-bottom: 5px;
}
.cookie-toggle-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin: 10px 0 17px 0;
}
.cookie-toggle-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  font-size: 1.03rem;
}
.cookie-toggle-switch {
  width: 42px;
  height: 23px;
  border-radius: 12px;
  background: #eee;
  position: relative;
  transition: background 0.18s;
  cursor: pointer;
  border: 1.5px solid #DA251C;
  margin-right: 7px;
}
.cookie-toggle-switch[aria-checked="true"] {
  background: #DA251C;
}
.cookie-toggle-switch .knob {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.20s;
}
.cookie-toggle-switch[aria-checked="true"] .knob {
  left: 21px;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-top: 11px;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  min-width: 96px;
}
.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #1A2E45;
  cursor: pointer;
  line-height: 1;
  z-index: 1;
}
.cookie-modal-close:hover {
  color: #DA251C;
}

/* === ANIMATION MICRO-INTERACTIONS (e.g. button press) === */
.btn-primary:active,
.btn-secondary:active,
.cookie-btn:active {
  transform: scale(0.97);
}

/* === ACCESSIBILITY & FOCUS === */
a:focus, button:focus {
  outline: 2.5px solid #DA251C;
  outline-offset: 2px;
  z-index: 2;
}


/* =============== END OF CSS =============== */