/* 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,
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 {
  scroll-behavior: smooth;
}
body {
  line-height: 1.5;
  font-family: 'Roboto', Arial, sans-serif;
  color: #232323;
  background: #FAFAFA;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  display: block;
}
ul, ol {
  list-style-position: inside;
}
a {
  color: #222;
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus {
  color: #2C3E50;
  text-decoration: underline;
}
hr {
  border: 0; border-top: 1px solid #ddd; margin: 32px 0;
}

/*--------------------------------------
  VARIABLES
--------------------------------------*/
:root {
  --color-primary: #2C3E50;
  --color-secondary: #F7C873;
  --color-accent: #F5F7FA;
  --color-black: #1a1a1a;
  --color-white: #fff;
  --color-gray-dark: #232323;
  --color-gray-medium: #999;
  --color-gray-light: #f4f4f4;
  --shadow: 0 2px 24px rgba(34,34,34,0.08), 0 1.5px 3px rgba(44,62,80,0.14);
  --radius: 16px;
  --radius-btn: 30px;
}

/*--------------------------------------
  TYPOGRAPHY
--------------------------------------*/
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: var(--color-gray-dark);
  font-size: 16px;
  background: var(--color-white);
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', serif;
  color: var(--color-black);
  font-weight: 700;
  letter-spacing: -.02em;
}
h1 { font-size: 2.5rem; margin-bottom: 16px; line-height: 1.15; }
h2 { font-size: 2rem; margin-bottom: 14px; line-height: 1.2; }
h3 { font-size: 1.35rem; margin-bottom: 8px; line-height: 1.24; }
p, ul, li, blockquote {
  font-size: 1rem;
  color: var(--color-gray-dark);
  line-height: 1.7;
}
blockquote {
  font-family: 'Merriweather', serif;
  color: #555;
  font-size: 1.15rem;
  background: #F8F8F8;
  font-style: italic;
  padding: 18px 32px;
  border-left: 4px solid #2C3E50;
  margin: 30px 0;
  border-radius: var(--radius);
}
strong {
  font-weight: 700;
  color: #232323;
}
.small, small {
  font-size: 0.93em;
  color: #888;
}

/*--------------------------------------
  CONTAINER & LAYOUT SPACING
--------------------------------------*/
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
}
.section, section {
  margin-bottom: 60px !important;
  padding: 40px 20px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width:768px) {
  .content-wrapper {
    gap: 24px;
  }
}

/*--------------------------------------
  HEADER & MAIN NAVIGATION
--------------------------------------*/
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(44,62,80,0.04);
  position: sticky;
  top: 0; left: 0; width: 100%;
  z-index: 100;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px; padding-bottom: 12px;
  gap: 18px;
}
.logo img {
  height: 46px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}
.main-nav a {
  font-family: 'Merriweather', serif;
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  transition: color .22s;
  border-radius: 6px;
  padding: 7px 11px;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta-header {
  margin-left: 16px;
}

/* MOBILE MAIN NAV */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  padding: 7px 13px;
  border-radius: var(--radius-btn);
  cursor: pointer;
  transition: background .18s;
  z-index: 103;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: #edecec;
}
@media (min-width: 1025px) {
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 1024px) {
  .main-nav { display: none !important; }
}

/*--------------------------------------
  MOBILE SLIDING MENU
--------------------------------------*/
.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 3000;
  transform: translateX(100%);
  transition: transform .45s cubic-bezier(.77,.2,.18,1);
  display: flex;
  flex-direction: column;
  padding: 0;
  will-change: transform;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: none;
  border: none;
  font-size: 2.1rem;
  margin: 18px 22px 8px 0;
  cursor: pointer;
  color: #2C3E50;
  transition: color .2s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  color: #F7C873;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
  padding: 30px 0;
  margin-top: 18px;
}
.mobile-nav a {
  font-family: 'Merriweather', serif;
  color: var(--color-primary);
  font-size: 1.19rem;
  background: none;
  border-radius: 7px;
  padding: 14px 28px;
  font-weight: 500;
  transition: background .18s, color .20s;
  min-width: 190px;
  text-align: center;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-accent);
}
@media (max-width: 480px) {
  .mobile-nav a {
    font-size: 1.07rem;
    min-width: 150px;
    padding: 11px 8px;
  }
}
@media (min-width:1025px) {
  .mobile-menu {
    display: none !important;
  }
}

