/* ============================== */
/*       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 {
  box-sizing: border-box;
  font-size: 16px;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
}
body {
  line-height: 1.6;
  background: #F2F4F8;
  color: #20264a;
  min-height: 100vh;
  font-family: 'Open Sans', Arial, sans-serif;
  font-weight: 400;
}
a {
  color: #1A4076;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E8852F;
  outline: none;
}
ul, ol {
  list-style: none;
}

/* ============================== */
/*      TYPOGRAPHY/HIERARCHY      */
/* ============================== */
h1, .h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2.5rem; /* 40px */
  font-weight: 700;
  color: #1A4076;
  margin-bottom: 16px;
}
h2, .h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 2rem; /* 32px */
  font-weight: 600;
  color: #1A4076;
  margin-bottom: 14px;
}
h3, .h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.375rem; /* 22px */
  font-weight: 500;
  color: #1A4076;
  margin-bottom: 10px;
}
p, li {
  font-size: 1rem;
  color: #20264a;
  margin-bottom: 8px;
}
blockquote {
  font-style: italic;
  color: #1A4076;
  background: #e8eef7;
  border-left: 4px solid #E8852F;
  margin: 0 0 4px 0;
  padding: 12px 16px;
}

/* ============================== */
/*           CONTAINERS           */
/* ============================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.content-wrapper {
  width: 100%;
}

/* ============================== */
/*              LAYOUT            */
/* ============================== */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(26,64,118,0.07);
}
.section:last-child {
  margin-bottom: 0;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(26,64,118,0.10);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  min-width: 270px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 6px 24px rgba(26,64,118,0.14);
  transform: translateY(-4px);
}
.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;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(26,64,118,0.07);
  margin-bottom: 20px;
  min-width: 0;
  transition: box-shadow 0.2s, transform 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px rgba(26,64,118,0.13);
  transform: translateY(-2px);
}
.testimonial-meta {
  font-size: 0.97rem;
  color: #E8852F;
  font-weight: 600;
  margin-left: 10px;
}
.feature-item,
.feature-list > li,
.service-list > li,
.contact-info > div,
.contact-benefits > li,
.benefits-overview > ul > li,
.audience-segments > ul > li {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 16px;
}

/* Site-specific feature grids (used for home and about) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: #e8eef7;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(26,64,118,0.07);
  flex: 1 1 250px;
  min-width: 250px;
  max-width: 340px;
  padding: 28px 22px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.2s, transform 0.2s;
}
.feature-grid > div:hover {
  box-shadow: 0 8px 24px rgba(26,64,118,0.15);
  transform: translateY(-3px);
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 20px;
}
.service-list li {
  background: #e8eef7;
  border-radius: 8px;
  padding: 18px 15px 12px 11px;
  min-width: 220px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.08rem;
}
.service-list li img {
  width: 32px;
  height: 32px;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-bottom: 26px;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #e8eef7;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 1.04rem;
  color: #1A4076;
}
.contact-info img {
  width: 22px;
  height: 22px;
}

/* Utility layout classes */
.text-section {
  margin-top: 10px;
  margin-bottom: 18px;
  max-width: 700px;
}

.practical-tips,.checklist,.faq-snippets,
.audience-segments,.benefits-overview,.style-overview,
.design-tips,.trending-ideas,.trend-list,.trend-descriptions,.expert-comments,.product-review-list
{
  background: #f8fafc;
  padding: 18px 18px 16px;
  border-radius: 9px;
  box-shadow: 0 1px 5px rgba(26,64,118,0.05);
  margin-bottom: 20px;
  margin-top: 10px;
}
.rating-snippet {
  background: #1A4076;
  color: #fff;
  border-radius: 6px;
  font-size: 1rem;
  margin: 7px 0;
  padding: 2px 10px;
  display: inline-block;
}
.pros-cons {
  margin-bottom: 0;
  margin-left: 12px;
  font-size: 0.99rem;
}

.confirmation-message {
  font-size: 1.25rem;
  color: #1A4076;
  background: #e8eef7;
  padding: 10px 15px;
  margin: 18px 0;
  border-radius: 7px;
  font-weight: 500;
}
.next-steps {
  margin-bottom: 20px;
}


/* ============================== */
/*              NAV               */
/* ============================== */
header {
  background: #fff;
  box-shadow: 0 1px 6px rgba(26,64,118,0.06);
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 11;
}
header .container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 20px 20px;
  min-height: 70px;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #1A4076;
  padding: 7px 13px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover, header nav a:focus {
  background: #E8852F;
  color: #fff;
}
.btn-primary {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: #1A4076;
  color: #fff;
  border-radius: 6px;
  padding: 10px 30px;
  box-shadow: 0 2px 7px rgba(26,64,118,0.09);
  font-size: 1.08rem;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  transition: background 0.18s, box-shadow 0.18s, color 0.18s, transform 0.13s;
  outline: none;
}
.btn-primary:hover, .btn-primary:focus {
  background: #E8852F;
  color: #fff;
  box-shadow: 0 4px 20px rgba(26,64,118,0.13);
  transform: translateY(-2px);
}

