/* 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;
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section {
  display: block;
}
body {
  line-height: 1.5; background: #161B22; color: #E7EAED;
  font-family: 'Roboto', Arial, sans-serif; font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
ul,ol {list-style: none; padding-left: 0;}
a {text-decoration: none; color: inherit;}
img {max-width: 100%; display: block; height: auto;}
hr {border: none; border-top: 1px solid #28323c; margin: 32px 0;}
button, input, select, textarea {font-family: inherit; font-size: inherit; box-sizing: inherit;}

/* BRAND FONTS */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@700;900&family=Roboto:wght@400;500;700&display=swap');

:root {
  --color-primary: #174162;
  --color-primary-rgb: 23, 65, 98;
  --color-secondary: #67A477;
  --color-accent: #FFFDF6;
  --color-dark: #161B22;
  --color-mid: #222933;
  --color-metal: #6c7a89;
  --color-metal-light: #bfc6cd;
  --color-light: #f5f6fa;
  --color-white: #FFF;
  --color-shadow-main: rgba(18,24,29,0.15);
  --border-radius: 12px;
}

/* ------- LAYOUT CONTAINERS ------- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section {
  margin-bottom: 60px !important;
  padding: 40px 20px !important;
  background: #1c232b;
  border-radius: var(--border-radius);
  box-shadow: 0 8px 32px var(--color-shadow-main);
}
.cta-section {
  background: var(--color-primary);
  color: var(--color-accent);
  padding: 40px 0;
  margin-bottom: 0;
  border-radius: 0;
  box-shadow: none;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #232b33;
  border: 1px solid #27313A;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 4px 20px var(--color-shadow-main);
  position: relative;
  padding: 24px 28px;
  min-width: 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.18s cubic-bezier(.4,0,.2,1), box-shadow 0.18s;
}
.card:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 12px 36px rgba(23,65,98,0.22);
}
.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-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #222933;
  padding: 24px;
  border-radius: var(--border-radius);
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(17,22,27,0.08);
  border-left: 4px solid var(--color-secondary);
}

.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-accent);
  color: #222933;
  border-radius: var(--border-radius);
  box-shadow: 0 2px 16px rgba(34,41,51,0.10);
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.testimonial-card blockquote {
  font-size: 18px;
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.01em;
  margin: 0;  
}
.testimonial-card span {
  font-size: 15px;
  font-style: italic;
  color: #35547B;
}

.event-box {
  background: #222933;
  border: 1px solid #272E36;
  border-radius: var(--border-radius);
  color: var(--color-accent);
  padding: 24px 24px 16px 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px var(--color-shadow-main);
  font-size: 16px;
  line-height: 1.6;
  font-family: 'Roboto', Arial, sans-serif;
  transition: box-shadow 0.16s;
}
.event-box strong {
  color: var(--color-secondary);
  font-size: 18px;
}
.event-box:hover {
  box-shadow: 0 8px 28px rgba(23,65,98,0.12);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(120deg, #222933 80%, rgba(103,164,119,0.2));
  color: var(--color-accent);
  padding: 52px 0 56px 0;
  margin-bottom: 40px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 18px;
  letter-spacing: 0.01em;
}
.hero p {
  font-size: 18px;
  margin-bottom: 28px;
  color: #DEEBED;
}

/* NAVIGATION & HEADER */
header {
  background: #181F26;
  box-shadow: 0 4px 12px rgba(23,65,98,0.12);
  position: relative;
  z-index: 20;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
}
header nav {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: center;
}
header nav a {
  color: var(--color-accent);
  padding: 7px 12px;
  border-radius: 6px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background 0.2s, color 0.2s;
}
header nav a:hover {
  background: #232b33;
  color: var(--color-secondary);
}
header img {
  height: 42px;
  width: auto;
  display: block;
}

.cta.primary {
  background: var(--color-secondary);
  color: #132634;
  border-radius: 22px;
  padding: 10px 28px;
  font-size: 17px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  letter-spacing: 0.015em;
  border: none;
  margin-left: 18px;
  box-shadow: 0 2px 10px rgba(103,164,119,0.16);
  transition: background 0.15s, transform 0.13s, box-shadow 0.14s;
  cursor: pointer;
  outline: none;
  display: inline-block;
}
.cta.primary:hover, .cta.primary:focus {
  background: #48A079;
  color: #FFF;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 4px 18px rgba(103,164,119,0.22);
}

.link-more {
  color: var(--color-secondary);
  font-size: 16px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  text-decoration: underline;
  margin-top: 10px;
  transition: color 0.17s;
}
.link-more:hover {
  color: #48A079;
  text-decoration: none;
}

