/* === CSS RESET & NORMALIZE === */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  background: #F4F7F9;
  color: #1a2433;
  min-height: 100vh;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #11426B;
  line-height: 1.18;
  margin-bottom: 18px;
}
h1 {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -1.5px;
}
h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-top: 16px;
}
h3 {
  font-size: 1.35rem;
  font-weight: 600;
}
.subtitle {
  font-size: 1.15rem;
  color: #FFC857;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  letter-spacing: 1.15px;
  font-style: italic;
  margin-bottom: 20px;
}
strong {
  color: #11426B;
  font-weight: 700;
}
a {
  color: #11426B;
  text-decoration: none;
  transition: color 0.18s;
}
a:hover, a:focus {
  color: #FF6600;
  outline: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  margin-left: 20px;
  margin-bottom: 18px;
}
li {
  margin-bottom: 10px;
  list-style: disc inside;
}
.container {
  width: 100%;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* === MAIN SECTIONS & FLEX LAYOUTS === */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: transparent;
}
.content-wrapper,
.text-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(17,66,107,0.08), 0 1.5px 6px rgba(255,200,87,0.09);
  margin-bottom: 20px;
  padding: 28px 26px 26px;
  position: relative;
  transition: transform 0.24s, box-shadow 0.24s;
}
.card:hover {
  transform: translateY(-3px) scale(1.016);
  box-shadow: 0 10px 32px rgba(17,66,107,0.18), 0 2.5px 12px rgba(255,200,87,0.15);
  z-index: 2;
}
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
  margin-bottom: 18px;
}
.features-grid li {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(17,66,107,0.06);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 20px 22px;
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 320px;
  transition: box-shadow 0.2s, transform 0.2s;
  margin-bottom: 20px;
}
.features-grid li img {
  width: 38px;
  margin-bottom: 0;
}
.features-grid li:hover {
  box-shadow: 0 6px 24px rgba(17,66,107,0.16);
  transform: translateY(-2px) scale(1.025);
}
.services-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-bottom: 18px;
}
.services-list li strong {
  color: #FF6600;
  font-weight: 800;
}
.services-cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 16px rgba(17,66,107,0.08);
  margin-bottom: 20px;
  padding: 26px 22px 22px;
  position: relative;
  border-left: 7px solid #FFC857;
  transition: border-color 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-card:hover {
  border-color: #FF6600;
  box-shadow: 0 6px 18px rgba(255,200,87,0.14);
}
.service-card .price {
  background: #FFC857;
  color: #11426B;
  border-radius: 12px;
  font-size: 1.09em;
  padding: 4px 12px;
  margin-top: 8px;
  font-weight: 700;
  letter-spacing: 0.3px;
  align-self: flex-end;
}
.tips-grid,
.blog-preview-grid,
.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 16px;
}
.tips-grid ul,
.blog-preview-grid ul,
.blog-list ul {
  margin: 0;
}
.tips-grid li,
.blog-preview-grid li,
.blog-list li {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1.5px 8px rgba(17,66,107,0.07);
  padding: 15px 19px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-width: 220px;
}
.tips-grid li strong,
.blog-preview-grid li h3,
.blog-list li h3 {
  color: #11426B;
}
.categories-filter {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin: 18px 0 5px 0;
}
.categories-filter a {
  background: #FFC857;
  color: #11426B;
  border-radius: 9px;
  padding: 3px 12px;
  margin-right: 2px;
  font-weight: 600;
  font-size: 0.98em;
  transition: background 0.22s, color 0.18s;
}
.categories-filter a:hover {
  background: #FF6600;
  color: #fff;
}
.form-mockup {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.5px 8px rgba(17,66,107,0.07);
  padding: 24px 18px;
  margin: 14px 0 8px 0;
}
.form-mockup label {
  display: block;
  font-weight: 500;
  color: #11426B;
  font-size: 1.01em;
  margin-bottom: 6px;
}
.form-mockup input, .form-mockup textarea {
  border: 1.4px solid #FFC857;
  border-radius: 8px;
  font-family: 'Roboto', Arial, sans-serif;
  padding: 10px 12px;
  font-size: 1.03em;
  background: #f8fafc;
  resize: none;
  margin-bottom: 6px;
  outline: none;
  color: #222;
  transition: border-color 0.2s;
}
.form-mockup input:focus, .form-mockup textarea:focus {
  border-color: #11426B;
}
.form-mockup input[readonly], .form-mockup textarea[readonly] {
  background: #f5f5f5;
  color: #aaa;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.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 {
  background: #fff;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  margin-bottom: 20px;
  border-radius: 15px;
  box-shadow: 0 4px 20px rgba(17,66,107,0.11);
  font-size: 1.12rem;
  color: #222;
  transition: box-shadow 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 28px rgba(255,200,87,0.13);
}
.testimonial-card span {
  font-size: 0.99em;
  margin-left: 10px;
  color: #11426B;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.contact-snippet {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 22px;
  margin: 18px 0;
}
.contact-snippet ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-left: 0;
}
.contact-snippet ul li {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 1.09em;
  list-style: none;
  margin-bottom: 0;
}
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: 0;
  margin-top: 12px;
  margin-bottom: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  font-size: 1.09em;
  margin-bottom: 0;
}
.contact-details img {
  filter: none;
  opacity: 0.89;
  width: 27px;
}

