/* CSS 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;
}
html {
  height: 100%;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  color: #27323C;
  background: #FFFDF9;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
*, *::before, *::after {
  box-sizing: inherit;
}
a {
  color: #1B3966;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF9900;
  text-decoration: underline;
  outline: none;
}

/* FONT IMPORTS (Google Fonts) */
@import url('https://fonts.googleapis.com/css?family=Oswald:400,600&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');

/* GENERAL UTILITIES */
.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', Arial, sans-serif;
  color: #1B3966;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  font-weight: 600;
}
h1 {
  font-size: 2.25rem;
  line-height: 1.15;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 14px;
}
@media (min-width: 600px) {
  h1 {
    font-size: 2.75rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.35rem;
  }
}
p {
  margin-bottom: 16px;
  color: #27323C;
  font-size: 1rem;
}
strong, b {
  font-weight: 700;
  color: #1B3966;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
  color: #27323C;
}
ul li, ol li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.7;
}
ul li img {
  width: 28px;
  height: 28px;
  margin-right: 8px;
  vertical-align: middle;
}
hr {
  border: none;
  border-top: 1px solid #EEF1ED;
  margin: 40px 0;
}

/* LAYOUT AND SECTIONS */
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #FFFDF9;
  border-radius: 20px;
  box-shadow: 0 4px 16px 0 rgba(255, 204, 91, 0.08);
  /* subtle warm shadow */
}
@media (max-width: 600px) {
  .section {
    padding: 32px 6px;
    margin-bottom: 36px;
  }
}

.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HERO BANNER */
.hero {
  background: linear-gradient(100deg, #FFCC5B 0%, #FFFDF9 100%);
  border-radius: 0 0 32px 32px;
  box-shadow: 0 6px 32px 0 rgba(255, 204, 91, 0.18);
  padding: 60px 0 40px 0;
  margin-bottom: 40px;
}
.hero h1 {
  color: #1B3966;
  line-height: 1.13;
}
.hero p {
  font-size: 1.13rem;
  color: #333;
  margin-bottom: 24px;
}
.hero .button {
  margin-top: 12px;
}
@media (max-width: 600px) {
  .hero {
    padding: 38px 0 28px 0;
  }
}

/* HEADER & NAVIGATION */
header {
  background: #FFCC5B;
  box-shadow: 0 2px 12px 0 rgba(27, 57, 102, 0.04);
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 70px;
}
.logo img {
  height: 48px;
  width: auto;
  border-radius: 0;
}
/* Main Navigation */
.main-navigation {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
.main-navigation a {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 500;
  color: #1B3966;
  border-radius: 8px;
  padding: 8px 16px;
  transition: background 0.2s, color 0.2s;
}
.main-navigation a:hover, .main-navigation a:focus {
  background: #FFEBBE;
  color: #914D00;
}
/* Primary CTA Button */
.button.primary {
  background: #1B3966;
  color: #FFFDF9;
  border-radius: 32px;
  padding: 12px 30px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  box-shadow: 0 4px 20px 0 rgba(27, 57, 102, 0.10);
  border: none;
  cursor: pointer;
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  outline: none;
  margin-left: 16px;
  text-align: center;
}
.button.primary:hover, .button.primary:focus {
  background: #FFCC5B;
  color: #1B3966;
  box-shadow: 0 6px 24px 0 rgba(255,204,91,0.15);
  transform: translateY(-2px) scale(1.03);
}
/* Regular Button Style */
.button,
.button.secondary {
  display: inline-block;
  background: #FFCC5B;
  color: #1B3966;
  border-radius: 32px;
  padding: 11px 28px;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 2px 10px 0 rgba(255,204,91, 0.10);
  cursor: pointer;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, transform 0.18s;
  outline: none;
  text-align: center;
}
.button.secondary:hover, .button.secondary:focus, .button:hover, .button:focus {
  background: #1B3966;
  color: #FFFDF9;
  box-shadow: 0 5px 18px 0 rgba(27, 57, 102, 0.13);
  transform: translateY(-1px) scale(1.03);
}

/* Burger Menu Button */
.mobile-menu-toggle {
  display: none;
  background: #1B3966;
  color: #FFFDF9;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 10px 0 rgba(27,57,102,0.10);
  margin-left: 18px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #FFCC5B;
  color: #1B3966;
}

/* RESPONSIVE HEADER NAV */
@media (max-width: 976px) {
  .main-navigation {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  header .button.primary {
    display: none;
  }
}
/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  z-index: 1800;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  background: #FFFDF9;
  box-shadow: 0 0 0 100vw rgba(27,57,102, 0.20);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.71,1.7,.78,1.15);
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0%);
  opacity: 1;
  pointer-events: auto;
  transition: transform 0.33s cubic-bezier(.46,.03,.52,.96), opacity 0.26s;
}
.mobile-menu-close {
  background: #1B3966;
  color: #FFFDF9;
  border: none;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  font-size: 1.7rem;
  margin: 24px 28px 0 0;
  box-shadow: 0 2px 10px 0 rgba(27,57,102,0.11);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #FFCC5B;
  color: #1B3966;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  width: 100%;
  margin-top: 52px;
  padding-left: 36px;
}
.mobile-nav a {
  color: #1B3966;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.42rem;
  font-weight: 500;
  border-radius: 14px;
  padding: 18px 22px;
  margin-left: 0;
  width: 90vw;
  transition: background 0.18s, color 0.18s;
  background: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #FFEBBE;
  color: #914D00;
}
@media (min-width: 976px) {
  .mobile-menu, .mobile-menu-close {
    display: none !important;
  }
}

