/* RESET & BASE STYLES */
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%;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #f5f7fa;
}
body {
  line-height: 1.6;
  min-height: 100vh;
  color: #26303a;
  background: #f6f9ff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 768px) {
  html { font-size: 15px; }
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 700;
  color: #17425A;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.5rem; margin-bottom: 12px; }
h4 { font-size: 1.25rem; margin-bottom: 10px; }

p, li, a, button, span,
input, textarea {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #26303a;
}

strong { font-weight: 600; }

/* UTILITY CLASSES & CONTAINER */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .container { max-width: 98vw; padding-left: 12px; padding-right: 12px; }
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.text-section {
  margin: 12px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* SOFT PASTEL THEME */
:root {
  --primary: #17425A;
  --secondary: #1D6C50;
  --accent: #F5F8FA;
  --soft-blue: #e3f2fd;
  --soft-green: #e6f7f1;
  --soft-peach: #fff5e7;
  --soft-pink: #fbeff6;
  --soft-yellow: #fffbe6;
  --soft-lavender: #ede6fa;
  --grey-100: #f8fafb;
  --grey-200: #f0f3f7;
  --grey-300: #e2eaf0;
  --text-main: #26303a;
  --text-soft: #53758f;
  --shadow: 0 2px 18px 0 rgba(70, 104, 131, 0.08);
  --radius: 18px;
}

body {
  background: linear-gradient(135deg, #f5f8fa 0%, #fbeff6 100%);
}

header, footer {
  background: #f4fafe;
  box-shadow: 0 2px 10px rgba(23, 66, 90, 0.03);
  border-bottom: 1px solid #dde4ea;
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(2px);
}

/* HEADER & NAV */
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  padding-bottom: 18px;
  gap: 18px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}
.main-nav a {
  text-decoration: none;
  color: var(--primary);
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  opacity: 0.88;
  transition: color 0.2s, opacity 0.2s;
  border-radius: 7px;
  padding: 5px 12px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--soft-blue);
  color: var(--secondary);
  opacity: 1;
}

.cta-btn {
  background: linear-gradient(90deg, #ffe7f7 0%, #e6f7f1 100%);
  color: var(--primary);
  border: none;
  border-radius: var(--radius);
  padding: 13px 34px;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  box-shadow: var(--shadow);
  cursor: pointer;
  text-decoration: none;
  margin-left: 16px;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #e3f2fd 0%, #fffbe6 100%);
  color: var(--secondary);
  box-shadow: 0 4px 22px 0 rgba(23,66,90,0.12);
}

header img {
  max-height: 52px;
  display: block;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 2.1rem;
  color: var(--primary);
  padding: 8px 16px;
  margin-left: 12px;
  cursor: pointer;
  border-radius: 10px;
  transition: background 0.18s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: var(--soft-blue);
}

.mobile-menu {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(250,249,255, 0.96);
  box-shadow: 0 4px 32px 0 rgba(23,66,90,0.08);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(.53,.25,.57,1.07);
  overflow-y: auto;
}
.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--primary);
  padding: 18px 22px;
  margin: 9px 8px 0 0;
  cursor: pointer;
  transition: background 0.15s;
  border-radius: 11px;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--soft-blue);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: flex-start;
  margin: 0 28px;
  margin-top: 38px;
}
.mobile-nav a {
  color: var(--primary);
  text-decoration: none;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
  font-weight: 600;
  font-size: 1.22rem;
  padding: 12px 0;
  width: 100%;
  border-bottom: 1px solid var(--soft-blue);
  transition: color 0.2s;
  letter-spacing: 0.06em;
}
.mobile-nav a:last-child {
  border-bottom: none;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--secondary);
  background: var(--soft-green);
}

