/* CSS RESET & 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,main,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;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  scroll-behavior: smooth;
  min-height: 100%;
}
body {
  min-height: 100vh;
  font-family: 'Roboto', Arial, sans-serif;
  color: #F4F7FB;
  background-color: #202644;
  background-image: linear-gradient(125deg, #22346A 0%, #142033 100%);
  line-height: 1.6;
  letter-spacing: 0.01em;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
*,*:before,*:after {
  box-sizing: inherit;
}
a {
  color: #67C679;
  text-decoration: none;
  transition: color 0.2s cubic-bezier(.4,0,.2,1);
}
a:hover {
  color: #23E384;
}
ul,ol {
  list-style: none;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}

/* BRAND FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Oswald', 'Roboto', Arial, sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 0.01em;
}
h1 {
  font-size: 2.5rem;
  line-height: 1.12;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  line-height: 1.16;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.5rem;
  line-height: 1.20;
  margin-bottom: 16px;
}
h4, h5, h6 {
  font-size: 1.125rem;
  line-height: 1.3;
}
p, li, address, blockquote {
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 12px;
  color: #F4F7FB;
}
blockquote {
  font-size: 1.125rem;
  color: #202644;
  background: #E7FFEA;
  padding: 18px 24px;
  border-radius: 12px;
  margin-bottom: 10px;
}
strong, b {
  font-weight: 700;
  color: #67C679;
}

/* CONTAINERS & SECTIONS */
.container {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: rgba(34,52,106,0.17);
  border-radius: 22px;
  box-shadow: 0 4px 24px 0 rgba(23,44,80,0.13);
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

/* CARD LAYOUTS */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #1A2338;
  border-radius: 16px;
  box-shadow: 0 2px 20px 0 rgba(36,224,157,0.10), 0 0 0 2px #22346A0D;
  padding: 28px 24px;
  transition: box-shadow 0.18s cubic-bezier(.4,0,.2,1), transform 0.15s;
}
.card:hover {
  box-shadow: 0 8px 24px 0 #23E38422, 0 0 0 2px #67C679;
  transform: translateY(-6px) scale(1.01);
  z-index: 2;
}

.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: 20px;
  background: #E7FFEA;
  color: #172441;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 2px 12px 0 #2ade9844;
  margin-bottom: 20px;
  min-width: 250px;
  max-width: 600px;
  font-size: 1.08rem;
  transition: box-shadow .17s;
}
.testimonial-card footer {
  font-size: 0.98rem;
  color: #22346A;
  font-family: 'Oswald', Arial,sans-serif;
  font-weight: 500;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 #67C67933, 0 0 0 2px #67C679;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 12px;
}

/* BUTTONS */
.button-primary,
.button-secondary {
  display: inline-flex;
  align-items: center;
  background: #22346A;
  color: #F4F7FB;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  padding: 14px 36px;
  border-radius: 32px;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 16px 0 #23E38422;
  transition: background 0.17s, color 0.17s, box-shadow 0.17s, transform .14s;
  margin-top: 12px;
  gap: 8px;
}
.button-primary {
  background: linear-gradient(90deg, #67C679 0%, #22346A 95%);
  color: #fff;
}
.button-primary:hover, .button-primary:focus {
  background: #23E384;
  color: #172441;
  box-shadow: 0 4px 20px #23E38444;
  transform: translateY(-2px) scale(1.03);
}
.button-secondary {
  background: #fff;
  color: #22346A;
  border: 1px solid #67C679;
}
.button-secondary:hover, .button-secondary:focus {
  background: #E7FFEA;
  color: #1A2338;
  border-color: #23E384;
}

/* NAVIGATION */
.main-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  background: rgba(32,38,68,0.94);
  border-radius: 0 0 18px 18px;
  padding: 20px 16px 14px;
  z-index: 21;
  position: relative;
}
.main-nav img {
  width: 120px;
  margin-right: 16px;
}
.main-nav a {
  font-family: 'Oswald', Arial, sans-serif;
  color: #F4F7FB;
  font-size: 1rem;
  padding: 8px 16px;
  border-radius: 22px;
  transition: background 0.13s, color .13s;
}
.main-nav a:hover, .main-nav a:focus {
  background: #22346A;
  color: #23E384;
}
@media (max-width: 980px) {
  .main-nav {
    gap: 12px;
    padding: 14px 8px 10px;
  }
  .main-nav a { font-size: .96rem; padding: 8px 8px; }
  .main-nav img { width: 95px; }
}
/* Hide desktop nav on mobile */
@media (max-width: 900px) {
  .main-nav { display: none; }
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  line-height: 1;
  color: #23E384;
  background: #142033;
  border: 2px solid #23E384;
  border-radius: 10px;
  padding: 7px 16px;
  position: absolute;
  top: 14px;
  right: 22px;
  z-index: 101;
  cursor: pointer;
  transition: background .16s, color .16s;
}
.mobile-menu-toggle:hover { background: #22346A; color: #fff; }
@media (min-width: 901px) {
  .mobile-menu-toggle { display: none; }
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(22,32,60,0.97);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.66,-0.07,.31,1.07);
  box-shadow: 4px 0 34px 0 #23E38438;
  align-items: flex-start;
  padding: 0 0 30px 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  font-size: 2rem;
  color: #67C679;
  background: none;
  border: none;
  margin: 22px 22px 0 0;
  cursor: pointer;
  transition: color .17s;
  z-index: 10001;
}
.mobile-menu-close:hover { color: #23E384; }
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  margin-top: 24px;
  padding-left: 32px;
}
.mobile-nav a {
  color: #fff;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 16px 0;
  font-size: 1.22rem;
  border-bottom: 1px solid #22346A27;
  text-shadow: 0 0 2px #22346A44;
  border-radius: 0 20px 20px 0;
  transition: background 0.17s, color 0.13s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #22346A;
  color: #23E384;
}