/*--------------------------------------
  BUTTONS & INTERACTIVE ELEMENTS
--------------------------------------*/
.button, .button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 36px;
  background: var(--color-primary);
  color: var(--color-white);
  border: none;
  border-radius: var(--radius-btn);
  font-family: 'Merriweather', serif;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow: 0 1.5px 6px rgba(44,62,80,.05);
  transition: background .18s, color .23s, box-shadow .23s;
  text-shadow: none;
  margin-top: 12px;
  margin-bottom: 5px;
}
.button.primary:hover, .button.primary:focus {
  background: #232323;
  color: var(--color-secondary);
  box-shadow: 0 2px 16px rgba(44,62,80,.14);
  text-decoration: none;
}
.button.secondary {
  background: #fff;
  color: #2C3E50;
  border: 1px solid #2C3E50;
  margin-left: 10px;
}
.button.secondary:hover, .button.secondary:focus {
  background: #2C3E50;
  color: #fff;
}

/*--------------------------------------
  HERO SECTION
--------------------------------------*/
.hero {
  width: 100%;
  background: linear-gradient(120deg,#FAFAFA 62%,#E7E7E7 100%);
  padding-top: 62px;
  padding-bottom: 62px;
  display: flex;
  align-items: center;
  margin-bottom: 60px;
}
.hero .container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.hero h1 {
  color: var(--color-primary);
  font-size: 2.5rem;
  margin-bottom: 18px;
}
.hero p {
  font-size: 1.18rem;
  color: #232323;
  margin-bottom: 22px;
}
.hero .button.primary {
  font-size: 1.09rem;
}
@media (max-width: 770px) {
  .hero {
    padding-bottom: 38px;
    padding-top: 38px;
  }
  .hero h1 {
    font-size: 2rem;
  }
}

/*--------------------------------------
  FEATURES SECTION
--------------------------------------*/
.features {
  width: 100%;
  background: var(--color-white);
  border-radius: var(--radius);
  margin-bottom: 60px;
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  margin-bottom: 10px;
  align-items: stretch;
}
.features .feature-grid li {
  flex: 1 1 210px;
  min-width: 200px;
  background: #FBFBFB;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 20px 21px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 19px;
  border: 1.5px solid #ECECEC;
  transition: box-shadow .21s, border .18s;
  margin-bottom: 20px;
}
.features .feature-grid li:hover, .features .feature-grid li:focus-within {
  box-shadow: 0 4px 22px rgba(44,62,80,.13);
  border: 1.5px solid var(--color-secondary);
  z-index: 1;
}
.features .feature-grid img {
  width: 40px; height: 40px;
}
.features .feature-grid h3 {
  font-size: 1.18rem;
  color: var(--color-primary);
}
.features .feature-grid p {
  font-size: 1.03rem;
  color: #444;
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .features .feature-grid {
    flex-direction: column;
    gap: 16px;
  }
  .features .feature-grid li { width: 100%; }
}

/*--------------------------------------
  VALUES / ABOUT / LISTS
--------------------------------------*/
.values-list, .commitment-points, .benefits-list, .impact-statistics, .requirements-list, .donation-options, .volunteer-list, .cookie-types, .user-rights-list, .contact-details-list {
  display: flex;
  flex-direction: column;
  gap: 17px;
  margin-bottom: 12px;
  padding-left: 0;
  margin-top: 14px;
}
.values-list li,
.commitment-points li, .donation-options li, .benefits-list li, .impact-statistics li, .requirements-list li, .volunteer-list li, .cookie-types li, .user-rights-list li, .contact-details-list li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1.06em;
  color: #212121;
  padding-left: 0.1em;
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
}
.values-list li:before, .commitment-points li:before {
  content: '\2022';
  color: var(--color-secondary);
  font-size: 1.3em;
  margin-right: 7px;
}
/* Remove dot where icons are present */
.contact-details-list li:before { content: none; }
.contact-details-list img {
  width: 22px; height: 22px; margin-right: 12px;
}

