/* 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 {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #263238;
  background: linear-gradient(135deg, #f5f7fa 0%, #e2eafc 100%);
  min-height: 100vh;
}

img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}

a {
  color: #4CAF50;
  text-decoration: none;
  transition: color 0.2s;
  outline: none;
}
a:hover, a:focus {
  color: #263238;
  text-decoration: underline;
}

ul, ol {
  list-style: none;
}

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  border: none;
  outline: none;
  background: none;
  color: inherit;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Roboto', Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
  margin-bottom: 16px;
  color: #263238;
  font-weight: 700;
}
h1 {
  font-size: 2.375rem;
  line-height: 1.1;
  margin-bottom: 20px;
}
h2 {
  font-size: 1.75rem;
  line-height: 1.2;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
}

p, li, ul, ol {
  font-size: 1rem;
  line-height: 1.7;
  color: #37474f;
}

strong {
  color: #263238;
}

em {
  font-style: italic;
}

/* CONTAINERS & LAYOUT */
.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 2px 10px 0 rgba(38,50,56,0.06);
  display: flex;
  flex-direction: column;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 10px 0 rgba(38,50,56,0.10);
  margin-bottom: 20px;
  position: relative;
  padding: 24px 20px;
  flex: 1 1 280px;
  min-width: 260px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 15px 0 rgba(38,50,56,0.15);
  transform: translateY(-2px) scale(1.015);
}

.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;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f5f7fa;
  border-radius: 16px;
  box-shadow: 0 1px 7px 0 rgba(38,50,56,.08);
  margin-bottom: 20px;
  flex-direction: column;
  min-width: 240px;
}
.testimonial-card p {
  color: #263238;
  font-style: italic;
  font-size: 1.125rem;
  margin-bottom: 10px;
}
.testimonial-card strong {
  color: #263238;
}

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

