/* =====================
   CSS RESET & NORMALIZE
   ===================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  min-height: 100vh;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  background: #F5F5F5;
  color: #181C1F;
  line-height: 1.6;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: #34495E;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover, a:focus {
  color: #E6B422;
  outline: none;
}
ul, ol {
  padding-left: 1.3em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 20px;
  border-bottom: 2px solid #E6B422;
  font-size: 1rem;
}
th {
  background: #34495E;
  color: #fff;
  font-weight: 700;
}
tr:nth-child(even) td {
  background: #FAFAFA;
}
blockquote {
  font-family: 'Merriweather', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #34495E;
  border-left: 5px solid #E6B422;
  padding: 16px 24px;
  margin: 24px 0;
  background: #FFF8E1;
}
/* ======================
   BRAND & TYPOGRAPHY
   ====================== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  font-weight: 900;
  color: #34495E;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  line-height: 1.12;
}
h1 {
  font-size: 2.6rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
.subtitle {
  font-weight: 700;
  color: #E6B422;
  margin-bottom: 24px;
  font-size: 1.2rem;
}
p, ul, ol {
  font-size: 1rem;
  color: #181C1F;
  margin-bottom: 16px;
}
strong {
  font-weight: 800;
}
small {
  font-size: 0.92rem;
  color: #888;
}
address {
  font-style: normal;
  color: #34495E;
  margin-top: 12px;
  font-size: 1rem;
}
/* =====================
   LAYOUT UTILITIES
   ===================== */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 0; /* Overridden inside patterns if needed */
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 4px 28px 0 rgba(52,73,94,0.07);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px 0 rgba(52,73,94,0.13);
  padding: 24px;
  position: relative;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.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;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-top: 24px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  min-width: 240px;
  background: #FAFAFA;
  border-radius: 16px;
  padding: 28px 22px;
  box-shadow: 0 1px 8px 0 rgba(230,180,34,0.06);
}
.feature-item img {
  width: 48px;
  height: 48px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF8E1;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(52,73,94,0.08);
  margin-bottom: 20px;
  color: #120c00;
}
.testimonial-card blockquote {
  border: none;
  color: #34495E;
  background: transparent;
  padding: 0;
  margin: 0;
  font-size: 1.125rem;
}
.testimonial-card p {
  margin: 0;
  font-weight: 700;
  color: #E6B422;
}
/* Minimum spacing for all cards/sections */
.section + .section,
.content-wrapper + .content-wrapper,
.card + .card,
.feature-item + .feature-item,
.testimonial-card + .testimonial-card {
  margin-top: 20px;
}
.feature-grid .feature-item:not(:last-child) {
  margin-right: 0;
}
/* =====================
   HEADER & NAVIGATION
   ===================== */