@media (max-width: 1000px) {
  .main-nav, .cta-btn {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 1001px) {
  .mobile-menu {
    display: none !important;
  }
}

/* HERO SECTIONS */
.hero {
  background: linear-gradient(120deg, #fbeff6 0%, #e6f7f1 100%);
  padding: 60px 0 58px 0;
  margin-bottom: 0;
}
.hero .container {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding: 20px 0;
}
.hero h1, .hero h2 {
  color: var(--primary);
}
.hero h1 { font-size: 2.2rem; }
.hero h2 { font-size: 1.4rem; color: var(--secondary); opacity: 0.8; }
.hero p { font-size: 1.1rem; color: var(--text-soft); max-width: 650px; }

/* FEATURES & USPs */
.features {
  background: var(--soft-blue);
}
.features .content-wrapper {
  gap: 26px;
}
.features ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: flex-start;
}
.features li {
  background: var(--soft-green);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 26px 22px 22px 22px;
  min-width: 170px;
  flex: 1 1 215px;
  min-height: 112px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  transition: box-shadow 0.22s, transform 0.12s;
}
.features li img {
  width: 42px; height: 42px;
  margin-bottom: 7px;
  background: #fff;
  border-radius: 35%;
  filter: drop-shadow(0 2px 6px #fbeff6);
}
.features li:hover, .features li:focus {
  box-shadow: 0 6px 28px 0 rgba(23,66,90,0.09);
  transform: translateY(-5px) scale(1.028);
}

.usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.usp-list li {
  background: var(--soft-pink);
  color: var(--primary);
  font-weight: 600;
  border-radius: 16px;
  padding: 10px 19px 9px 16px;
  min-width: 120px;
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 1rem;
  margin-bottom: 10px;
  box-shadow: 0 1px 6px rgba(245,231,247,0.10);
}
.usp-list li img {
  width: 25px; height: 25px;
}

/* ABOUT, SERVICES, OTHER SECTIONS */
.about, .services, .contact, .contact-form, .team, .why-us, .about-snippet, .confirmation, .legal {
  background: var(--soft-peach);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
  padding: 40px 20px;
}

.about h2, .team h2, .why-us h2, .services h2, .contact h2 {
  color: var(--secondary);
}

.team ul, .services ul, .legal .text-section ul {
  padding-left: 12px;
  list-style: disc inside;
}
.team ul li, .services ul li, .legal .text-section li {
  margin-bottom: 14px;
  font-size: 1.06rem;
  color: var(--text-soft);
  line-height: 1.65;
}

/* CARDS & FLEX CONTAINERS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 22px;
  transition: box-shadow 0.21s, transform 0.14s;
}
.card:hover, .card:focus {
  box-shadow: 0 9px 29px 0 rgba(23,66,90,0.11);
  transform: translateY(-6px);
}

.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, .card-container, .features ul, .usp-list {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: flex-start !important;
  }
}

/* TESTIMONIALS */
.testimonials {
  background: var(--soft-lavender);
  padding: 40px 0 34px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonials .content-wrapper h2 {
  color: var(--primary);
  margin-bottom: 20px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 22px 32px;
  border-radius: 17px;
  background: #fffbe6;
  margin-bottom: 22px;
  box-shadow: 0 2px 10px 0 rgba(192, 181, 238, 0.10);
  max-width: 520px;
  width: 100%;
  border: 1.5px solid #f6eefa;
}
.testimonial-card p {
  color: #26303a;
  font-size: 1.09rem;
  font-style: italic;
  margin-bottom: 3px;
  text-align: left;
}
.testimonial-card strong {
  color: #5c6173;
  font-weight: 700;
  font-size: 1rem;
}

/* CTA SECTIONS */
.cta {
  background: linear-gradient(95deg, #e6f7f1 40%, #fffbe6 100%);
  padding: 44px 0;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 45px;
}
.cta h2 {
  color: var(--primary);
  margin-bottom: 8px;
}
.cta p {
  color: var(--text-soft);
  margin-bottom: 22px;
  font-size: 1.1rem;
}

/* FOOTER */
footer {
  margin-top: 50px;
  padding: 32px 0 26px 0;
  background: #f8fafb;
  border-top: 1px solid #dde4ea;
  box-shadow: 0 -2px 9px 0 rgba(23,66,90,0.04);
}
footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.footer-nav a {
  color: var(--secondary);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  opacity: 0.66;
  transition: color 0.18s, opacity 0.18s;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--primary);
  opacity: 1;
}
.footer-contact {
  flex: 1 1 350px;
  color: #526275;
  font-size: 0.97rem;
  margin: 10px 0;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
}
.footer-brand img {
  height: 38px;
  margin-bottom: 2px;
}
.footer-brand span {
  font-size: 0.98rem;
  color: #9a9db0;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 400;
}
@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* CARDS, GENERAL FLEX PATTERNS, LAYOUT */
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* BUTTONS */
button, .cta-btn {
  cursor: pointer;
  border: none;
  outline: none;
  transition: background 0.21s, color 0.17s, box-shadow 0.17s;
  font-family: 'Montserrat', 'Open Sans', Arial, sans-serif;
}
button:active, .cta-btn:active {
  transform: scale(0.97);
}

/* LINKS */
a {
  color: var(--secondary);
  text-decoration: underline;
  transition: color 0.14s;
}
a:hover, a:focus {
  color: var(--primary);
}

/* FORMS */
input, textarea, select {
  font-size: 1rem;
  padding: 11px 14px;
  border-radius: 9px;
  border: 1px solid var(--soft-blue);
  background: #fcfdff;
  margin-bottom: 16px;
  transition: border-color 0.15s;
  width: 100%;
  max-width: 360px;
  box-sizing: border-box;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  outline: none;
}

/* LEGAL */
.legal {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 52px;
  padding: 42px 22px 44px 22px;
}

.legal h1, .legal h2 {
  color: var(--primary);
}
.text-section h2 {
  color: var(--secondary);
  margin-top: 30px;
  font-size: 1.17rem;
}

@media (max-width: 700px) {
  .section, .about, .services, .contact, .contact-form, .team, .why-us, .about-snippet, .cta, .legal, .confirmation {
    padding: 26px 6px;
    margin-bottom: 36px;
  }
  .hero { padding: 34px 0 36px 0; }
}

/* SPACING AND LAYOUT */
main section {
  margin-bottom: 48px;
  border-radius: var(--radius);
}

/* RESPONSIVE FLEX ORDER */
@media (max-width: 768px) {
  .hero .container, .features ul, .usp-list, .card-container, .footer-nav {
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 12px !important;
  }
  .testimonial-card {
    padding: 18px 10px;
  }
  .cta-btn { width: 100%; text-align: center; margin-left: 0; }
}

/* SOFT ANIMATIONS & MICRO-INTERACTIONS */
.card, .testimonial-card, .features li, .usp-list li, .cta, .about, .team, .services, .why-us, .about-snippet {
  transition: box-shadow 0.21s, transform 0.14s, background 0.17s;
}
.card:hover, .testimonial-card:hover, .features li:hover, .usp-list li:hover {
  box-shadow: 0 8px 38px 0 rgba(23,66,90,0.13);
}
.animated {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.6s cubic-bezier(0.36,0.66,0.04,1), transform 0.48s;
}
.animated.visible {
  opacity: 1;
  transform: none;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 1450;
  background: linear-gradient(90deg, #fffbe6 65%, #fbeff6 100%);
  color: var(--text-main);
  padding: 22px 8vw 22px 8vw;
  box-shadow: 0 -2px 18px 0 rgba(70, 104, 131, 0.13);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  border-radius: 16px 16px 0 0;
  animation: cookieBannerIn 0.44s cubic-bezier(0.22,0.68,0.31,1.04);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1;  }
}
.cookie-banner p {
  margin: 0; font-size: 1rem; max-width: 420px;
}
.cookie-banner button {
  margin-left: 8px;
  margin-right: 8px;
  min-width: 118px;
  padding: 11px 21px;
  border-radius: 10px;
  font-size: 1.04rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--soft-lavender);
  border: 1.5px solid #ede6fa;
  transition: background 0.16s, color 0.13s;
  box-shadow: 0 1px 3px 0 rgba(153,72,228,0.08);
}
.cookie-banner button.accept {
  background: linear-gradient(95deg,#fffbe6 60%,#e6f7f1 100%);
  color: var(--secondary);
  border-color: #e6f7f1;
}
.cookie-banner button.accept:hover, .cookie-banner button.accept:focus {
  background: #e6f7f1;
  color: var(--primary);
}
.cookie-banner button.reject {
  background: var(--soft-peach);
  color: #c12121;
  border-color: #fff5e7;
}
.cookie-banner button.reject:hover, .cookie-banner button.reject:focus {
  background: #ffede7;
  color: #d41010;
}
.cookie-banner button.settings {
  background: var(--soft-blue);
  color: var(--primary);
  border-color: #e3f2fd;
}
.cookie-banner button.settings:hover, .cookie-banner button.settings:focus {
  background: #e3f2fd;
  color: var(--secondary);
}
@media (max-width: 700px) {
  .cookie-banner { flex-direction: column; gap: 14px; padding: 19px 2vw; }
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(106, 122, 148, 0.22);
  z-index: 1990;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.23s;
}
.cookie-modal-overlay.open {
  opacity: 1; pointer-events: all;
}
.cookie-modal {
  background: linear-gradient(96deg, #fffbe6 0%, #fbeff6 100%);
  border-radius: 23px;
  box-shadow: 0 8px 40px 0 rgba(23,66,90,0.13);
  padding: 36px 38px 30px 38px;
  width: 96vw; max-width: 390px;
  color: var(--text-main);
  display: flex;
  flex-direction: column;
  gap: 22px;
  animation: cookieModalIn 0.4s cubic-bezier(.22,.68,.31,1.04);
}
@keyframes cookieModalIn {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1;  }
}
.cookie-modal h3 {
  margin: 0 0 8px 0;
  font-size: 1.19rem;
  color: var(--primary);
}
.cookie-option {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 15px;
  background: #fff;
  padding: 8px 12px;
  border-radius: 9px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.03);
}
.cookie-option input[type='checkbox'] {
  accent-color: var(--secondary);
  width: 21px; height: 21px;
}
.cookie-option .desc {
  flex: 1;
}
.cookie-modal .btn-row {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 4px;
}
.cookie-modal button {
  padding: 9px 19px;
  font-size: 1.03rem;
  border-radius: 8px;
  font-weight: 600;
  border: 1.2px solid #ede6fa;
  background: #fffbe6;
  color: var(--primary);
  transition: background 0.14s, color 0.12s;
}
.cookie-modal button.save {
  background: var(--soft-green);
  color: var(--secondary);
}
.cookie-modal button.save:hover,
.cookie-modal button.save:focus {
  background: var(--soft-blue);
  color: var(--primary);
}
.cookie-modal button.cancel {
  background: var(--soft-lavender);
  color: var(--primary);
}

/* HIDE & SHOW UTILITY */
.hidden { display: none !important; }

/* SCROLLBAR SOFTENING */
::-webkit-scrollbar {
  width: 9px;
  background: var(--soft-blue);
  border-radius: 7px;
}
::-webkit-scrollbar-thumb {
  background: var(--soft-lavender);
  border-radius: 8px;
}

/* END OF STYLE.CSS */
