/* CSS RESET & 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 {
  font-size: 16px;
  scroll-behavior: smooth;
  background: #f6f8fb;
}
body {
  font-family: 'Open Sans', Arial, sans-serif;
  color: #1D4476;
  background: linear-gradient(135deg, #f6f8fb 0%, #e7eefa 100%);
  min-height: 100vh;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #1D4476;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #2c75b5;
  outline: none;
}
ul, ol {
  padding-left: 24px;
  margin-bottom: 20px;
}
li {
  margin-bottom: 12px;
}
input, textarea, select, button {
  font-family: inherit;
  font-size: 1em;
  border-radius: 4px;
  outline: none;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* BRAND COLORS & UTILITIES */
:root {
  --primary: #1D4476;
  --secondary: #83B8DE;
  --accent: #FFFFFF;
  --shadow: 0 4px 16px 0 rgba(30,60,90,0.08);
  --radius: 18px;
  --radius-sm: 8px;
  --transition-fast: 0.18s cubic-bezier(.4,0,.2,1);
  --transition: 0.32s cubic-bezier(.4,0,.2,1);
  --gradient: linear-gradient(94deg, #93cbf8 0%, #1d4476 80%);
  --gradient-accent: linear-gradient(94deg, #83B8DE 0%, #1D4476 100%);
}

/* GENERAL CONTAINERS & LAYOUTS */
.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: var(--radius);
  background: var(--accent);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* HEADER & NAV */
header {
  width: 100%;
  background: var(--gradient-accent);
  box-shadow: 0 2px 16px 0 rgba(30,60,90,.03);
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 80px;
}
header img {
  height: 48px;
  width: auto;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.08em;
  color: var(--accent);
  position: relative;
  padding: 4px 8px;
  transition: color var(--transition-fast);
}
header nav a::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: width var(--transition-fast);
  border-radius: 2px;
}
header nav a:hover::after, header nav a:focus::after {
  width: 100%;
}
.cta-btn {
  background: var(--gradient);
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  letter-spacing: 0.03em;
  font-size: 1em;
  padding: 12px 30px;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 12px 0 rgba(31,89,170,0.08);
  transition: background var(--transition), box-shadow var(--transition);
  margin-left: 12px;
  border: none;
  display: inline-block;
  text-align: center;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(94deg, #5497d3 0%, #153154 100%);
  box-shadow: 0 4px 18px 0 rgba(27,80,153,0.13);
  color: #fff;
}

/* MOBILE MENU STYLES */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  color: var(--primary);
  font-size: 2.1rem;
  border-radius: 50%;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast);
  z-index: 1050;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #b4daf3;
}
@media (max-width: 1020px) {
  .mobile-menu-toggle {
    display: flex;
  }
  header nav, .cta-btn {
    display: none;
  }
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: var(--gradient-accent);
  box-shadow: 0 8px 32px rgba(30,60,90,0.08);
  display: flex;
  flex-direction: column;
  z-index: 1990;
  transform: translateX(-100vw);
  transition: transform .32s cubic-bezier(.4,0,.2,1);
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: var(--accent);
  align-self: flex-end;
  margin: 24px 24px 0 0;
  padding: 8px;
  border-radius: 50%;
  cursor: pointer;
  transition: background var(--transition-fast);
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #275078;
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 40px;
  align-items: center;
}
.mobile-nav a {
  font-size: 1.3em;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--accent);
  font-weight: 500;
  padding: 12px 30px;
  border-radius: 15px;
  transition: background var(--transition-fast), color var(--transition-fast);
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #5497d3;
  color: #fff;
}

/* MAIN TYPOGRAPHY & HEADINGS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #1D4476;
  font-weight: 700;
  line-height: 1.15;
}
h1 {
  font-size: 2.4rem;
  margin-bottom: 18px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 14px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
h4, h5, h6 {
  font-size: 1.1rem;
}
p, ul, ol {
  font-size: 1rem;
  color: #24476F;
}
strong {
  font-weight: 700;
}

@media (max-width: 560px) {
  h1 { font-size: 1.56rem; }
  h2 { font-size: 1.23rem; }
  .container { padding: 0 10px; }
}

/* FLEXBOX LAYOUT PATTERNS */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #f2f8fe;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 8px 0 rgba(31,89,170,0.05);
  padding: 24px 20px 20px 24px;
  max-width: 345px;
  min-width: 200px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
}
.feature-item img {
  width: 40px;
  height: 40px;
}
.feature-item:hover, .feature-item:focus-visible {
  box-shadow: 0 6px 24px 0 rgba(31,89,170,0.13);
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.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: center;
  gap: 20px;
  padding: 20px 30px;
  background: #f6f8fb;
  border-radius: var(--radius-sm);
  box-shadow: 0 2px 10px 0 rgba(12,50,87,0.07);
  margin-bottom: 20px;
  transition: box-shadow var(--transition);
  min-width: 235px;
  max-width: 400px;
  flex: 1 1 250px;
}
.testimonial-card:hover, .testimonial-card:focus-visible {
  box-shadow: 0 8px 28px 0 rgba(19,54,104,0.15);
}