/* ============================== */
/*        FOOTER LAYOUT           */
/* ============================== */
footer {
  background: #1A4076;
  color: #fff;
  padding: 0;
  font-size: 1rem;
  width: 100%;
}
footer .container {
  padding: 40px 20px 30px 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 20px;
}
.footer-nav a {
  color: #fff;
  opacity: 0.9;
  font-weight: 400;
  transition: color 0.2s, opacity 0.2s;
  font-size: 1rem;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: #E8852F;
  opacity: 1;
}
.brand-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
  color: #e3eafa;
  font-size: 1rem;
}
.brand-info img {
  width: 40px;
}
.social-links {
  display: flex;
  gap: 16px;
  margin-top: 12px;
}
.social-links a{
  display: flex;
}
.social-links img {
  width: 28px; height: 28px;
  filter: grayscale(0.6);
  opacity: 0.88;
  transition: filter 0.18s, opacity 0.18s, transform 0.13s;
}
.social-links a:hover img {
  filter: grayscale(0) brightness(1) drop-shadow(0 1px 6px #E8852F);
  opacity: 1;
  transform: scale(1.09);
}

/* ============================== */
/*       BURGER (MOBILE) MENU     */
/* ============================== */
.mobile-menu-toggle {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  background: #1A4076;
  border: none;
  border-radius: 7px;
  color: #fff;
  font-size: 2.1rem;
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(26,64,118,0.18);
  cursor: pointer;
  transition: background 0.14s, color 0.2s, transform 0.13s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E8852F;
  color: #fff;
  transform: scale(1.06);
}

.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,64,118,0.97);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.61,.01,.55,1.01);
  display: flex;
  flex-direction: column;
}
.mobile-menu.active {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 24px; right: 24px;
  background: rgba(243,247,252, 0.92);
  border-radius: 8px;
  color: #1A4076;
  border: none;
  width: 44px; height: 44px;
  font-size: 2.1rem;
  z-index: 5;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.12s, color 0.12s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E8852F;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 21px;
  margin-top: 88px;
  align-items: flex-start;
  padding: 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.24rem;
  color: #fff;
  padding: 12px 2px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E8852F;
  color: #fff;
}

