/* RESET & BASIC NORMALIZATION */
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 {
  font-size: 16px;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  background: #F5F5F5;
  color: #25417A;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: #25417A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #C43D00;
}
ul, ol {
  padding-left: 32px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
input, textarea, button, select {
  font-family: inherit;
  font-size: 1rem;
  border-radius: 12px;
  outline: none;
}
textarea {
  resize: vertical;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}
::-webkit-input-placeholder { color: #697DAB; }
::-moz-placeholder { color: #697DAB; }
:-ms-input-placeholder { color: #697DAB; }
::placeholder { color: #697DAB; }

/* BRAND COLORS (fallbacks for custom props) */
:root {
  --brand-primary: #25417A;
  --brand-secondary: #F5F5F5;
  --brand-accent: #C43D00;
  --brand-orange: #E15529;
  --brand-white: #FFFFFF;
  --brand-grey: #F9F8F6;
  --shadow: 0 2px 12px rgba(197,61,0,0.06), 0 1.5px 6px rgba(37,65,122,0.06);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #25417A;
  font-weight: 700;
  letter-spacing: 0.5px;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}
h3 {
  font-size: 1.375rem;
  margin-bottom: 14px;
}
h4 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}
p, .brand-contact span, .footer-links a, .footer-nav a {
  font-size: 1rem;
}
main p, .content-wrapper > p {
  color: #274777;
  margin-bottom: 16px;
}
strong {
  font-weight: 700;
}

/* LAYOUTS & CONTAINERS */
.container {
  max-width: 1080px;
  padding: 0 20px;
  margin: 0 auto;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--brand-white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  flex: 1 1 280px;
  transition: box-shadow 0.25s;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.card:hover {
  box-shadow: 0 4px 32px rgba(197,61,0,0.10), 0 2.5px 12px rgba(37,65,122,0.08);
}
.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;
  gap: 16px;
  padding: 20px;
  background: #FFF6F2;
  border-radius: 20px;
  box-shadow: 0 2px 10px rgba(197,61,0,0.08);
  margin-bottom: 20px;
  min-width: 240px;
  max-width: 500px;
  color: #2c3659;
}
.testimonial-meta {
  color: #C43D00;
  font-weight: 600;
  font-size: 0.97rem;
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  list-style: none;
}
.service-list li {
  background: #F9F8F6;
  border-radius: 18px;
  box-shadow: 0 1.5px 6px rgba(37,65,122,0.05);
  padding: 20px 22px;
  flex: 1 1 260px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* HEADER & NAVIGATION */
header {
  background: var(--brand-white);
  box-shadow: 0 2px 10px rgba(37,65,122,0.07);
  position: sticky;
  top: 0;
  z-index: 120;
}
.logo img {
  display: block;
  height: 44px;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 80px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  color: var(--brand-primary);
  padding: 6px 10px;
  border-radius: 10px;
  transition: background 0.21s, color 0.21s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #FFF6F2;
  color: #C43D00;
}
.cta-btn {
  background: var(--brand-accent);
  color: var(--brand-white);
  font-family: 'Oswald', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  border: none;
  border-radius: 18px;
  padding: 10px 32px;
  box-shadow: 0 3px 16px rgba(197,61,0,0.12);
  margin-left: 10px;
  transition: background 0.21s, transform 0.14s;
  letter-spacing: 0.5px;
  display: inline-block;
}
.cta-btn:hover, .cta-btn:focus {
  background: #E15529;
  color: #fff;
  transform: translateY(-2px) scale(1.04);
}

/* MOBILE NAVIGATION */
.mobile-menu-toggle {
  display: none;
  font-size: 2rem;
  background: #FFF6F2;
  color: #C43D00;
  border-radius: 14px;
  padding: 3px 13px 3px 11px;
  border: none;
  box-shadow: 0 2px 8px rgba(37,65,122,0.06);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(37,65,122,0.90);
  z-index: 220;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  transform: translateX(100%);
  transition: transform 0.33s cubic-bezier(.23,1.09,.71,1.23);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-nav {
  background: #FFF6F2;
  padding: 44px 24px 28px 24px;
  height: 100vh;
  width: 91vw;
  max-width: 330px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  border-top-left-radius: 34px;
  border-bottom-left-radius: 34px;
  box-shadow: -2px 0 30px rgba(197,61,0,0.12);
}
.mobile-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #25417A;
  font-size: 1.25rem;
  padding: 15px 10px;
  border-radius: 14px;
  transition: background 0.21s, color 0.21s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FEF1EA;
  color: #C43D00;
}
.mobile-menu-close {
  background: #C43D00;
  color: #fff;
  font-size: 2.1rem;
  border: none;
  border-radius: 16px;
  position: absolute;
  top: 18px;
  right: 14px;
  z-index: 10;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(37,65,122,0.10);
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E15529;
}

/* MAIN & SECTIONS */
main {
  flex: 1 1 auto;
}
section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--brand-white);
  border-radius: 28px;
  box-shadow: var(--shadow);
  display: flex;
  justify-content: center;
  align-items: stretch;
}

/* BRAND CONTACT AND ICONS */
.brand-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
  margin: 22px 0 0 0;
  color: #174C90;
}
.brand-contact img {
  width: 20px;
  margin-right: 8px;
  vertical-align: middle;
}
.brand-contact span {
  display: flex;
  align-items: center;
  font-size: 1rem;
  gap: 6px;
}

/* FOOTER */
footer {
  background: #FEF1EA;
  margin-top: 60px;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -2px 12px rgba(37,65,122,0.08);
}
footer .container {
  padding: 40px 20px 30px 20px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
  align-items: flex-start;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: #274777;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.05rem;
  padding: 4px 6px;
  border-radius: 8px;
  transition: background 0.19s, color 0.19s;
}
.footer-nav a:hover {
  color: #C43D00;
  background: #fff6f2;
}
.footer-links {
  color: #A07558;
  font-size: .97rem;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-links a {
  color: #A07558;
  transition: color 0.2s;
  font-size: .97rem;
}
.footer-links a:hover { color: #C43D00; }

/* FORMS */
form {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}
input[type="text"], input[type="email"], textarea {
  border: 1.4px solid #E6E8EF;
  background: #F9F8F6;
  font-size: 1.05rem;
  padding: 12px 14px;
  margin-bottom: 8px;
  border-radius: 14px;
  transition: border 0.17s, background 0.2s;
}
input:focus, textarea:focus {
  border: 1.6px solid #C43D00;
  background: #FFF6F2;
}
button[type="submit"], form .cta-btn {
  align-self: flex-start;
  margin-top: 7px;
}

/* ANIMATIONS AND TRANSITIONS */
.section, .card, .testimonial-card, .service-list li, .cta-btn, .mobile-menu, .mobile-menu-close, .cookie-banner, .cookie-modal {
  transition: box-shadow 0.22s, background 0.19s, color 0.18s, border 0.18s, transform 0.18s;
}

/* HOVER EFFECTS */
.service-list li, .card, .testimonial-card {
  cursor: default;
}
.service-list li:hover {
  box-shadow: 0 4px 20px rgba(197,61,0,0.11);
  background: #FFF6F2;
}
.testimonial-card:hover {
  transform: translateY(-3px) scale(1.015);
  box-shadow: 0 8px 40px rgba(197,61,0,0.13);
}

/* COOKIE CONSENT BANNER & MODAL */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 500;
  background: #FFF6F2;
  color: #274777;
  box-shadow: 0 -4px 18px rgba(37,65,122,0.08);
  padding: 22px 6vw 22px 6vw;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 28px;
  justify-content: space-between;
  border-radius: 16px 16px 0 0;
  font-size: 1.01rem;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
}
.cookie-btn-accept, .cookie-btn-reject, .cookie-btn-settings {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 14px;
  padding: 8px 22px;
  margin: 0 2px;
  box-shadow: 0 1px 6px rgba(37,65,122,0.08);
  transition: background 0.19s, color 0.15s, transform 0.12s;
}
.cookie-btn-accept {
  background: #C43D00;
  color: #fff;
}
.cookie-btn-accept:hover,
.cookie-btn-accept:focus {
  background: #E15529;
}
.cookie-btn-reject {
  background: #FFF6F2;
  color: #C43D00;
  border: 1.5px solid #C43D00;
}
.cookie-btn-reject:hover,
.cookie-btn-reject:focus {
  background: #F9F8F6;
  color: #E15529;
}
.cookie-btn-settings {
  background: #F9F8F6;
  color: #25417A;
}
.cookie-btn-settings:hover,
.cookie-btn-settings:focus {
  background: #E6E8EF;
  color: #C43D00;
}

.cookie-modal-backdrop {
  position: fixed;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(37,65,122,0.35);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cookie-modal {
  background: #FEF1EA;
  color: #3c444b;
  padding: 34px 26px 28px 26px;
  border-radius: 24px;
  box-shadow: 0 4px 28px rgba(197,61,0,0.15);
  min-width: 290px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: cookieModalIn 0.38s cubic-bezier(.23,1.09,.71,1.23);
}
@keyframes cookieModalIn {
  from { opacity: 0; transform: scale(.91) translateY(40px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h3 {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.14rem;
  margin-bottom: 8px;
  color: #25417A;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-toggle {
  width: 38px;
  height: 22px;
  border-radius: 14px;
  border: none;
  background: #E15529;
  position: relative;
  cursor: pointer;
  transition: background 0.18s;
}
.cookie-toggle[aria-checked="false"] {
  background: #E6E8EF;
}
.cookie-toggle-switch {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: left 0.18s;
}
.cookie-toggle[aria-checked="true"] .cookie-toggle-switch {
  left: 18px;
}
.cookie-toggle[aria-checked="false"] .cookie-toggle-switch {
  left: 2px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-close {
  background: #C43D00;
  color: #fff;
  font-size: 1.13rem;
  border-radius: 10px;
  border: none;
  padding: 6px 16px 6px 16px;
  align-self: flex-end;
  transition: background 0.18s;
}
.cookie-modal-close:hover,
.cookie-modal-close:focus {
  background: #E15529;
}

/* RESPONSIVE DESIGN (MOBILE FIRST) */
@media (max-width: 1120px) {
  .container {
    max-width: 100vw;
    padding-left: 12px;
    padding-right: 12px;
  }
}
@media (max-width: 900px) {
  .header .container, header .container, .footer .container, footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
}
@media (max-width: 800px) {
  .service-list {
    flex-direction: column;
    gap: 20px;
  }
  .service-list li {
    flex: 1 1 99%;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 20px;
  }
  .section, section {
    padding: 28px 7px;
    margin-bottom: 38px;
  }
  .brand-contact {
    gap: 16px;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 10px;
  }
  .content-wrapper {
    gap: 14px;
  }
  .testimonial-card {
    min-width: 160px;
    max-width: 99vw;
    padding: 14px 12px;
  }
  .footer-nav, .footer-links {
    gap: 9px;
    flex-wrap: wrap;
    font-size: 15px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .container {
    padding: 0 7px;
  }
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
  }
}
@media (max-width: 520px) {
  h1 {
    font-size: 1.7rem;
    margin-bottom: 18px;
  }
  h2 {
    font-size: 1.22rem;
    margin-bottom: 10px;
  }
  .logo img {
    height: 34px;
  }
  .section, section {
    padding: 18px 3px;
    margin-bottom: 18px;
    border-radius: 14px;
  }
  .footer {
    border-radius: 14px 14px 0 0;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 16px 4vw 16px 4vw;
    font-size: 0.93rem;
  }
  .cookie-modal {
    padding: 22px 8px 18px 8px;
    min-width: 160px;
    max-width: 97vw;
  }
}

/* MISCELLANEOUS & UTILITIES */
::-webkit-scrollbar {
  width:9px;
  background: #F5F5F5;
}
::-webkit-scrollbar-thumb {
  background: #E6E8EF;
  border-radius: 8px;
}
.text-section {
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}

/* TWEAKS FOR ACCESSIBILITY AND USABILITY */
:focus-visible {
  outline: 2.5px dashed #E15529;
  outline-offset: 2px;
}

/* VISUAL HIERARCHY SPACING (FOR 8/16/24/32/48) */
.sp-8 { margin-bottom: 8px !important; }
.sp-16 { margin-bottom: 16px !important; }
.sp-24 { margin-bottom: 24px !important; }
.sp-32 { margin-bottom: 32px !important; }
.sp-48 { margin-bottom: 48px !important; }

/* END */
