/* ================================================================
  CSS Reset & Normalize
================================================================ */
html {
  box-sizing: border-box;
  font-size: 16px;
}
*, *::before, *::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  background: #f8fafc;
  color: #013247;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #013247;
  margin-bottom: 16px;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.1;
}
h2 {
  font-size: 2rem;
  line-height: 1.15;
}
h3 {
  font-size: 1.4rem;
}
strong, b {
  font-weight: 700;
}
a {
  color: #013247;
  text-decoration: none;
  transition: color 0.2s;
}

/* ================================================================
  General Layout Containers
================================================================ */
.container {
  max-width: 1200px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.card-container,
.card-grid,
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(1, 50, 71, 0.06);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.card:hover {
  box-shadow: 0 8px 32px rgba(1, 50, 71, 0.13);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  padding: 20px;
}

.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;
}
.feature-list,
ul.feature-list,
ul.feature-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
ul.feature-list > li,
ul.feature-grid > li {
  background: #fff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(1, 50, 71, 0.06);
  flex: 1 1 260px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  position: relative;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  margin-bottom: 24px;
  background: #F6FBFF;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(1, 50, 71, 0.08);
  color: #013247;
}
.testimonial-card strong {
  color: #013247;
}
.testimonial-card div:last-child {
  font-size: 1.1rem;
  color: #f3ce84;
  letter-spacing: 0.08em;
}

/* ================================================================
  Header & Navigation
================================================================ */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(1,50,71,0.04);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 40;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 16px 0;
}
.main-nav a img {
  height: 40px;
  width: auto;
  margin-right: 20px;
  vertical-align: middle;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: 8px;
  transition: background 0.16s, color 0.16s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #f6fbff;
  color: #78C1E1;
}
.main-nav a.cta.primary {
  background: #013247;
  color: #fff;
  border-radius: 24px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(1,50,71,0.06);
  margin-left: 12px;
}
.main-nav a.cta.primary:hover,
.main-nav a.cta.primary:focus {
  background: #78C1E1;
  color: #013247;
  box-shadow: 0 4px 24px rgba(120, 193, 225, 0.13);
}
.main-nav a.cta.secondary {
  background: #78C1E1;
  color: #013247;
  border-radius: 24px;
  font-weight: 700;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(120, 193, 225, 0.09);
}
.main-nav a.cta.secondary:hover,
.main-nav a.cta.secondary:focus {
  background: #013247;
  color: #fff;
  box-shadow: 0 4px 20px rgba(1,50,71,0.15);
}

/* ================================================================
  Mobile Menu
================================================================ */
.mobile-menu-toggle {
  display: none;
  background: #78C1E1;
  color: #013247;
  font-size: 2rem;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(120,193,225,0.18);
  cursor: pointer;
  margin-left: auto;
  transition: background 0.18s, color 0.18s;
  z-index: 2003;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #013247;
  color: #fff;
}
.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #F6FBFF;
  box-shadow: 0 0 40px rgba(1,50,71,0.17);
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(.65,.04,.29,.97);
  z-index: 2000;
  padding: 28px 0 0 0;
  visibility: hidden;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
}
.mobile-menu-close {
  background: none;
  color: #013247;
  border: none;
  font-size: 2rem;
  margin: 0 22px 0 auto;
  cursor: pointer;
  z-index: 2001;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 80vw;
  max-width: 400px;
  margin: 32px auto 0 auto;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: #013247;
  padding: 14px 22px;
  border-radius: 12px;
  text-align: left;
  transition: background 0.18s, color 0.18s;
}
.mobile-nav a:hover,
.mobile-nav a:focus {
  background: #78C1E1;
  color: #fff;
}