/*--------------------------------------
  CTA / CALL TO ACTION BLOCK
--------------------------------------*/
.cta-block {
  width: 100%;
  background: linear-gradient(94deg,#fff 70%,#f3f3f3 100%);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.cta-block h2 {
  color: var(--color-primary);
}
.cta-block p {
  color: #353535;
}

/*--------------------------------------
  TESTIMONIALS
--------------------------------------*/
.testimonials, .success-testimonials {
  width: 100%;
  margin-bottom: 60px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 22px 26px;
  margin: 18px 0 22px 0;
  background: #F9F9F9;
  color: #232323;
  border-radius: var(--radius);
  box-shadow: 0 2.5px 14px rgba(44,62,80,0.07);
  border: 1.5px solid #ececec;
  min-width: 220px;
  transition: box-shadow .19s, border .16s;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 2px 22px rgba(44,62,80,0.13);
  border: 1.5px solid var(--color-secondary);
}
.testimonial-card p {
  font-size: 1.15em;
  color: #232323;
  margin-bottom: 2px;
  font-family: 'Merriweather', serif;
  font-style: italic;
}
.testimonial-meta {
  font-size: 1em;
  font-weight: bold;
  color: #444;
  margin-left: 1em;
  font-family: 'Roboto', Arial, sans-serif;
}

blockquote {
  background: #EEE;
  color: #232323;
  border-left: 4px solid var(--color-primary);
  margin-top: 30px; margin-bottom: 30px;
  font-family: 'Merriweather', serif;
  border-radius: 10px;
}

/*--------------------------------------
  FOOTER
--------------------------------------*/
footer {
  background: #222;
  color: #fff;
  padding: 38px 0 18px 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -2px 28px rgba(44,62,80,0.10);
  margin-top: 56px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 34px;
  justify-content: space-between;
}
.footer-logo img {
  height: 50px;
  width: auto;
  filter: grayscale(1) brightness(2);
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-right: 20px;
  margin-bottom: 18px;
}
.footer-nav a {
  color: #e7e7e7;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  transition: color .15s;
  opacity: 0.85;
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-secondary);
  opacity: 1;
}
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 7px;
  color: #FFF;
  font-size: 1rem;
}
.footer-contact img {
  width: 18px; height: 18px;
  margin-right: 7px; vertical-align: -4px;
  filter: grayscale(1) brightness(2);
}

@media (max-width: 900px) {
  footer .container {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

/*--------------------------------------
  CARDS & CARD CONTAINERS
--------------------------------------*/
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #f8f8f8;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 11px rgba(44,62,80,0.08);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow .20s, border .14s;
  border: 1.4px solid #ececec;
}
.card:hover, .card:focus-within {
  box-shadow: 0 3px 22px rgba(44,62,80,0.13);
  border: 1.4px solid var(--color-secondary);
}
.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 29px 23px;
  gap: 14px;
}

/*--------------------------------------
  FLEX LAYOUTS
--------------------------------------*/
.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;
}

/*--------------------------------------
  RESPONSIVE QUERIES
--------------------------------------*/
@media (max-width: 768px) {
  .section, section {
    padding: 28px 8px;
    margin-bottom: 38px !important;
  }
  .content-grid,
  .card-container,
  .card-content,
  .footer-nav {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: flex-start !important; 
  }
  .cta-header {
    margin-left: 0;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }
}
@media (max-width: 480px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.17rem; }
  .footer-logo img { height: 37px; }
}