/* Hide regular nav, show hamburger on mobile */
@media (max-width: 1020px) {
  header nav, header .btn-primary {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}

@media (max-width: 768px) {
  .container {
    max-width: 99vw;
    padding: 0 8px;
  }
  .section {
    padding: 30px 8px;
    margin-bottom: 40px;
  }
  .feature-grid, .service-list {
    flex-direction: column;
    gap: 16px;
  }
  .feature-grid > div, .service-list li {
    max-width: 100%;
    min-width: 0;
  }
  header .container {
    padding: 18px 8px;
  }
  .footer-nav, .brand-info, .social-links {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .brand-info {
    font-size: 0.98rem;
  }
  .content-grid,
  .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  .card {
    min-width: 0;
    padding: 18px 12px;
  }
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-info {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }
  .confirmation-message {
    font-size: 1.07rem;
  }
}

@media (max-width: 480px) {
  h1, .h1 { font-size: 1.45rem;  }
  h2, .h2 { font-size: 1.1rem; }
  h3, .h3 { font-size: 1rem; }
  .btn-primary {
    font-size: 0.98rem;
    padding: 10px 13px;
  }
  .mobile-nav a { font-size: 1rem; }
  .feature-grid img {
    width: 34px;
    height: 34px;
    margin-bottom: 10px;
  }
}

/* ============================== */
/*        COOKIE CONSENT BANNER   */
/* ============================== */
.cookie-consent-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #1A4076;
  color: #fff;
  box-shadow: 0 -2px 24px rgba(26,64,118,0.12);
  z-index: 5555;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 14px 13px 14px 13px;
  gap: 16px;
  font-size: 1rem;
  animation: banner-slide-in 0.7s cubic-bezier(.49,.01,.22,.99);
}
@keyframes banner-slide-in {
  0%   { transform: translateY(100%); opacity:0; }
  80%  { opacity:1; }
  100% { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  border: none;
  margin-left: 13px;
  margin-right: 2px;
  padding: 9px 18px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.12s;
  outline: none;
}
.cookie-consent-banner a {
  color: white;
}
.cookie-consent-banner .cookie-accept {
  background: #E8852F;
  color: #fff;
}
.cookie-consent-banner .cookie-accept:hover, .cookie-consent-banner .cookie-accept:focus {
  background: #ee9936;
  color: #fff;
  transform: scale(1.04);
}
.cookie-consent-banner .cookie-reject {
  background: #F2F4F8;
  color: #1A4076;
}
.cookie-consent-banner .cookie-reject:hover, .cookie-consent-banner .cookie-reject:focus {
  background: #e3e9f1;
  color: #1A4076;
}
.cookie-consent-banner .cookie-settings {
  background: transparent;
  border: 1px solid #e8eef7;
  color: #fff;
  padding: 9px 14px;
}
.cookie-consent-banner .cookie-settings:hover, .cookie-consent-banner .cookie-settings:focus {
  background: #e8eef7;
  color: #1A4076;
  border-color: #E8852F;
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(6,30,65,0.72);
  z-index: 8889;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.cookie-modal {
  background: #fff;
  color: #1A4076;
  width: 98vw;
  max-width: 410px;
  border-radius: 14px;
  padding: 32px 23px 23px 23px;
  box-shadow: 0 7px 60px 0 rgba(26,64,118,0.19);
  position: relative;
  animation: modal-fade-in 0.5s cubic-bezier(.49,.01,.22,.99);
  display: flex;
  flex-direction: column;
  gap: 19px;
}
@keyframes modal-fade-in {
  from { transform: scale(0.89) translateY(70px); opacity:0; }
  to { transform: scale(1) translateY(0); opacity:1; }
}
.cookie-modal h2 {
  margin-bottom: 4px;
  font-size: 1.32rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 10px 0;
}
.cookie-modal label {
  font-size: 1.08rem;
  color: #20264a;
  font-weight: 500;
  cursor: pointer;
}
.cookie-modal .category-essential label {
  color: #1A4076;
  font-weight: 700;
}
.cookie-modal .cookie-toggle {
  width: 38px; height: 21px;
  background: #e8eef7;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-left: 6px;
  cursor: pointer;
}
.cookie-modal .cookie-toggle input[type="checkbox"] {
  display: none;
}
.cookie-modal .cookie-toggle .slider {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 17px; height: 17px;
  border-radius: 50%;
  background: #E8852F;
  transition: left 0.18s, background 0.18s;
}
.cookie-modal .cookie-toggle input:checked + .slider {
  left: 19px;
  background: #1A4076;
}
.cookie-modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
}
.cookie-modal-actions button {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-radius: 6px;
  padding: 9px 16px;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.cookie-modal-actions .cookie-accept {
  background: #E8852F;
  color: #fff;
}
.cookie-modal-actions .cookie-accept:hover, .cookie-modal-actions .cookie-accept:focus {
  background: #1A4076; color:#fff;
}
.cookie-modal-actions .cookie-reject {
  background: #F2F4F8;
  color: #1A4076;
}
.cookie-modal-actions .cookie-reject:hover, .cookie-modal-actions .cookie-reject:focus {
  background: #e8eef7;
  color: #1A4076;
}
.cookie-modal-close {
  position: absolute;
  top: 19px; right: 19px;
  background: transparent;
  border: none;
  color: #1A4076;
  font-size: 1.65rem;
  cursor: pointer;
  opacity: 0.76;
  transition: color 0.13s, opacity 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {   color: #E8852F; opacity: 1; }

/* ============================== */
/*         FORM ELEMENTS          */
/* ============================== */
input, textarea, select {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #C6D5EB;
  border-radius: 6px;
  padding: 10px 12px;
  background: #f7fafd;
  color: #1A4076;
  margin-bottom: 12px;
  outline: none;
  transition: border 0.18s, box-shadow 0.18s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #1A4076;
  background: #fff;
}

/* ============================== */
/*    SPACING/UTILITIES/OTHERS    */
/* ============================== */
.mt-16 { margin-top: 16px!important; }
.mb-16 { margin-bottom: 16px!important; }
.mb-24 { margin-bottom: 24px!important; }
.mb-32 { margin-bottom: 32px!important; }
.text-center { text-align: center!important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-16 { gap: 16px; }

/* ============================== */
/*         VISUAL EFFECTS         */
/* ============================== */
::-webkit-scrollbar {
  width: 10px;
  background: #f0f3fa;
}
::-webkit-scrollbar-thumb {
  background: #d1dbe9;
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: #1A4076;
}

/* Icon accessibility */
img, svg {
  vertical-align: middle;
  max-width: 100%;
}

/* Ensure testimonial quote contrast */
.testimonial-card blockquote {
  color: #1A4076;
  font-size: 1.15rem;
  background: #f4f6fa;
  border-left: 5px solid #E8852F;
}

/* Hide mobile menu on desktop */
@media (min-width: 1021px) {
  .mobile-menu, .mobile-menu-toggle {
    display: none!important;
  }
}

/* Ensure minimum spacing between cards */
.card + .card,
.testimonial-card + .testimonial-card,
.feature-grid > div + div,
.service-list li + li,
.section + .section
{
  margin-top: 20px;
}

/* MAKE SURE nav/button focus rings are visible for accessibility */
:focus {
  outline: 2px solid #E8852F;
  outline-offset: 2px;
}

/* ============================== */
/*      END OF MAIN STYLES        */
/* ============================== */