/* FOOTER */
footer {
  background: #1B3966;
  color: #fff;
  padding: 48px 0 24px 0;
  box-shadow: 0 -2px 16px 0 rgba(27,57,102,0.08);
  border-radius: 30px 30px 0 0;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
}
.footer-branding img {
  height: 52px;
  width: auto;
  margin-bottom: 8px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.footer-nav a {
  color: #FFCC5B;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 8px;
  padding: 6px 12px;
  background: rgba(255, 204, 91, 0.07);
  transition: background 0.18s, color 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #FFCC5B;
  color: #1B3966;
}
.footer-legal {
  margin-top: 10px;
  font-size: 0.95rem;
  color: #EEF1ED;
}
@media (max-width: 700px) {
  footer .container {
    padding-top: 10px;
    gap: 16px;
  }
  .footer-branding img {
    height: 40px;
  }
}

/* CARD/GRID ALIGNMENTS & FLEXBOX LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 3px 15px 0 rgba(255,204,91,0.12);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section,
  .content-grid {
    flex-direction: column;
    gap: 20px;
  }
}
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-bottom: 26px;
  justify-content: flex-start;
}
.service-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px 0 rgba(255, 204, 91, 0.11);
  flex: 1 1 240px;
  min-width: 240px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 26px 22px 20px 22px;
  margin-bottom: 10px;
  transition: box-shadow 0.18s, transform 0.18s;
  border: 1.5px solid #FFEBBE;
}
.service-item img {
  width: 48px;
  height: 48px;
  margin-bottom: 6px;
  border-radius: 14px;
  box-shadow: 0 1px 6px 0 rgba(255,204,91,0.13);
}
.service-item h3 {
  margin-bottom: 6px;
  font-size: 1.18rem;
  color: #1B3966;
}
.service-item p {
  color: #27323C;
  font-size: 0.99rem;
}
.service-item strong {
  color: #FF9900;
}
.service-item:hover, .service-item:focus {
  box-shadow: 0 5px 28px 0 rgba(255,204,91,0.15), 0 2px 16px 0 rgba(27,57,102,0.06);
  transform: translateY(-2px) scale(1.03);
  z-index: 3;
}
@media (max-width: 900px) {
  .services-grid {
    flex-direction: column;
    gap: 16px;
  }
  .service-item {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}

/* FEATURE/LIST SECTIONS */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.text-section {
  margin-bottom: 22px;
}

/* TESTIMONIALS */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px 0 rgba(255, 204, 91, 0.14);
  padding: 20px 34px;
  margin-bottom: 20px;
  max-width: 730px;
}
.testimonial-card p {
  font-size: 1.11rem;
  font-style: italic;
  color: #1B3966;
  margin-bottom: 10px;
}
.testimonial-card span {
  font-size: 0.97rem;
  color: #914D00;
  font-family: 'Oswald', Arial, sans-serif;
  letter-spacing: 0.04em;
}
@media (max-width: 700px) {
  .testimonial-card {
    flex-direction: column;
    gap: 6px;
    padding: 16px 10px;
    max-width: 100%;
  }
}

/* CONTACT DETAILS */
.contact-details {
  background: #FFEBBE;
  color: #1B3966;
  border-radius: 12px;
  padding: 18px 22px;
  margin-bottom: 20px;
  font-size: 1rem;
  box-shadow: 0 1px 7px 0 rgba(255,204,91,0.11);
  display: flex;
  flex-direction: column;
  gap: 10px;
  word-break: break-word;
}
.contact-details a {
  color: #1B3966;
  text-decoration: underline;
}

/* TABLE STYLES (PRICING) */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 22px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 1px 9px 0 rgba(255,204,91,0.11);
}
.pricing-table th {
  background: #FFCC5B;
  color: #1B3966;
  padding: 14px 12px;
  font-size: 1.05rem;
  font-weight: 600;
  text-align: left;
  border-radius: 15px 15px 0 0;
}
.pricing-table td {
  padding: 13px 12px;
  font-size: 1rem;
  color: #27323C;
}
.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid #EEF1ED;
}
@media (max-width: 700px) {
  .pricing-table, .pricing-table thead, .pricing-table tbody, .pricing-table th, .pricing-table td, .pricing-table tr {
    display: block;
    width: 100%;
  }
  .pricing-table tr {
    margin-bottom: 16px;
  }
  .pricing-table th {
    border-radius: 0;
    background: #FFEBBE;
    color: #1B3966;
  }
  .pricing-table th, .pricing-table td {
    padding: 11px 5px;
  }
}