/* HEADER MOBILE MENU BUTTON */
.mobile-menu-toggle {
  background: none;
  border: none;
  color: var(--color-accent);
  font-size: 30px;
  cursor: pointer;
  margin-left: 18px;
  display: none;
  transition: color 0.16s;
  z-index: 40;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  color: var(--color-secondary);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-stretch;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: #161B22cc;
  transition: transform 0.34s cubic-bezier(.94,.41,.43,1.17), opacity 0.17s;
  transform: translateX(100%);
  opacity: 0;
  z-index: 1000;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: none;
  color: #fff;
  border: none;
  font-size: 38px;
  align-self: flex-end;
  margin: 24px 32px 12px 0;
  cursor: pointer;
  transition: color 0.17s;
  z-index: 1011;
}
.mobile-menu-close:hover {
  color: var(--color-secondary);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 40px;
  padding: 0 32px;
  align-items: flex-start;
}
.mobile-nav a {
  color: var(--color-accent);
  font-size: 22px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  padding: 11px 0;
  border-bottom: 1px solid #2229331c;
  width: 100%;
  transition: color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--color-secondary);
  background: none;
}

/* TYPOGRAPHY */
h1 {
  font-size: 32px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.16;
  margin-bottom: 8px;
}
h2 {
  font-size: 24px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 800;
  color: var(--color-secondary);
  margin-bottom: 11px;
  letter-spacing: 0.01em;
}
h3 {
  font-size: 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
  color: var(--color-metal-light);
}
h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 16px;
  color: var(--color-metal-light);
}
p, li, span, blockquote {
  font-size: 16px;
  font-family: 'Roboto', Arial, sans-serif;
  line-height: 1.7;
  color: #E7EAED;
}
p {
  margin-bottom: 10px;
}
li {
  padding-left: 0;
}
ul li, ol li {
  margin-bottom: 8px;
}
ol {
  list-style-type: decimal;
  margin-left: 26px;
}

strong {
  font-weight: 800;
  color: var(--color-secondary);
}
em {
  color: var(--color-metal-light);
}

/* ICONS */
.feature-item img, ul li img, .event-box img, .contact-info img {
  width: 30px;
  height: 30px;
  margin-right: 12px;
  filter: grayscale(20%) brightness(0.86);
}
.social-links {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-top: 14px;
}
.social-links span {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-accent);
  margin-right: 8px;
}
.social-links a img {
  width: 28px;
  height: 28px;
  filter: grayscale(1) contrast(1.2);
  transition: filter 0.18s;
}
.social-links a:hover img {
  filter: grayscale(0.25) sepia(1) hue-rotate(50deg) saturate(1.4) contrast(1.1);
}

/* CONTACT INFO BLOCK */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 20px 0 10px 0;
}
.contact-info > div {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  background: #232B33;
  padding: 12px 18px;
  border-radius: 8px;
  color: var(--color-accent);
  box-shadow: 0 2px 8px rgba(17,22,27,0.06);
}