/******* HEADER & NAVIGATION ******/
header {
  background: linear-gradient(90deg, #e2eafc 0%, #f5f7fa 100%);
  padding: 0 0 0 0;
  box-shadow: 0 1px 8px 0 rgba(38,50,56,.05);
  position: relative;
  z-index: 20;
}
header nav {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 1rem;
  margin-right: 6px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background 0.18s, color 0.18s;
  color: #263238;
}
header nav a.cta-btn {
  background: linear-gradient(90deg, #4CAF50 60%, #388e3c 120%);
  color: #fff;
  font-weight: 700;
  padding: 9px 18px;
  border-radius: 20px;
  box-shadow: 0 2px 9px 0 rgba(76,175,80,0.09);
  margin-left: 16px;
  margin-right: 0;
  letter-spacing: 0.01em;
  transition: background 0.22s, box-shadow 0.22s, color 0.22s;
}
header nav a.cta-btn:hover, header nav a.cta-btn:focus {
  background: linear-gradient(90deg, #388e3c 60%, #4CAF50 120%);
  color: #fff;
  box-shadow: 0 4px 16px -2px rgba(76,175,80,0.16);
}
header nav a:hover, header nav a:focus {
  background: #e6f9ed;
  color: #4CAF50;
}
header nav a img {
  height: 36px;
  width: auto;
  margin-right: 14px;
  display: inline-block;
  vertical-align: middle;
}

/**** MOBILE NAVIGATION *****/
.mobile-menu-toggle {
  display: none;
  background: transparent;
  border: none;
  color: #263238;
  font-size: 2rem;
  margin-left: auto;
  cursor: pointer;
  padding: 8px 10px;
  z-index: 140;
  transition: background 0.18s;
  border-radius: 8px;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #e2eafc;
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #f5f7fa;
  box-shadow: 0 8px 40px 0 rgba(38,50,56,0.15);
  z-index: 200;
  transform: translateX(-100%);
  transition: transform 0.33s cubic-bezier(.77,0,.175,1);
  visibility: hidden;
  opacity: 0;
}
.mobile-menu.open {
  transform: translateX(0);
  visibility: visible;
  opacity: 1;
}
.mobile-menu-close {
  font-size: 2rem;
  background: transparent;
  color: #263238;
  border: none;
  cursor: pointer;
  align-self: flex-end;
  margin: 18px 24px 0 0;
  padding: 8px;
  z-index: 210;
  border-radius: 8px;
  transition: background 0.17s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #e2eafc;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 34px 32px 12px 32px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.25rem;
  padding: 12px 10px;
  border-radius: 10px;
  color: #263238;
  background: transparent;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  letter-spacing: 0.01em;
  font-weight: 500;
  transition: background 0.17s, color 0.17s;
  min-width: 140px;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #e6f9ed;
  color: #4CAF50;
}

/**** HERO AREA ****/
.hero {
  background: linear-gradient(95deg, #e2eafc 40%, #4CAF50 110%);
  padding: 40px 0 56px 0;
  margin-bottom: 60px;
  border-radius: 0 0 24px 24px;
  box-shadow: 0 8px 40px 0 rgba(76,175,80,0.06);
  display: flex;
  flex-direction: column;
}
.hero .container {
  align-items: stretch;
}
.hero .content-wrapper {
  align-items: flex-start;
  max-width: 730px;
  margin: 0 auto;
}
.hero h1 {
  color: #263238;
  text-shadow: 0px 3px 10px #ccc2;
}
.hero p {
  font-size: 1.375rem;
  margin-bottom: 18px;
  color: #263238;
}
.hero .cta-btn {
  margin-top: 10px;
}

/**** CTA BUTTON ****/
.cta-btn {
  background: linear-gradient(90deg, #4CAF50 60%, #388e3c 120%);
  color: #fff !important;
  padding: 12px 32px;
  border-radius: 22px;
  font-size: 1.125rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  box-shadow: 0 2px 14px 0 rgba(76,175,80,0.10);
  border: none;
  cursor: pointer;
  transition: background 0.19s, box-shadow 0.19s, color 0.19s;
  display: inline-block;
  margin-right: 0;
}
.cta-btn:hover, .cta-btn:focus {
  background: linear-gradient(90deg, #388e3c 70%, #4CAF50 120%);
  color: #fff !important;
  box-shadow: 0 4px 18px -2px rgba(60,240,100,0.14);
}

/**** SECTIONS - HOME, FEATURES, ETC. ****/
.features ul, .category-list ul, .benefits ul, .services-list ul, .mentorship-details ul, .text-section ul, .contact-info ul, .services-list ol, .renting-steps ol {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 14px;
}
.features ul li, .category-list ul li, .benefits ul li, .services-list ul li, .mentorship-details ul li, .text-section ul li, .contact-info ul li, .services-list ol li, .renting-steps ol li {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.06rem;
  background: #f5f7fa;
  border-radius: 8px;
  padding: 12px 16px 12px 14px;
  box-shadow: 0 1px 5px 0 rgba(38,50,56,0.02);
  margin-bottom: 0!important;
}
.features ul li img,
 .category-list ul li img,
 .benefits ul li img, .mentorship-details ul li img {
  width: 32px;
  height: 32px;
  margin-right: 6px;
}

/**** CTA SECTION ****/
.cta {
  background: linear-gradient(90deg, #e2eafc 0%, #4CAF50 140%);
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 2px 18px -4px rgba(76,175,80,0.10);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: #263238;
  margin-bottom: 18px;
}

/**** THANK YOU ****/
.thank-you {
  padding: 40px 0;
  margin-bottom: 60px;
  text-align: center;
}

/**** FOOTER ****/
footer {
  width: 100%;
  background: #263238;
  color: #fff;
  padding: 38px 0 18px 0;
  margin-top: 60px;
}
footer .container {
  align-items: center;
  justify-content: center;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
footer img {
  width: 58px;
  height: auto;
  margin-bottom: 8px;
}
footer nav {
  display: flex;
  gap: 22px;
  margin-bottom: 10px;
}
footer nav a {
  color: #c3e7dc;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  transition: color 0.15s;
}
footer nav a:hover,
footer nav a:focus {
  color: #4CAF50;
  text-decoration: underline;
}
footer > .container > .content-wrapper > div {
  font-size: 0.98rem;
  color: #e2eafc;
}

/**** POLICY PAGE SECTIONS ****/
.policy {
  background: #fff;
  border-radius: 20px;
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: 0 1px 8px 0 rgba(38,50,56,.04);
}
.policy h1, .policy h2 {
  color: #263238;
}
.policy ul {
  margin-left: 0;
}
.policy ul li {
  font-size: 1.06rem;
  margin-bottom: 0;
  background: #f5f7fa;
}
.policy a {
  color: #4CAF50;
  word-break: break-all;
}

/**** SPECIFIC PAGES & BLOCKS ****/
.text-section {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
.contact-info a {
  color: #4CAF50;
  text-decoration: underline;
}
.contact-info a:hover, .contact-info a:focus {
  color: #263238;
}

/**** MAP SECTION ****/
.map {
  background: #f5f7fa;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 36px 20px;
}
.map .content-wrapper {
  align-items: flex-start;
}

/**** CARD, FLEX, AND SPECIAL LAYOUTS ****/
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/**** COOKIE CONSENT BANNER & MODAL ****/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: #263238;
  color: #fff;
  padding: 26px 24px 22px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 -6px 32px 0 rgba(38,50,56,0.16);
  z-index: 5000;
  gap: 20px;
  font-size: 1.08rem;
  pointer-events: auto;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.33s, transform 0.33s;
}
.cookie-banner.active {
  opacity: 1;
  transform: translateY(0);
}
.cookie-banner-text {
  flex: 1 0 210px;
  margin-bottom: 10px;
  color: #fff;
}
.cookie-buttons {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-btn {
  background: #4CAF50;
  color: #fff;
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  padding: 9px 18px;
  border: none;
  cursor: pointer;
  transition: background 0.18s, color 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #388e3c;
  color: #fff;
}
.cookie-btn.secondary {
  background: #fff;
  color: #263238;
  border: 1px solid #c3e7dc;
  font-weight: 500;
}
.cookie-btn.secondary:hover, .cookie-btn.secondary:focus {
  background: #e2eafc;
}

.cookie-modal-overlay {
  position: fixed;
  z-index: 6000;
  top: 0; left: 0; bottom: 0; right: 0;
  width: 100vw; height: 100vh;
  background: rgba(38,50,56,.35);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.cookie-modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}
.cookie-modal {
  background: #fff;
  color: #263238;
  border-radius: 18px;
  box-shadow: 0 5px 32px 0 rgba(68,85,110,.18);
  min-width: 300px;
  max-width: 96vw;
  max-height: 92vh;
  padding: 34px 30px 18px 30px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
}
.cookie-modal h2 {
  font-size: 1.25rem;
  margin-bottom: 9px;
  color: #263238;
}
.cookie-modal .cookie-close {
  position: absolute;
  top:12px;
  right:14px;
  border: none;
  background: transparent;
  color: #263238;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  transition: background 0.19s;
}
.cookie-modal .cookie-close:hover {
  background: #e2eafc;
}
.cookie-modal .cookie-category {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}
.cookie-modal label {
  flex: 1;
  color: #37474f;
  font-size: 1rem;
}
.cookie-modal .cookie-switch {
  position: relative;
  display: inline-block;
  width: 42px;
  height: 24px;
}
.cookie-modal .cookie-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #e2eafc;
  border-radius: 18px;
  transition: background 0.2s;
}
.cookie-modal .cookie-switch input:checked + .slider {
  background: #4CAF50;
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 100%;
  box-shadow: 0 1px 6px #26323822;
  transition: transform 0.18s;
}
.cookie-modal .cookie-switch input:checked + .slider:before {
  transform: translateX(18px);
}
.cookie-modal .essential {
  color: #263238;
  font-weight: bold;
}
.cookie-modal-footer {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 10px;
  justify-content: flex-end;
}

/**** RESPONSIVE MEDIA QUERIES (MOBILE-FIRST) ****/
@media (max-width: 1024px) {
  .container {
    max-width: 96vw;
  }
}

@media (max-width: 900px) {
  .section, .policy, .cta, .map {
    padding: 28px 8px;
    margin-bottom: 42px;
  }
  .hero {
    padding: 30px 0 38px 0;
    margin-bottom: 40px;
  }
}

@media (max-width: 768px) {
  header nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
    position: absolute;
    top: 12px; right: 18px;
  }
  .hero .content-wrapper, .cta .content-wrapper, .container .content-wrapper {
    padding-left: 0;
    padding-right: 0;
  }
  .section, .policy, .cta, .map {
    padding: 20px 4px;
    margin-bottom: 34px;
  }
  .testimonial-card {
    padding: 18px 9px;
  }
  .content-grid, .card-container, .text-image-section {
    flex-direction: column;
    gap: 18px;
  }
  .features ul, .category-list ul, .benefits ul, .services-list ul, .mentorship-details ul, .text-section ul, .contact-info ul, .services-list ol, .renting-steps ol {
    gap: 10px;
    font-size: 0.98rem;
  }
}

@media (max-width: 600px) {
  .hero h1, .section h1 {
    font-size: 1.48rem;
    margin-bottom: 15px;
  }
  h2 {
    font-size: 1.16rem;
    margin-bottom: 10px;
  }
  body {
    font-size: 0.98rem;
  }
  .cta-btn {
    font-size: 0.99rem;
    padding: 10px 20px;
  }
  .cookie-banner-text {
    font-size: 0.99rem;
  }
}

/**** UTILITY/HELPERS ****/
.hide {
  display: none!important;
}
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

/* END OF CSS */