header {
  background: #34495E;
  box-shadow: 0 2px 12px 0 rgba(52,73,94,0.13);
  padding: 0;
  position: relative;
  z-index: 50;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
  padding: 0 18px;
  height: 64px;
  font-weight: 800;
}
.main-nav a {
  color: #fff;
  font-size: 1rem;
  font-family: 'Merriweather', serif;
  letter-spacing: 0.5px;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
  padding: 6px 12px;
  border-radius: 8px;
}
.main-nav a:hover,
.main-nav a:focus {
  color: #E6B422;
  background: #fff;
}
.main-nav img {
  height: 40px;
  width: auto;
  margin-right: 12px;
}
/* Hamburger Icon */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 12px;
  right: 20px;
  background: #E6B422;
  color: #34495E;
  border: none;
  border-radius: 8px;
  padding: 12px 16px;
  font-size: 2rem;
  cursor: pointer;
  z-index: 300;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-toggle:hover {
  background: #34495E;
  color: #E6B422;
}
/* =====================
   MOBILE NAVIGATION
   ===================== */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: #34495E;
  z-index: 999;
  padding-top: 24px;
  transition: transform 0.28s cubic-bezier(.52,.01,.21,1), opacity 0.18s linear;
  transform: translateX(-100vw);
  opacity: 0;
}
.mobile-menu.open {
  display: flex;
  transform: translateX(0);
  opacity: 1;
}
.mobile-menu-close {
  background: #E6B422;
  color: #34495E;
  border: none;
  border-radius: 8px;
  font-size: 2rem;
  padding: 10px 16px;
  margin-left: auto;
  margin-right: 18px;
  margin-bottom: 32px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-close:hover {
  background: #fff;
  color: #E6B422;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
  padding: 0 24px;
}
.mobile-nav a {
  color: #fff;
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
  font-family: 'Merriweather', serif;
  padding: 10px 6px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #E6B422;
  color: #34495E;
}
/* =====================
   CTA BUTTONS & LINKS
   ===================== */
.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #E6B422;
  color: #34495E;
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: 900;
  letter-spacing: 0.6px;
  padding: 14px 36px;
  border: none;
  border-radius: 32px;
  box-shadow: 0 3px 12px 0 rgba(230,180,34,0.14);
  cursor: pointer;
  text-decoration: none;
  margin-top: 12px;
  transition: background 0.20s, color 0.20s, box-shadow 0.17s;
}
.cta-button:hover, .cta-button:focus {
  background: #34495E;
  color: #fff;
  box-shadow: 0 5px 16px 0 rgba(52,73,94,0.18);
  outline: none;
}
/* =====================
   FOOTER
   ===================== */
footer {
  background: #34495E;
  color: #fff;
  padding: 40px 0;
  margin-top: 60px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}