/* FORMS (if any used on other forms/pages) */
input, textarea, select, button {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  border-radius: 9px;
  padding: 8px 12px;
  border: 1.5px solid #EEF1ED;
  margin-bottom: 18px;
  outline: none;
  background: #FFFDF9;
  color: #1B3966;
  transition: border 0.16s, box-shadow 0.16s;
}
input:focus, textarea:focus, select:focus {
  border: 1.5px solid #FFCC5B;
  box-shadow: 0 1px 5px 0 rgba(255,204,91,0.13);
}
button:active {
  opacity: 0.93;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #FFFDF8;
  box-shadow: 0 -2px 28px 0 rgba(255,204,91,0.17);
  border-radius: 20px 20px 0 0;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2000;
  gap: 14px;
  animation: fadeInSlideUp 0.5s;
}
@keyframes fadeInSlideUp {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner p {
  color: #27323C;
  font-size: 1rem;
  text-align: center;
}
.cookie-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}
.cookie-actions .button,
.cookie-actions .button.secondary {
  padding: 7px 22px;
  border-radius: 22px;
  font-size: 0.99rem;
}
.cookie-actions .accept {
  background: #1B3966;
  color: #fff;
}
.cookie-actions .accept:hover, .cookie-actions .accept:focus {
  background: #FFCC5B;
  color: #1B3966;
}
.cookie-actions .reject {
  background: #FFCC5B;
  color: #1B3966;
}
.cookie-actions .reject:hover, .cookie-actions .reject:focus {
  background: #1B3966;
  color: #fff;
}
.cookie-actions .settings {
  background: #FFFDF9;
  color: #1B3966;
  border: 1px solid #1B3966;
}
.cookie-actions .settings:hover {
  background: #FFEBBE;
}
/* Hide by default, show with .show-cookies */
.cookie-banner {
  display: none;
}
.cookie-banner.show-cookies {
  display: flex;
}

/* COOKIE MODAL OVERLAY */
.cookie-modal-overlay {
  position: fixed;
  z-index: 2100;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(27,57,102,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  animation: fadeInModal 0.46s;
}
@keyframes fadeInModal {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal-overlay.show {
  display: flex;
}
.cookie-modal {
  background: #fffdf9;
  max-width: 420px;
  border-radius: 20px;
  box-shadow: 0 8px 40px 0 rgba(27, 57, 102, 0.23);
  padding: 38px 28px 28px;
  display: flex;
  flex-direction: column;
  z-index: 2200;
  animation: cookiePopIn 0.35s;
}
@keyframes cookiePopIn {
  from { opacity: 0; transform: translateY(60px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.35rem;
  color: #1B3966;
  margin-bottom: 12px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.cookie-category input[type='checkbox'] {
  accent-color: #FFCC5B;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  margin-right: 8px;
}
.cookie-modal .button {
  margin-top: 22px;
  width: 100%;
}
.cookie-modal .close-modal {
  position: absolute;
  right: 22px;
  top: 22px;
  background: transparent;
  color: #1B3966;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}
.cookie-modal .close-modal:hover{
  color: #FFCC5B;
}
@media (max-width: 600px) {
  .cookie-modal {
    width: 95vw;
    max-width: 98vw;
    padding: 23px 7px 14px 7px;
    min-width: 0;
  }
}

/* SPACING STANDARDIZATION & GAP UTILITIES */
.gap-8  { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-32 { gap: 32px; }

/* Responsive adjustments for containers/sections */
@media (max-width: 650px) {
  .container {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* Misc FIXES for Alignment/Mobile */
@media (max-width: 900px) {
  header .container {
    flex-wrap: wrap;
    gap: 6px;
  }
}
@media (max-width: 480px) {
  h1 {
    font-size: 1.45rem;
  }
  h2 {
    font-size: 1.11rem;
  }
}

/* Accessibility & Focus Styles */
a:focus, button:focus, input:focus {
  outline: 2.5px solid #FFCC5B;
  outline-offset: 2px;
}
::-webkit-input-placeholder { color: #8C7960; }
::-moz-placeholder { color: #8C7960; }
:-ms-input-placeholder { color: #8C7960; }
::placeholder { color: #8C7960; }

/* Hide visually but keep for screen readers */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Hide scrollbars in overlays */
.mobile-menu, .cookie-modal-overlay {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.mobile-menu::-webkit-scrollbar, .cookie-modal-overlay::-webkit-scrollbar {
  display: none;
}
section {
  padding: 15px;
}
/* --- END OF STYLE.CSS --- */