/****** TESTIMONIAL SLIDER & LIST ******/
.testimonial-slider, .testimonial-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  justify-content: flex-start;
}
.stars {
  display: flex;
  gap: 4px;
  margin: 6px 0 0 0;
}
.customer-name {
  font-size: 1em;
  color: #275078;
  font-weight: 500;
}

.company-logos {
  display: flex;
  gap: 20px;
  align-items: center;
  margin: 28px 0 0 0;
  flex-wrap: wrap;
}
.company-logos img {
  width: 62px;
  height: auto;
  opacity: 0.8;
}

.project-summaries {
  margin-top: 38px;
  background: #e7edf7;
  border-radius: var(--radius-sm);
  padding: 24px;
  box-shadow: 0 2px 8px 0 rgba(31,89,170,0.05);
}

/****** PRICING TABLE ******/
table {
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
  margin: 18px 0 12px 0;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  overflow: hidden;
}
thead {
  background: var(--secondary);
}
th, td {
  text-align: left;
  padding: 14px 16px;
  font-size: 1em;
  color: #153154;
}
th {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  font-size: 1.04em;
  font-weight: 600;
  border-bottom: 2px solid #e9e9e9;
  background: var(--secondary);
}
tbody tr:nth-child(even) {
  background: #f5fafd;
}
tbody tr:hover {
  background: #e2f1fb;
}

.pricing-highlights {
  margin: 20px 0 0 0;
}

/****** FOOTER ******/
footer {
  padding: 32px 0 18px 0;
  background: var(--primary);
}
footer .container {
  flex-direction: row;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
}
footer nav {
  gap: 18px;
}
footer nav a {
  color: #fff;
  font-size: 0.98em;
  font-family: 'Montserrat', Arial, sans-serif;
  opacity: 0.86;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}
footer nav a:focus, footer nav a:hover {
  color: #83B8DE;
  opacity: 1;
}
footer p {
  color: #cbe5fd;
  font-size: 0.96em;
}

/* BUTTONS & CALLS TO ACTION */
a.button, button, .cta-btn {
  transition: background var(--transition), color var(--transition), box-shadow var(--transition), transform var(--transition-fast);
}
a.button:active, button:active, .cta-btn:active {
  transform: scale(.98);
}

/******** COOKIE CONSENT BANNER ********/
.cookie-consent-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 5000;
  background: linear-gradient(90deg, #e7eefa 0%, #83B8DE 100%);
  color: #1D4476;
  box-shadow: 0 -2px 16px 0 rgba(30,60,90,0.09);
  padding: 26px 18px 20px 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  animation: slideUpBanner .55s cubic-bezier(.44,0,.12,1);
}
@keyframes slideUpBanner {
  from { transform: translateY(140px); opacity:0; }
  to { transform: translateY(0); opacity:1; }
}
.cookie-consent-banner p {
  font-size: 1rem;
  color: #1D4476;
  text-align: center;
}
.cookie-action-row {
  display: flex;
  flex-direction: row;
  gap: 18px;
  margin-top: 2px;
  flex-wrap: wrap;
}
.cookie-btn {
  padding: 10px 22px;
  font-size: 1em;
  border-radius: 7px;
  border: none;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  background: var(--primary);
  color: #fff;
  margin: 0 4px;
  box-shadow: 0 2px 12px 0 rgba(31,89,170,0.06);
  transition: background var(--transition-fast), color var(--transition-fast);
}
.cookie-btn.cookie-accept {
  background: #1174c5;
  color: #fff;
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: var(--primary);
  border: 1px solid #83B8DE;
}
.cookie-btn.cookie-reject {
  background: #ededed;
  color: #1D4476;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #153154;
  color: #fff;
  border-color: #153154;
}
.cookie-btn.cookie-reject:hover, .cookie-btn.cookie-reject:focus {
  background: #c9d0da;
  color: #153154;
}