/* FOOTER */
footer {
  background: #181F26;
  color: var(--color-accent);
  padding: 36px 0 18px 0;
  font-size: 15px;
}
footer .container{
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
footer nav {
  display: flex;
  flex-direction: row;
  gap: 16px;
  margin-bottom: 7px;
  flex-wrap: wrap;
}
footer nav a {
  color: var(--color-metal-light);
  font-size: 15px;
  padding: 4px 8px;
  border-radius: 4px;
  transition: color 0.17s, background 0.17s;
}
footer nav a:hover {
  color: var(--color-secondary); background: #232B33;
}
.footer-info {
  display: flex;
  gap: 20px;
  color: #77838f;
  font-size: 14px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  width: 100vw;
  background: #222933fa;
  color: var(--color-accent);
  box-shadow: 0 -2px 24px rgba(22,27,34,0.23);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 22px 16px 18px 16px;
  gap: 32px;
  flex-wrap: wrap;
  animation: cookieBannerIn 0.55s cubic-bezier(.42,0,.19,1.19);
}
@keyframes cookieBannerIn {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.cookie-banner p {
  font-size: 15px;
  color: var(--color-accent);
  margin-bottom: 0;
  flex: 2;
}
.cookie-banner .cookie-actions {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.cookie-banner button {
  padding: 9px 22px;
  font-size: 15px;
  font-family: 'Montserrat', Arial, sans-serif;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 700;
  margin: 0;
  transition: background 0.13s, color 0.13s, transform 0.17s;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #132634;
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: #48A079;
  color: #fff;
  transform: scale(1.05);
}
.cookie-banner .reject {
  background: #222933;
  color: var(--color-metal-light);
  border: 1.5px solid var(--color-metal);
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #181F26;
  color: var(--color-secondary);
  transform: scale(1.05);
}
.cookie-banner .settings {
  background: none;
  color: var(--color-secondary);
  border: 1.5px solid var(--color-secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: #1c232b;
  color: #fff;
  border-color: #48A079;
}
/* Cookie Modal */
.cookie-modal {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(22, 27, 34, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2010;
  animation: cookieModalIn 0.44s cubic-bezier(.24,.68,.22,1.21);
}
@keyframes cookieModalIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal-content {
  background: #232b33;
  border-radius: 14px;
  padding: 34px 32px 30px 32px;
  max-width: 370px;
  color: var(--color-accent);
  box-shadow: 0 6px 32px 0 rgba(23,65,98,.26);
  display: flex;
  flex-direction: column;
  gap: 18px;
  animation: modalPopIn 0.33s cubic-bezier(.38,1.16,.43,1.19);
}
@keyframes modalPopIn {
  from { transform: scale(0.85); opacity:0; }
  to   { transform: scale(1); opacity:1; }
}
.cookie-modal-content h3 {
  color: var(--color-secondary);
  margin-bottom: 9px;
  font-size: 20px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.cookie-category label {
  font-size: 16px;
  color: var(--color-accent);
  font-weight: 700;
}
.cookie-toggle {
  width: 44px; height: 20px;
  border-radius: 12px;
  background: #28323c;
  position: relative;
  margin-left: 14px;
  transition: background 0.16s;
}
.cookie-toggle input[type="checkbox"] {
  opacity: 0;
  width: 0;height: 0;
}
.cookie-toggle .slider {
  position: absolute;
  left: 2px; top: 2px;
  width: 16px; height: 16px;
  background: var(--color-metal-light);
  border-radius: 50%;
  transition: left 0.19s, background 0.14s;
}
.cookie-toggle input[type="checkbox"]:checked + .slider {
  background: var(--color-secondary);
  left: 26px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 6px;
}
.cookie-modal-actions button {
  font-size: 15px;
}

/* LISTS IN CONTENT */
ul > li, .content-wrapper > ul > li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 11px;
}
ul > li img {
  margin-top: 2px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding-left: 12px;
    padding-right: 12px;
  }
  .content-wrapper {gap: 12px;}
}
@media (max-width: 750px) {
  .container {
    max-width: 100vw;
    padding: 0 8px;
  }
  footer .container {padding: 0 8px;}
  .content-wrapper {
    padding: 0 !important;
  }
  .section {
    padding: 22px 6px !important;
  }
  .cta-section {
    padding: 24px 0 18px 0;
  }
  .event-box {padding: 16px 8px 10px 16px;}
  .card {
    padding: 16px 10px;
    min-width: 90vw;
    max-width: 100vw;
  }
  .testimonial-card, .feature-item {
    padding: 12px 6px;
  }
}
@media (max-width: 950px) {
  header .container {
    gap: 9px;
  }
  .footer-info {
    gap: 8px;
    flex-direction: column;
    text-align: center;
  }
}
@media (max-width: 768px) {
  header nav, .cta.primary{
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
  .hero {
    padding: 32px 0 38px 0;
  }
  .testimonial-card, .feature-item {
    flex-direction: column;
    gap: 11px;
    align-items: flex-start;
  }
  .content-grid,
  .card-container,
  .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .cookie-banner {
    flex-direction: column;
    gap: 16px;
    padding: 18px 8px 14px 8px;
  }
  .cookie-banner .cookie-actions {
    gap: 10px;
  }
}

/* --------- INTERACTIVITY & ANIMATION --------- */
button, .cta.primary, .mobile-menu-toggle, .mobile-menu-close, .cookie-banner button {
  transition: background 0.12s, color 0.17s, box-shadow 0.14s, transform 0.10s;
}
.header nav a, .social-links a, .footer nav a {
  transition: color 0.13s, background 0.13s;
}

/* --------- MISC ELEMENTS & UTILITIES --------- */
::-webkit-scrollbar {
  width: 10px;
  background: #181F26;
}
::-webkit-scrollbar-thumb {
  background: #272E36;
  border-radius: 22px;
}
::-webkit-scrollbar-thumb:hover {
  background: #35547B;
}

input, textarea, select {
  background: #242A32;
  border: 1.5px solid #35547B;
  border-radius: 7px;
  padding: 8px 14px;
  color: var(--color-accent);
  font-family: 'Roboto', Arial, sans-serif;
  outline: none;
  box-shadow: 0 1px 5px rgba(23,65,98,0.03); 
  transition: border 0.15s, background 0.13s;
}
input:focus, textarea:focus, select:focus {
  background: #28323c;
  border-color: var(--color-secondary);
}

/* SELECTION COLORING */
::selection {
  background: var(--color-secondary);
  color: #1c232b;
}

/* Z-INDEX LAYERS */
header {z-index: 10;}
.mobile-menu {z-index: 1000;}
.cookie-banner {z-index: 2000;}
.cookie-modal {z-index: 2010;}

/* ------- END OF CSS ------- */