/* === BUTTONS & CTA === */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #FFC857;
  color: #11426B;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  border: none;
  padding: 12px 26px;
  border-radius: 25px;
  box-shadow: 0 2px 7px rgba(255,200,87,0.22);
  letter-spacing: 0.4px;
  margin: 12px 4px 12px 0;
  cursor: pointer;
  transition: background 0.18s, color 0.18s, transform 0.18s, box-shadow 0.17s;
  text-shadow: none;
  outline: none;
}
.cta-button:hover, .cta-button:focus {
  background: #FF6600;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 18px rgba(255,102,0,0.18);
}
.cta-button.secondary {
  background: #fff;
  color: #11426B;
  border: 2.5px solid #FFC857;
  font-weight: 600;
  transition: background 0.17s, color 0.17s, border-color 0.17s;
}
.cta-button.secondary:hover, .cta-button.secondary:focus {
  background: #11426B;
  color: #FFC857;
  border: 2.5px solid #FF6600;
}
.cta-link {
  color: #FF6600;
  font-weight: 600;
  margin-left: 19px;
  font-size: 1.04em;
  text-underline-offset: 4px;
}
.cta-link:hover {
  text-decoration: underline;
  color: #11426B;
}

/* === HEADER/NAV === */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 2.5px 12px rgba(17,66,107,0.06);
  position: sticky;
  top: 0;
  z-index: 30;
  padding-top: 0px;
  margin-bottom: 8px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px 16px 20px;
}
header img {
  height: 54px;
  min-width: 44px;
  margin-right: 16px;
}
.main-nav {
  display: flex;
  gap: 20px;
  flex: 1 1 0%;
  align-items: center;
}
.main-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #11426B;
  font-weight: 600;
  font-size: 1.04rem;
  padding: 5px 10px;
  border-radius: 5px;
  transition: color 0.18s, background 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #FF6600;
  background: #FFC85733;
}
/* Hide burger initially */
.mobile-menu-toggle {
  display: none;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  background: #FFC857;
  border: none;
  color: #11426B;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  margin-left: 10px;
  box-shadow: 0 2px 8px rgba(255,200,87,0.10);
  align-items: center;
  justify-content: center;
  display: none;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  z-index: 40;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #FF6600;
  color: #fff;
  box-shadow: 0 4px 20px rgba(255,102,0,0.20);
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #11426B;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.72,0.12,0.39,1.2);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  padding: 0;
  box-shadow: 0 0 70px rgba(17,66,107,0.18);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  margin: 16px 24px 6px 0;
  background: #FFC857;
  border: none;
  color: #11426B;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(255,200,87,0.10);
  transition: background 0.18s, color 0.18s;
  z-index: 1200;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  background: #FF6600;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  margin-top: 30px;
  padding: 0 30px;
}
.mobile-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 11px 0;
  transition: background 0.14s, color 0.16s;
  border-radius: 10px;
  width: 100%;
  display: block;
}
.mobile-nav a:focus,
.mobile-nav a:hover {
  background: #FFC857;
  color: #11426B;
}