/*--------------------------------------
  COOKIE CONSENT BANNER
--------------------------------------*/
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100vw;
  z-index: 6000;
  background: #232323;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 22px 16px 22px 32px;
  box-shadow: 0 -2px 22px rgba(44,62,80,0.13);
  font-size: 1em;
  transition: transform .3s;
  gap: 18px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.cookie-banner.hide {
  transform: translateY(100%);
  pointer-events: none;
  opacity: 0.7;
}
.cookie-banner p {
  color: #fff;
  font-size: 1.07em;
  margin-bottom: 0;
}
.cookie-banner .cookie-btns {
  display: flex;
  flex-direction: row;
  gap: 13px;
}
.cookie-banner button {
  padding: 8px 24px;
  border-radius: 21px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  border: none;
  margin: 0;
  cursor: pointer;
  transition: background .20s, color .19s, box-shadow .22s;
}
.cookie-banner .accept {
  background: var(--color-secondary);
  color: #232323;
  box-shadow: 0 1px 4px rgba(44,62,80,.09);
}
.cookie-banner .accept:hover, .cookie-banner .accept:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-banner .reject {
  background: #eee;
  color: #232323;
}
.cookie-banner .reject:hover, .cookie-banner .reject:focus {
  background: #fff;
  color: #111;
}
.cookie-banner .settings {
  background: transparent;
  color: var(--color-secondary);
  border: 1px solid var(--color-secondary);
}
.cookie-banner .settings:hover, .cookie-banner .settings:focus {
  background: var(--color-secondary);
  color: #232323;
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal-backdrop {
  position: fixed; top:0; left:0; right:0; bottom:0;
  width: 100vw; height: 100vh;
  background: rgba(30,30,30,0.57);
  z-index: 6010;
  display: flex;
  justify-content: center; align-items: center;
  pointer-events: auto;
  opacity: 1; transition: opacity .3s;
}
.cookie-modal-backdrop.hide { opacity: 0; pointer-events: none; }
.cookie-modal {
  background: #fff;
  color: #232323;
  border-radius: var(--radius);
  min-width: 325px;
  max-width: 97vw;
  box-shadow: 0 12px 44px rgba(44,62,80,0.16);
  z-index: 6020;
  padding: 32px 26px 22px 26px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  animation: fadeInUpCookie .36s cubic-bezier(.77,.2,.18,1);
}
@keyframes fadeInUpCookie {
  from { transform: translateY(120px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}
.cookie-modal h3 {
  color: var(--color-primary);
  font-size: 1.18em;
  margin-bottom: 8px;
}
.cookie-modal .cookie-cat {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-modal .cookie-cat label {
  flex: 1 1 auto;
  font-weight: 500;
}
.cookie-modal .switch {
  position: relative;
  width: 38px;
  height: 20px;
  display: inline-block;
}
.cookie-modal .switch input { display: none; }
.cookie-modal .slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: #eee;
  border-radius: 15px;
  transition: .2s;
}
.cookie-modal .switch input:checked + .slider {
  background-color: var(--color-secondary);
}
.cookie-modal .slider:before {
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 2px;
  bottom: 2px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 4px rgba(44,62,80,.17);
  transition: .2s;
}
.cookie-modal .switch input:checked + .slider:before {
  transform: translateX(18px);
  background: #232323;
}
.cookie-modal .modal-btns {
  display: flex;
  gap: 17px;
  margin-top: 14px;
}
.cookie-modal button {
  padding: 8px 24px;
  border-radius: 21px;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1em;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background .20s, color .18s, box-shadow .21s;
}
.cookie-modal .save {
  background: var(--color-secondary);
  color: #232323;
}
.cookie-modal .save:hover,
.cookie-modal .save:focus {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cookie-modal .close {
  background: #eee;
  color: #444;
}
.cookie-modal .close:hover,
.cookie-modal .close:focus {
  background: #fff;
  color: #232323;
}

/*--------------------------------------
  MISCELLANEOUS
--------------------------------------*/
.map-placeholder {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 19px 9px;
}
.address {
  font-style: normal;
  color: #444;
  font-weight: 700;
}
.gratitude-message {
  background: #F7C873;
  color: #232323;
  padding: 20px 28px;
  border-radius: var(--radius);
  font-size: 1.07em;
  font-family: 'Merriweather', serif;
  margin-top: 18px;
}
.operating-hours, .note {
  padding: 8px 0 0 0;
  color: #999;
  font-size: 0.98em;
}
@media (max-width:460px) {
  .cookie-modal {
    min-width: 98vw;
    padding: 16px 8px;
  }
  .cookie-banner { flex-direction: column; align-items: flex-start; gap: 11px; }
}

/*--------------------------------------
  SCROLLBAR STYLING
--------------------------------------*/
body::-webkit-scrollbar {
  width: 11px;
  background: #f6f6f6;
}
body::-webkit-scrollbar-thumb {
  background: #b3b3b3;
  border-radius: 12px;
}
body::-webkit-scrollbar-thumb:hover {
  background: #888;
}

/*--------------------------------------
  ANIMATIONS
--------------------------------------*/
.button, .button.primary, .button.secondary, .mobile-menu-toggle, .mobile-menu-close,
.testimonial-card, .card, .feature-grid li, .cookie-banner button, .cookie-modal button {
  transition: background .22s, color .19s, box-shadow .18s, border .14s, transform .15s;
}
.button:active, .button.primary:active, .button.secondary:active,.mobile-menu-toggle:active, .mobile-menu-close:active {
  transform: scale(.97);
}

/* END CSS */