/* HERO, SERVICES, TEAM, BLOG - FLEX LAYOUTS */
.service-list,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.service-item, .team-member {
  background: #161E34;
  border-radius: 13px;
  box-shadow: 0 2px 14px 0 #22346A29;
  padding: 22px 18px;
  flex: 1 1 280px;
  min-width: 250px;
  max-width: 360px;
  margin-bottom: 20px;
  position: relative;
  border-left: 4px solid #67C679;
  transition: border-color .16s, box-shadow .16s, transform .14s;
}
.service-item:hover, .team-member:hover {
  border-left: 4px solid #23E384;
  box-shadow: 0 5px 18px #23E38419, 0 0 0 1px #23E38409;
  transform: scale(1.025);
  z-index: 2;
}
.service-item h3, .service-item h2, .team-member h2 {
  color: #67C679;
}
.service-item span {
  font-size: 0.98rem;
  color: #23E384;
}
@media (max-width: 900px) {
  .service-list, .team-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .service-item, .team-member {
    max-width: 100%;
    margin-bottom: 0;
  }
}

/* Blog/Advice modules */
.blog-featured {
  background: #22346A;
  color: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 10px #23E38411;
  padding: 20px 18px;
  margin-bottom: 20px;
}
.blog-search {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 12px 0 18px 0;
}
.blog-search input[type="text"] {
  width: 100%;
  background: #F4F7FB;
  border-radius: 8px;
  border: 1.5px solid #67C679;
  padding: 12px 18px;
  font-size: 1.08rem;
  color: #202644;
  transition: border-color .15s;
}
.blog-search input[type="text"]:focus {
  border-color: #23E384;
  outline: none;
}
.blog-categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 12px 0 0 0;
  font-size: 0.98rem;
}
.blog-categories li {
  background: #22346A;
  color: #F4F7FB;
  padding: 7px 18px;
  border-radius: 16px;
}
.featured-tip {
  background: #67C679;
  color: #172441;
  border-radius: 10px;
  padding: 14px 15px;
  font-family: 'Oswald', Arial,sans-serif;
  margin-top: 18px;
  font-size: 1rem;
  font-weight: 600;
}

.rating-summary {
  margin-top: 24px;
  background: #22346A;
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  font-size: 1.04rem;
}

/* LISTS */
ul {
  padding-left: 22px;
  margin-bottom: 18px;
}
ul li {
  position: relative;
  margin-bottom: 12px;
  color: #F4F7FB;
  line-height: 1.6;
  font-size: 1rem;
}
ul li:before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  background: linear-gradient(90deg,#67C679 0,#23E384 100%);
  border-radius: 50%;
  margin-right: 10px;
  vertical-align: baseline;
}

@media (max-width: 800px) {
  .container { padding-left: 12px; padding-right: 12px; }
  .section { padding: 22px 6px; }
}