/* === FOOTER === */
footer {
  background: #11426B;
  color: #fff;
  padding: 34px 0 28px 0;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 14px;
  justify-content: flex-start;
}
.footer-nav a {
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  color: #FFC857;
  font-size: 1.09rem;
  font-weight: 600;
  letter-spacing: 0.09px;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: color 0.16s, border-color 0.17s;
}
.footer-nav a:focus,
.footer-nav a:hover {
  color: #fff;
  border-bottom: 2px solid #FFC857;
}
.footer-branding {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 20px;
  font-size: 1.01rem;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
}
.footer-branding img {
  height: 38px;
  width: 38px;
  filter: drop-shadow(0 0 6px #FFC85733);
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #fffbe7;
  box-shadow: 0 -2px 14px rgba(17,66,107,0.08), 0 -1.5px 5px rgba(255,200,87,0.05);
  color: #11426B;
  padding: 26px 18px 20px 18px;
  z-index: 1500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-family: 'Roboto', Arial, sans-serif;
  animation: slideUpCookieBanner 0.9s cubic-bezier(0.15,0.95,0.25,1);
}
@keyframes slideUpCookieBanner {
  from { transform: translateY(120%); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  margin-bottom: 8px;
  margin-top: 2px;
  font-weight: 600;
  color: #11426B;
  font-size: 1.05rem;
}
.cookie-banner .cookie-buttons {
  display: flex;
  flex-direction: row;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-btn {
  background: #FFC857;
  color: #11426B;
  font-family: 'Montserrat', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.01rem;
  padding: 10px 22px;
  border: none;
  border-radius: 25px;
  transition: background 0.16s, color 0.18s;
  cursor: pointer;
  box-shadow: 0 1.5px 10px rgba(255,200,87,0.09);
  margin: 0 2px;
}
.cookie-btn.reject {
  background: #eee;
  color: #11426B;
  border: 1.5px solid #FFC857;
}
.cookie-btn.settings {
  background: #fff;
  color: #FF6600;
  border: 2px solid #FFC857;
  font-weight: 600;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #FF6600;
  color: #fff;
}
.cookie-settings-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 96vw;
  max-width: 430px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 50px rgba(17,66,107,0.16);
  transform: translate(-50%, -55%);
  z-index: 2000;
  padding: 32px 22px 24px 22px;
  animation: fadeInCookieModal 0.6s cubic-bezier(0.16,1,0.3,1);
}
@keyframes fadeInCookieModal {
  from { opacity: 0; transform: translate(-50%, -80%); }
  to { opacity: 1; transform: translate(-50%, -55%); }
}
.cookie-settings-modal h3 {
  font-size: 1.29rem;
  color: #11426B;
  margin-bottom: 16px;
}
.cookie-settings-modal ul {
  list-style: none;
  padding: 0;
  margin-bottom: 17px;
}
.cookie-settings-modal li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.cookie-category-name {
  font-weight: 600;
  color: #11426B;
  font-size: 1.03em;
}
.cookie-category-toggle {
  width: 38px;
  height: 22px;
  border-radius: 15px;
  background: #FFC857;
  position: relative;
  border: none;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-category-toggle .knob {
  position: absolute;
  left: 2px;
  top: 2px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: left 0.15s;
}
.cookie-category-toggle.active {
  background: #11426B;
}
.cookie-category-toggle.active .knob {
  left: 18px;
}
.cookie-category-desc {
  font-size: 0.98em;
  color: #81848A;
  margin-left: 8px;
  line-height: 1.3;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
  margin-top: 11px;
}

/* === PAGE SPECIFIC MINIMUM SPACING === */
.card, .service-card, .testimonial-card, .tips-grid li, .blog-preview-grid li, .blog-list li {
  margin-bottom: 20px;  /* Maintain minimum 20px */
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* === RESPONSIVE BREAKPOINTS === */
@media (max-width: 1100px) {
  .container {
    max-width: 98vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 13px;
  }
  .footer-nav {
    gap: 16px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15.1px;
  }
  .container {
    padding-left: 7px;
    padding-right: 7px;
  }
  .main-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: flex !important;
  }
  header .container {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 7px 10px 7px;
  }
  section {
    padding: 26px 8px;
  }
  .content-wrapper, .text-section {
    gap: 14px;
  }
  .features-grid, .tips-grid, .blog-preview-grid, .blog-list {
    gap: 16px;
    flex-direction: column;
  }
  .features-grid li, .tips-grid li, .blog-preview-grid li, .blog-list li {
    min-width: 0;
    flex: 1 1 100%;
    padding: 14px 14px;
  }
  .services-cards {
    gap: 11px;
  }
  .service-card {
    padding: 15px 10px 13px;
  }
  .contact-snippet {
    gap: 10px;
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-snippet ul, .contact-details ul {
    gap: 7px;
  }
  .footer-branding {
    flex-direction: column;
    align-items: flex-start;
    gap: 9px;
  }
  .categories-filter {
    gap: 7px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 8px;
    margin-bottom: 0;
  }
  .form-mockup {
    padding: 12px 6px;
    gap: 11px;
  }
  .content-grid {
    flex-direction: column;
    gap: 13px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 11px;
    padding: 13px 9px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }
}
@media (max-width: 500px) {
  html {
    font-size: 14.1px;
  }
  .cookie-settings-modal {
    padding: 14px 5vw 12px 5vw;
  }
  .mobile-nav {
    padding: 0 12px;
  }
}

/* === CREATIVE ARTISTIC DECORATIVE ELEMENTS === */
/* Subtle artistic underline for h2 headings */
h2 {
  position: relative;
}
h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: #FFC857;
  border-radius: 60px;
  margin-top: 7px;
  margin-bottom: 8px;
  position: relative;
}

/* Accent cup highlight on active card */
.card::before, .service-card::before {
  content: '';
  display: block;
  position: absolute;
  top: -24px;
  left: 28px;
  width: 36px;
  height: 36px;
  background: #FFC857;
  opacity: 0.20;
  border-radius: 40px;
  pointer-events: none;
  z-index: 1;
}
.card:hover::before, .service-card:hover::before {
  opacity: 0.36;
  background: #FF6600;
  transition: background 0.18s, opacity 0.16s;
}

/* Artistic quote icon for testimonials */
.testimonial-card p::before {
  content: '\201C';
  color: #FFC857;
  font-size: 2.1em;
  font-family: 'Montserrat', cursive, sans-serif;
  vertical-align: sub;
  margin-right: 6px;
}

/* Artistic font effect for site tagline (subtitle under hero h1) */
.subtitle {
  font-family: 'Montserrat', cursive, sans-serif;
  font-size: 1.14rem;
  background-image: linear-gradient(90deg, #FFC857 44%, #FF6600 94%);
  color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  font-weight: 600;
  margin-bottom: 18px;
  text-shadow: 0 1px 7px #fce58944;
}

/* === CUSTOM SCROLLBAR === */
body::-webkit-scrollbar {
  width: 10px;
  background: #F4F7F9;
}
body::-webkit-scrollbar-thumb {
  background: #FFC857;
  border-radius: 8px;
}

/* === TYPE SCALE: Ensure clear hierarchy === */
p, li, span {
  font-size: 1.05em;
  letter-spacing: 0.02em;
}
ul li strong, .blog-preview-grid li h3, .blog-list li h3 {
  font-weight: 700;
  color: #11426B;
}

/* === ANIMATION FOR BUTTON HOVER === */
.cta-button, .cookie-btn {
  transition: background 0.17s, color 0.16s, transform 0.12s, box-shadow 0.17s;
}

/* === SHADOWS & RADIUS FOR MODERN LOOK === */
.card, .service-card, .features-grid li, .tips-grid li, .blog-preview-grid li, .testimonial-card {
  box-shadow: 0 3px 18px rgba(17,66,107,0.10), 0 1px 6px rgba(255,200,87,0.11);
  border-radius: 15px;
  background: #fff;
}

/* === SPACING BETWEEN ALL COMPONENTS === */
.content-wrapper > *, .text-section > * {
  margin-bottom: 12px;
}

/* === Z-INDEX STACKING FOR MENUS & BANNERS === */
.mobile-menu,
.cookie-settings-modal,
.cookie-banner {
  z-index: 9999 !important;
}

/* === A11Y & FOCUS === */
:focus {
  outline: 2px dotted #FF6600;
  outline-offset: 2px;
}

/* === PRINT & SELECTION === */
@media print {
  header, footer, .mobile-menu, .cookie-banner, .cookie-settings-modal {
    display: none !important;
  }
}
::selection {
  background: #FFC857;
  color: #11426B;
}

/*
  END CREATIVE_ARTISTIC FLEXBOX-ONLY CSS
*/