/***** COOKIE SETTINGS MODAL *****/
.cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  left: 0; right: 0; top: 0; bottom: 0;
  background: rgba(38,62,112, 0.38);
  display: none;
  align-items: center;
  justify-content: center;
}
.cookie-modal-overlay.open {
  display: flex;
}
.cookie-modal {
  background: #fff;
  max-width: 400px;
  width: 96vw;
  border-radius: 17px;
  padding: 34px 28px 28px 28px;
  box-shadow: 0 6px 48px 0 rgba(31,89,170,0.18);
  display: flex;
  flex-direction: column;
  gap: 24px;
  animation: fadeInUp .35s cubic-bezier(.44,0,.12,1);
}
@keyframes fadeInUp {
  from {transform:translateY(60px); opacity:0;}
  to {transform:translateY(0); opacity:1;}
}
.cookie-modal h2 {
  font-size: 1.18rem;
  margin-bottom: 12px;
  color: #1D4476;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 12px 0;
}
.cookie-category label {
  font-size: 1em;
  color: #24476F;
}
.cookie-toggle {
  width: 42px;
  height: 24px;
  background: #cbe5fd;
  border-radius: 14px;
  position: relative;
  cursor: pointer;
  transition: background .25s;
}
.cookie-toggle.checked {
  background: #1174c5;
}
.cookie-toggle .cookie-switch {
  display: block;
  width: 19px;
  height: 19px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 2.5px;
  left: 3px;
  transition: left 0.22s cubic-bezier(.44,0,.12,1);
  box-shadow: 0 2px 6px 0 rgba(31,89,170,0.10);
}
.cookie-toggle.checked .cookie-switch {
  left: 20px;
}
.cookie-modal-actions {
  display: flex;
  gap: 18px;
  flex-direction: row;
  justify-content: flex-end;
}

/***** RESPONSIVENESS & MOBILE STYLES *****/
@media (max-width: 1020px) {
  .container {
    max-width: 98vw;
    padding: 0 7vw;
  }
  footer .container {
    flex-direction: column;
    gap: 22px;
    align-items: flex-start;
  }
}
@media (max-width: 840px) {
  .features-grid {
    gap: 18px;
  }
  .testimonial-slider, .testimonial-list {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  .container {
    max-width: 100vw;
    padding: 0 2vw;
  }
  .features-grid, .testimonial-slider, .testimonial-list, .content-grid, .card-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
  .section {
    padding: 28px 6px;
    margin-bottom: 32px;
  }
  .content-wrapper {
    gap: 18px;
  }
  .testimonial-card, .feature-item, .card {
    max-width: 98vw;
    min-width: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  footer .container {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  table th, table td {
    padding: 10px 7px;
    font-size: 0.9em;
  }
}

/***** MISCELLANEOUS & ENHANCEMENTS *****/
.team-intro {
  background: #eaf6fd;
  padding: 18px 24px;
  border-radius: var(--radius-sm);
  font-size: 1em;
  color: #283e58;
  margin-top: -12px;
  margin-bottom: 10px;
}
.service-category {
  background: #f9fcff;
  border-radius: var(--radius-sm);
  padding: 16px 22px;
  margin-bottom: 16px;
  box-shadow: 0 2px 6px 0 rgba(31,89,170,0.03);
}
.thankyou-hint {
  background: #cbe5fd;
  color: #193355;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-size: 1em;
  margin: 16px 0 0 0;
  box-shadow: 0 2px 6px 0 rgba(31,89,170,0.04);
}

/****** UTILITY CLASSES ******/
.muted {
  color: #83B8DE;
  opacity: 0.7;
}

/****** FORM STYLES (for Contact) *******/
input, textarea {
  padding: 12px;
  border: 1px solid #c7e0f8;
  margin-bottom: 16px;
  border-radius: var(--radius-sm);
  background: #f4faff;
  color: #1D4476;
  resize: vertical;
  transition: border var(--transition-fast), box-shadow var(--transition-fast);
}
input:focus, textarea:focus {
  border-color: #83B8DE;
  box-shadow: 0 1px 8px 0 #e3eefa;
}
label {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #29508b;
  font-weight: 600;
  margin-bottom: 4px;
  display: block;
}

/****** ICONS IN LISTS ******/
ul img, li img {
  vertical-align: middle;
  margin-right: 7px;
}

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

/* ======= END OF STYLE ======= */