/* FOOTER */
footer {
  background: #142033;
  border-radius: 24px 24px 0 0;
  color: #F4F7FB;
  padding-top: 34px;
  margin-top: 40px;
}
.footer-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
  padding-bottom: 20px;
}
.footer-main a, .footer-main nav a {
  color: #67C679;
  font-size: 1.01rem;
  font-family: 'Oswald', Arial, sans-serif;
  padding: 6px 0;
  display: block;
  transition: color .15s;
}
.footer-main a:hover { color: #23E384; }
.footer-main nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-main img {
  width: 52px;
  margin-bottom: 10px;
}
footer address {
  font-size: 1rem;
  color: #E1EFF0;
}
.footer-bottom {
  font-size: 0.98rem;
  color: #578091;
  padding: 20px 8px 16px;
  text-align: center;
  border-top: 1px solid #22346A55;
}
@media (max-width: 900px) {
  .footer-main {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
}

/* CONTACT PAGE */
.contact-details {
  background: #181D39;
  border-left: 4px solid #67C679;
  border-radius: 9px;
  padding: 18px 18px;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px #67C67909;
  color: #F4F7FB;
}
.contact-details a {
  color: #67C679;
  font-weight: 500;
}
.map-static {
  margin-top: 12px;
  background: #22346A;
  border-radius: 8px;
  padding: 12px;
  color: #F4F7FB;
}

/* THANK YOU */

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  background: #22346A;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 12px 18px 12px;
  z-index: 50000;
  box-shadow: 0 -2px 22px #23E38418;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  animation: fadeinCookie .33s cubic-bezier(.3,0,.6,1) 1;
}
@keyframes fadeinCookie {
  from { opacity: 0; transform: translateY(45px); }
  to { opacity: 1; transform: translateY(0); }
}
.cookie-banner.hide {
  display: none;
}
.cookie-banner .cookie-banner-buttons {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin-left: 16px;
}
.cookie-banner .cookie-btn {
  padding: 8px 22px;
  border-radius: 22px;
  border: none;
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin: 0 2px;
  cursor: pointer;
  transition: background .14s, color .13s;
}
.cookie-banner .cookie-btn.accept {
  background: #67C679;
  color: #172441;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #23E384;
  color: #11193a;
}
.cookie-banner .cookie-btn.reject {
  background: #fff;
  color: #22346A;
  border: 1px solid #67C679;
}
.cookie-banner .cookie-btn.reject:hover {
  background: #E7FFEA;
  color: #1A2338;
  border-color: #23E384;
}
.cookie-banner .cookie-btn.settings {
  background: transparent;
  color: #67C679;
  border: 1px solid #67C679;
}
.cookie-banner .cookie-btn.settings:hover {
  background: #22346A;
  color: #fff;
}

/* Cookie modal */
.cookie-modal-overlay {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,38,68,0.94);
  z-index: 50001;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: fadeinCookie .24s cubic-bezier(.3,0,.6,1) 1;
}
.cookie-modal {
  background: #F4F7FB;
  color: #142033;
  border-radius: 16px;
  max-width: 460px;
  min-width: 315px;
  padding: 38px 28px 28px 28px;
  box-shadow: 0 4px 36px 0 #23E3842c;
  display: flex;
  flex-direction: column;
  gap: 26px;
  position: relative;
}
.cookie-modal h2 {
  color: #22346A;
  font-size: 1.4rem;
  margin-bottom: 10px;
}
.cookie-modal .cookie-category {
  margin-bottom: 16px;
}
.cookie-modal .category-title {
  font-family: 'Oswald', Arial, sans-serif;
  font-size: 1.07rem;
  font-weight: 700;
  color: #22346A;
  margin-bottom: 4px;
}
.cookie-modal .cookie-switch-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 9px;
}
.cookie-modal .cookie-switch-label {
  font-size: 1.01rem;
  flex: 1;
}
.cookie-modal .cookie-switch {
  width: 42px;
  height: 22px;
  background: #22346A11;
  border-radius: 11px;
  position: relative;
  cursor: pointer;
  transition: background .13s;
  border: 1px solid #67C67944;
}
.cookie-modal .cookie-switch input[type="checkbox"] {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .cookie-switch-slider {
  position: absolute;
  left: 1px; top: 1px;
  width: 20px; height: 20px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 6px #67C67933;
  transition: transform 0.13s;
}
.cookie-modal .cookie-switch input[type="checkbox"]:checked + .cookie-switch-slider {
  transform: translateX(20px);
  background: #67C679;
}
.cookie-modal .category-note {
  font-size: 0.98rem;
  color: #5a7c96;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 13px;
  margin-top: 18px;
}
.cookie-modal .cookie-btn {
  width: 120px;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  top: 10px; right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #22346A;
  cursor: pointer;
  transition: color .13s;
}
.cookie-modal .cookie-modal-close:hover { color: #23E384; }

/* RESPONSIVE LAYOUTS */
@media (max-width: 768px) {
  .main-nav { display: none !important; }
  .content-wrapper {
    gap: 16px;
    padding: 0 2px;
  }
  .section { padding: 18px 4px; margin-bottom: 34px; }

  .service-list, .team-grid, .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .testimonial-card, .card {
    max-width: 100%;
    padding: 16px 10px;
  }
  .footer-main {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
  .text-image-section, .content-grid {
    flex-direction: column;
    gap: 18px;
  }
}

/* FOCUSED STATES */
a:focus, button:focus, input:focus, .button-primary:focus, .cookie-btn:focus {
  outline: 2px solid #23E384;
  outline-offset: 1px;
  z-index: 10;
}

/* ANIMATIONS/TRANSITIONS */
.button-primary, .button-secondary, .main-nav a, .mobile-nav a, .card, .service-item, .team-member, .testimonial-card {
  transition: box-shadow 0.16s, background 0.13s, color 0.15s, transform 0.12s;
}

/* MISC */
::-webkit-scrollbar {
  width: 8px;
  background: #22346A33;
}
::-webkit-scrollbar-thumb {
  background: #67C67964;
  border-radius: 6px;
}


/* END CSS */