footer a {
  color: #E6B422;
  font-weight: 800;
  margin-right: 18px;
  font-size: 1rem;
}
footer a:hover {
  color: #fff;
  text-decoration: underline;
}
footer address {
  color: #fff;
  font-size: 1rem;
  margin-top: 8px;
}
footer img {
  height: 32px;
  margin-bottom: 8px;
}
/* =====================
   COOKIE CONSENT BANNER
   ===================== */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  z-index: 10000;
  background: #34495E;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 -2px 12px 0 rgba(52,73,94,0.12);
  padding: 28px 14px 20px 14px;
  gap: 18px;
  animation: slideUpBanner 0.5s cubic-bezier(.23,.96,.47,1.07);
}
@keyframes slideUpBanner {
  from { transform: translateY(200px); }
  to { transform: translateY(0); }
}
.cookie-banner-text {
  font-size: 1.1rem;
  text-align: center;
  color: #fff;
  font-weight: 700;
}
.cookie-banner-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.cookie-btn {
  background: #E6B422;
  color: #34495E;
  font-weight: 800;
  border: none;
  border-radius: 24px;
  padding: 12px 26px;
  font-size: 1rem;
  box-shadow: 0 2px 8px 0 rgba(52,73,94,0.12);
  transition: background 0.2s, color 0.2s;
  cursor: pointer;
}
.cookie-btn.reject {
  background: #fff;
  color: #34495E;
}
.cookie-btn.settings {
  background: #34495E;
  color: #E6B422;
  border: 2px solid #E6B422;
}
.cookie-btn:hover,
.cookie-btn:focus {
  background: #34495E;
  color: #E6B422;
}
.cookie-btn.reject:hover,
.cookie-btn.reject:focus {
  background: #E6B422;
  color: #fff;
}
.cookie-btn.settings:hover,
.cookie-btn.settings:focus {
  background: #fff;
  color: #34495E;
  border-color: #34495E;
}
/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(52,73,94,0.45);
  z-index: 10010;
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.24s ease;
}
.cookie-modal-overlay.open {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0 }
  to { opacity: 1 }
}
.cookie-modal {
  background: #fff;
  padding: 32px 24px 24px 24px;
  border-radius: 22px;
  box-shadow: 0 3px 32px 0 rgba(52,73,94,0.21);
  max-width: 420px;
  width: 92vw;
  color: #181C1F;
  animation: popIn 0.22s cubic-bezier(.47,1.35,.36,1.14);
}
@keyframes popIn {
  from { transform: scale(0.82); opacity:0; }
  to { transform: scale(1); opacity:1; }
}
.cookie-modal h3 {
  color: #34495E;
  margin: 0 0 14px 0;
  font-size: 1.3rem;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cookie-switch {
  width: 45px;
  height: 26px;
  border-radius: 13px;
  background: #E6B422;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-block;
}
.cookie-switch[aria-checked="false"] {
  background: #C3C3C3;
}
.cookie-switch-label {
  font-weight: 700;
  font-size: 1rem;
  color: #34495E;
}
.cookie-switch-inner {
  position: absolute;
  left: 3px;
  top: 3px;
  width: 20px;
  height: 20px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-switch[aria-checked="true"] .cookie-switch-inner {
  transform: translateX(17px);
}
.cookie-modal-action-row {
  display: flex;
  justify-content: flex-end;
  gap: 14px;
  margin-top: 22px;
}
.cookie-modal button {
  min-width: 115px;
}
/* =====================
   RESPONSIVE DESIGN
   ===================== */
@media (max-width: 1200px) {
  .container {
    max-width: 980px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 96vw;
  }
  .main-nav {
    gap: 16px;
    font-size: 0.98rem;
  }
  .feature-grid {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .feature-grid, .card-container, .content-grid, .text-image-section {
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
  }
  .section {
    margin-bottom: 40px;
    padding: 24px 7px;
    border-radius: 12px;
  }
  .feature-item,
  .card {
    min-width: 0;
    padding: 19px 12px;
    border-radius: 10px;
  }
  .testimonial-card {
    flex-direction: column;
    gap: 8px;
    border-radius: 9px;
    padding: 14px 9px;
    font-size: 0.98rem;
  }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.4rem; }
  h3 { font-size: 1.12rem; }
  .cta-button {
    padding: 11px 20px;
    font-size: 1.0rem;
    border-radius: 20px;
  }
  footer {
    font-size: 0.97rem;
    padding: 28px 0 11px 0;
  }
  footer img {
    height: 25px;
  }
}
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  .cookie-modal {
    padding: 18px 6px 11px 6px;
    border-radius: 9px;
  }
}
/* ========================
   MICROIINTERACTIONS & FX
   ======================== */
.section, .card, .feature-item, .testimonial-card, .cookie-modal, .cookie-banner {
  transition: box-shadow 0.24s, background 0.2s, border-radius 0.17s;
}
.card:hover, .feature-item:hover {
  box-shadow: 0 8px 32px 0 rgba(230,180,34,0.22);
  background: #FFF8E1;
}
.card a.cta-button:hover {
  color: #fff;
}
.cta-button:active {
  background: #181C1F;
  color: #fff;
}
button:focus, .cta-button:focus, .cookie-btn:focus, .mobile-menu-toggle:focus, .mobile-menu-close:focus {
  outline: 2px solid #E6B422;
  outline-offset: 2px;
}
/* ==========
   MISC FX
   ========== */
::-webkit-scrollbar {
  width: 12px;
}
::-webkit-scrollbar-thumb {
  background: #E6B422;
  border-radius: 8px;
}
::-webkit-scrollbar-track {
  background: #fff;
}
/* =============
  UTILITIES
  ============= */
.hidden {
  display: none !important;
}
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  border: 0 !important;
}
/* ===== Including geometric shapes for modern look (decorative only) ===== */
.section::before {
  content: '';
  display: block;
  position: absolute;
  left: -45px;
  top: -45px;
  width: 88px;
  height: 88px;
  background: rgba(230,180,34,0.09);
  border-radius: 22px;
  z-index: 2;
  pointer-events: none;
}
.section:nth-child(even)::before {
  left: unset;
  right: -50px;
  top: -36px;
  background: rgba(52,73,94,0.06);
}
@media (max-width: 900px) {
  .section::before {
    display: none;
  }
}
/* =============================
   END CSS for DulliSolan Style
   ============================= */