/* ================================================================
  Hero Section
================================================================ */
.hero {
  background: linear-gradient(90deg, #F3CE84 0%, #78C1E1 90%);
  border-radius: 0 0 42px 42px;
  min-height: 340px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}
.hero h1 {
  color: #013247;
  margin-bottom: 16px;
  font-size: 2.3rem;
  text-shadow: 0 1px 0 #fff2, 0 4px 24px #01324711;
}
.hero p {
  color: #013247b3;
  font-size: 1.15rem;
  margin-bottom: 24px;
}
.hero .cta.primary {
  margin-top: 8px;
}

/* ================================================================
  Features & Service Areas
================================================================ */
.features {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(120,193,225,0.09);
  margin-bottom: 60px;
  padding: 40px 20px;
}
.features .container > .content-wrapper > h2 {
  margin-bottom: 26px;
}
.services {
  background: #F6FBFF;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
}

ul.feature-list > li img,
ul.feature-grid > li img {
  height: 48px;
  margin-bottom: 8px;
  border-radius: 8px;
  background: #f8fafc;
  box-shadow: 0 2px 10px rgba(1,50,71,0.10);
}
ul.feature-list > li h3,
ul.feature-grid > li h3 {
  font-size: 1.12rem;
  font-family: 'Montserrat', Arial, sans-serif;
  margin-bottom: 5px;
}

ul.feature-list > li p,
ul.feature-grid > li p {
  font-size: 1rem;
  color: #28415a;
}

.value-icons, .skill-icons {
  display: flex;
  gap: 18px;
  justify-content: flex-start;
  margin: 16px 0 14px 0;
}
.value-icons img, .skill-icons img {
  height: 40px;
}

/* ================================================================
  CTA Sections
================================================================ */
.cta {
  background: linear-gradient(90deg, #78C1E1 30%, #F3CE84 100%);
  border-radius: 22px;
  box-shadow: 0 4px 24px rgba(120, 193, 225, 0.12);
  margin-bottom: 60px;
  padding: 40px 20px;
  text-align: center;
  display: flex;
  justify-content: center;
}
.cta h2 {
  color: #013247;
  margin-bottom: 20px;
}
.cta .cta.secondary {
  display: inline-flex;
  align-items: center;
  background: #013247;
  color: #fff;
  padding: 14px 38px;
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.17rem;
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(1,50,71,0.07);
  transition: background 0.17s, color 0.17s;
}
.cta .cta.secondary:hover,
.cta .cta.secondary:focus {
  background: #78C1E1;
  color: #013247;
}

/* ================================================================
  Thank You, Legal, and Contact Sections
================================================================ */
.thankyou {
  background: #F6FBFF;
  border-radius: 22px;
  padding: 60px 20px;
  margin-bottom: 60px;
  min-height: 320px;
}
.legal {
  background: #fff;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 12px rgba(1,50,71,0.04);
}
.contact {
  background: #F6FBFF;
  border-radius: 22px;
  margin-bottom: 60px;
  padding: 40px 20px;
}
.text-section h3 {
  margin-top: 20px;
  margin-bottom: 8px;
}
.text-section ul {
  list-style: disc inside;
  margin-left: 16px;
  margin-bottom: 10px;
}
.text-section p,
.text-section li {
  font-size: 1rem;
  color: #28415a;
}

/* ================================================================
  Footer
================================================================ */
footer {
  background: linear-gradient(90deg, #013247 80%, #78C1E1 100%);
  color: #fff;
  padding-top: 36px;
  padding-bottom: 24px;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px 24px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
}
.footer-content > a img {
  height: 50px;
  margin-right: 0;
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 0 0 10px 0;
}
.footer-links a {
  color: #fff;
  opacity: 0.92;
  font-size: 1rem;
  transition: opacity 0.17s;
}
.footer-links a:hover,
.footer-links a:focus {
  opacity: 1;
  text-decoration: underline;
}
.contact-brief {
  font-size: 1rem;
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 9px;
}
.footer-social a img {
  height: 32px;
  opacity: 0.88;
  transition: opacity 0.18s, transform 0.14s;
}
.footer-social a:hover img {
  opacity: 1;
  transform: translateY(-4px) scale(1.07);
}

/* ================================================================
  Buttons and Interactive Elements
================================================================ */
.cta, .cta.primary, .cta.secondary, button, [type="submit"] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  outline: none;
  transition: background 0.19s, color 0.19s, box-shadow 0.18s, transform 0.10s;
  padding: 12px 30px;
  border-radius: 22px;
  background: #013247;
  color: #fff;
  box-shadow: 0 2px 8px rgba(1,50,71,0.08);
  display: inline-block;
  text-align: center;
}
.cta.primary {
  background: #013247;
  color: #fff;
}
.cta.primary:hover,
.cta.primary:focus {
  background: #78C1E1;
  color: #013247;
  transform: translateY(-1px) scale(1.03);
  box-shadow: 0 4px 18px rgba(120,193,225,0.18);
}
.cta.secondary {
  background: #78C1E1;
  color: #013247;
}
.cta.secondary:hover,
.cta.secondary:focus {
  background: #013247;
  color: #fff;
}
button:active, .cta:active {
  transform: scale(0.98);
}

/* ================================================================
  Cookie Consent Banner
================================================================ */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: linear-gradient(90deg, #013247 80%, #78C1E1 100%);
  color: #fff;
  padding: 22px 20px 22px 20px;
  box-shadow: 0 -4px 36px rgba(1,50,71,0.11);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  font-size: 1rem;
  z-index: 3000;
  transition: transform 0.3s;
}
.cookie-banner.hide {
  transform: translateY(120%);
  pointer-events: none;
  opacity: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-btn {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 22px;
  padding: 12px 26px;
  cursor: pointer;
  margin: 0;
  background: #F3CE84;
  color: #013247;
  box-shadow: 0 2px 8px rgba(243,206,132,0.10);
  transition: background 0.16s, color 0.16s;
}
.cookie-btn.accept {
  background: #78C1E1;
  color: #013247;
}
.cookie-btn.reject {
  background: #e8eaea;
  color: #013247;
}
.cookie-btn.settings {
  background: transparent;
  border: 2px solid #FFF;
  color: #fff;
}
.cookie-btn:hover,
.cookie-btn:focus {
  opacity: 0.87;
}

/* Cookie Preferences Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 3020;
  align-items: center;
  justify-content: center;
  background: rgba(1,50,71,0.45);
}
.cookie-modal.open {
  display: flex;
  animation: fadeIn 0.22s;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-dialog {
  background: #fff;
  color: #013247;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(1,50,71,0.22);
  max-width: 420px;
  width: 90vw;
  padding: 36px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  animation: modalIn 0.28s cubic-bezier(.51,.19,.08,.97);
}
@keyframes modalIn {
  from { transform: scale(0.92) translateY(30px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.6rem;
  color: #013247;
  cursor: pointer;
}
.cookie-settings-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cookie-setting {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  padding: 8px 0;
}
.cookie-setting label {
  color: #013247;
  font-weight: 400;
}
.cookie-switch {
  position: relative;
  width: 38px;
  height: 22px;
  display: inline-block;
}
.cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e8eaea;
  border-radius: 22px;
  transition: background 0.2s;
}
.cookie-switch input:checked + .cookie-slider {
  background: #78C1E1;
}
.cookie-slider:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 3px;
  width: 16px;
  height: 16px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(1,50,71,0.09);
  border-radius: 50%;
  transition: transform 0.2s;
}
.cookie-switch input:checked + .cookie-slider:before {
  transform: translateX(16px);
}
.cookie-setting .locked-label {
  color: #b8b9bb;
}

/* ================================================================
  Responsive Queries - Mobile-first
================================================================ */
@media (max-width: 1024px) {
  .container {
    max-width: 940px;
  }
  .footer-content {
    gap: 30px 8px;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
  .footer-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .container {
    padding-left: 12px;
    padding-right: 12px;
  }
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 18px;
    right: 20px;
  }
  header {
    padding-bottom: 12px;
    z-index: 2020;
  }
  .content-wrapper {
    gap: 16px;
  }
  .section, .features, .services, .cta, .legal, .thankyou, .contact {
    padding: 26px 6px;
    margin-bottom: 40px;
  }
  .feature-list, .feature-grid, .card-grid, .card-container {
    flex-direction: column;
    gap: 16px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  .hero {
    min-height: 200px;
    border-radius: 0 0 22px 22px;
  }
  .hero .container {
    padding-top: 32px;
    padding-bottom: 32px;
    gap: 7px;
  }
  .footer-content {
    flex-direction: column;
    gap: 14px;
  }
  .footer-content > a img{
    height: 38px;
  }
  .cookie-banner .cookie-btns{
    flex-direction: column;
    gap: 8px;
  }
}
@media (max-width: 560px) {
  .container {
    padding-left: 3vw;
    padding-right: 3vw;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  .cta .cta.secondary {
    font-size: .98rem;
    padding: 10px 16px;
  }
  .thankyou, .section, .features, .services, .cta, .legal, .contact {
    padding: 16px 2vw;
  }
  .cookie-banner {
    font-size: .97rem;
    padding: 12px 4vw;
  }
}
/* END OF STYLES */
