/* ---------------------------------------------------------- */
/* RESET & BASE TYPOGRAPHY                                  */
/* ---------------------------------------------------------- */
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.6;
  background: #F5F7FA;
  color: #223B5A;
  font-family: 'Georgia', 'Times New Roman', Times, serif;
  min-height: 100vh;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #223B5A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FFB820;
  text-decoration: underline;
}

/* ---------------------------------------------------------- */
/* FONTS: Elegant Classic (Serif Emphasis)                   */
/* ---------------------------------------------------------- */
:root {
  --color-primary: #223B5A;
  --color-secondary: #F5F7FA;
  --color-accent: #FFB820;
  --color-bg: #F5F7FA;
  --color-text: #223B5A;
  --color-card: #FFFFFF;
  --color-muted: #e9ecef;
  --radius: 12px;
  --shadow-card: 0 4px 24px rgba(34, 59, 90, 0.08);
  --shadow-hover: 0 8px 32px rgba(34,59,90,.12);
  --transition: 0.25s cubic-bezier(.4,.2,.2,1);
  --font-display: 'Georgia', 'Times New Roman', Times, serif;
  --font-body: 'Georgia', 'Times New Roman', Times, serif;
  --font-sans: 'Montserrat', Arial, sans-serif;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  background: var(--color-bg);
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--color-primary);
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1.2;
  margin-bottom: 18px;
}
h1 { font-size: 2.5rem; margin-bottom: 18px; }
h2 { font-size: 2rem; margin-bottom: 14px; }
h3 { font-size: 1.375rem; margin-bottom: 10px; font-weight: 600; }
h4 { font-size: 1.125rem; }
.subtitle { color: #466B9D; font-size: 1.2rem; margin-bottom: 30px; }

p, ul, ol { font-size: 1.08rem; color: var(--color-text); margin-bottom: 20px; }
strong, b { font-weight: 700; }
ul, ol {
  padding-left: 24px;
  margin: 0 0 20px 0;
}
li {
  margin-bottom: 8px;
  line-height: 1.7;
}

/* ---------------------------------------------------------- */
/* LAYOUT CONTAINERS                                         */
/* ---------------------------------------------------------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: none;
}

@media (max-width: 992px) {
  .container { max-width: 98vw; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }
}
@media (max-width: 768px) {
  .container { max-width: 100vw; padding: 0 12px; }
  .section { padding: 30px 4vw; margin-bottom: 40px; }
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.2rem; }
}

/* ---------------------------------------------------------- */
/* HEADER/NAVIGATION                                         */
/* ---------------------------------------------------------- */
header {
  background: var(--color-card);
  box-shadow: 0 1px 10px rgba(34,59,90,0.04);
  padding: 0;
  z-index: 50;
}
.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0 18px 0;
}
header img {
  height: 44px;
  width: auto;
  margin-right: 18px;
}
.main-nav {
  display: flex;
  gap: 22px;
  align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
}
.main-nav a {
  color: var(--color-primary);
  padding: 4px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.18s, border-bottom 0.18s;
}
.main-nav a:hover, .main-nav a:focus {
  color: var(--color-accent);
  border-bottom: 2px solid var(--color-accent);
}
.cta-btn {
  display: inline-block;
  padding: 10px 30px;
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  box-shadow: var(--shadow-card);
  transition: background var(--transition), color var(--transition), box-shadow var(--transition);
  border: none;
  cursor: pointer;
  outline: none;
  margin-left: 10px;
  letter-spacing: 0.01em;
  text-align: center;
}
.cta-btn.accent {
  background: var(--color-accent);
  color: var(--color-primary);
}
.cta-btn.small {
  padding: 8px 18px;
  font-size: 1rem;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid var(--color-primary);
  box-shadow: var(--shadow-hover);
  text-decoration: none;
}
.cta-btn.accent:hover, .cta-btn.accent:focus {
  background: #fff1d2;
  color: var(--color-primary);
  border: 1px solid var(--color-accent);
}

/* MOBILE - Burger Menu */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 2.1rem;
  color: var(--color-primary);
  cursor: pointer;
  margin-left: 16px;
  transition: color 0.18s;
  z-index: 120;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 24px rgba(34,59,90,0.17);
  z-index: 2000;
  transform: translateX(-105%);
  transition: transform 0.38s cubic-bezier(.64,.01,.07,1.67);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 32px 22px 0 22px;
}
.mobile-menu.open {
  transform: translateX(0%);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-primary);
  align-self: flex-end;
  cursor: pointer;
  margin-bottom: 14px;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 22px;
  width: 100%;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--color-primary);
  padding: 14px 4px;
  border-radius: 8px;
  transition: background 0.16s, color 0.2s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--color-muted);
  color: var(--color-accent);
}

@media (max-width: 900px) {
  .mobile-menu {
    padding-top: 60px;
  }
}

/* ---------------------------------------------------------- */
/* HERO & HEADLINES                                          */
/* ---------------------------------------------------------- */
.hero {
  background: #f0f2f7;
  border-bottom: 1px solid #dde5ed;
  min-height: 350px;
  display: flex;
  align-items: center;
  padding-top: 20px;
  padding-bottom: 30px;
}
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  padding-top: 32px;
  padding-bottom: 32px;
}
.hero h1 {
  font-size: 2.4rem;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.hero .cta-btn {
  margin-top: 10px;
}
@media (max-width: 768px) {
  .hero {
    min-height: 180px;
    padding-top: 16px;
    padding-bottom: 18px;
  }
  .hero .content-wrapper {
    padding-top: 12px; padding-bottom: 16px;
  }
}

/* ---------------------------------------------------------- */
/* FLEXBOX SECTION PATTERNS                                  */
/* ---------------------------------------------------------- */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.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: #fff;
  color: var(--color-primary);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius);
  margin-bottom: 20px;
  min-width: 250px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-hover);
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .card-container, .content-grid {
    flex-direction: column;
    gap: 16px;
  }
}

/* ---------------------------------------------------------- */
/* FEATURES, TEAM, TESTIMONIALS                              */
/* ---------------------------------------------------------- */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin: 18px 0 0 0;
  justify-content: space-between;
}
.feature {
  flex: 1 1 250px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  padding: 32px 22px 22px 22px;
  min-width: 230px;
  max-width: 340px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.feature img {
  height: 42px;
  width: 42px;
  margin-bottom: 12px;
}
.feature:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px) scale(1.01);
}

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

.testimonials {
  background: #f9fafb;
}
.testimonial-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.testimonial-card {
  min-width: 240px;
  max-width: 390px;
  width: 100%;
  font-size: 1.08rem;
  flex-direction: column;
  align-items: flex-start;
  background: #fff;
  color: var(--color-primary);
  border-left: 5px solid var(--color-accent);
}
.testimonial-card .name {
  margin-top: 12px;
  font-family: var(--font-sans);
  font-size: 0.98rem;
  color: #7d8365;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.user-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffbf5;
  border-radius: var(--radius);
  padding: 12px 24px;
  margin-top: 20px;
  font-size: 1.10rem;
  font-family: var(--font-sans);
  color: var(--color-primary);
  border: 1px solid #e9ecef;
  font-weight: 600;
  box-shadow: 0 1px 4px rgba(34,59,90,0.06);
}

/* ---------------------------------------------------------- */
/* CTA SECTION                                               */
/* ---------------------------------------------------------- */
.cta {
  background: var(--color-primary);
  border-radius: var(--radius);
  color: #fff;
  box-shadow: var(--shadow-card);
  padding: 40px 20px;
  margin-bottom: 36px;
}
.cta h2,
.cta p {
  color: #fff;
}
.cta a.cta-btn {
  background: var(--color-accent);
  color: var(--color-primary);
  margin-top: 16px;
  font-size: 1.1rem;
}
.cta a.cta-btn:hover {
  background: #fff1d2;
}
.cta p a {
  color: var(--color-accent);
  text-decoration: underline;
}

/* ---------------------------------------------------------- */
/* CARD GRIDS: Reviews, News, Guides                         */
/* ---------------------------------------------------------- */
.review-cards,
.guide-cards, 
.news-cards, 
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}
.review-card,
.guide-card,
.news-card,
.team-member {
  background: var(--color-card);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  min-width: 240px;
  max-width: 350px;
  flex: 1 1 270px;
  padding: 28px 18px 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: box-shadow var(--transition), transform var(--transition);
  border-left: 4px solid #eee;
}
.review-card img,
.guide-card .guide-category {
  margin-bottom: 8px;
  align-self: flex-start;
}
.review-card img {
  height: 34px;
  width: 34px;
}
.review-card h3,
.guide-card h3,
.news-card h3 {
  font-size: 1.18rem;
  color: var(--color-primary);
}
.review-card .cta-btn,
.guide-card .cta-btn,
.news-card .cta-btn {
  margin-top: 10px;
  align-self: flex-start;
}
.review-card:hover, .guide-card:hover, .news-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-6px) scale(1.012);
  border-left: 4px solid var(--color-accent);
}

.guide-category {
  font-family: var(--font-sans);
  font-size: 0.93rem;
  color: #888;
  background: #f3f6f9;
  padding: 4px 14px;
  border-radius: 8px;
  display: inline-block;
  margin-bottom: 8px;
}

.news-date {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  color: #a7a7a7;
  margin-bottom: 5px;
}

@media (max-width: 800px) {
  .review-cards, .guide-cards, .news-cards, .team-grid {
    flex-direction: column;
    gap: 12px;
  }
  .review-card, .guide-card, .news-card {
    max-width: 100%;
    width: 100%;
  }
}

/* ---------------------------------------------------------- */
/* CATEGORIES STYLES                                         */
/* ---------------------------------------------------------- */
.categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}
.category {
  font-family: var(--font-sans);
  font-size: 1rem;
  padding: 7px 20px;
  border-radius: 24px;
  background: #fff;
  border: 1px solid #e0e6ef;
  color: var(--color-primary);
  transition: background 0.18s, color 0.18s, border 0.18s;
  margin-bottom: 4px;
  box-shadow: 0 2px 8px rgba(34,59,90,0.05);
}
.category:hover, .category:focus {
  background: #fbf7eb;
  color: var(--color-accent);
  border: 1px solid var(--color-accent);
}

/* ---------------------------------------------------------- */
/* TEXT SECTIONS & TEAM                                      */
/* ---------------------------------------------------------- */
.text-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.team-expertise {
  margin-top: 18px;
  color: #7a828e;
  font-family: var(--font-sans);
  font-size: 0.98rem;
}
.team-grid {
  margin-top: 16px;
}
.team-member {
  border-left: 5px solid var(--color-accent);
}

/* ---------------------------------------------------------- */
/* CONTACT PAGE                                              */
/* ---------------------------------------------------------- */
.contact-information {
  padding-bottom: 18px;
  margin-bottom: 10px;
}
.contact-information ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  font-size: 1.05rem;
}
.contact-information li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.contact-information img {
  width: 22px; height: 22px;
}

.success-message {
  background: #fffbf3;
  border: 1px solid #ffe6b0;
  border-radius: var(--radius);
  padding: 32px 22px;
  text-align: center;
  font-size: 1.12rem;
  color: var(--color-primary);
  font-family: var(--font-sans);
  margin-bottom: 10px;
  box-shadow: 0 2px 14px rgba(255, 184, 32, 0.06);
}

/* ---------------------------------------------------------- */
/* FOOTER                                                    */
/* ---------------------------------------------------------- */
footer {
  background: var(--color-card);
  border-top: 1px solid #e4e8ef;
  font-family: var(--font-display);
  color: var(--color-primary);
  padding-top: 22px;
  padding-bottom: 0;
  box-shadow: 0 -2px 12px rgba(34,59,90,0.04);
}
.footer-nav {
  display: flex;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 1rem;
  flex-wrap: wrap;
}
.footer-nav a {
  color: var(--color-primary);
}
.footer-nav a:hover, .footer-nav a:focus {
  color: var(--color-accent);
}
.footer-contact {
  margin-bottom: 18px;
  font-size: 0.98rem;
  color: #626a7b;
  line-height: 1.6;
}
.footer-contact img {
  height: 20px; width: 20px; vertical-align: middle; margin: 0 3px 0 0;
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
}
.footer-social a img {
  width: 28px;
  height: 28px;
  filter: grayscale(0.6);
  opacity: 0.8;
  transition: filter .2s, opacity .18s;
}
.footer-social a:hover img{ filter: none; opacity: 1; }
.copyright {
  text-align: right;
  font-size: 0.92rem;
  color: #7b7b7b;
  margin-top: 12px;
}
@media (max-width: 800px) {
  .footer-nav, .footer-social {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .copyright {
    text-align: left;
  }
}

/* ---------------------------------------------------------- */
/* COOKIE CONSENT BANNER & PREFERENCES MODAL                  */
/* ---------------------------------------------------------- */
.cookie-banner {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  background: #fffbe9;
  color: var(--color-primary);
  width: 100vw;
  box-shadow: 0 -4px 32px rgba(34,59,90,0.08);
  padding: 22px 18px 16px 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
  font-size: 1.09rem;
  font-family: var(--font-display);
  border-radius: 12px 12px 0 0;
  transition: transform 0.38s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.cookie-banner .cookie-btn {
  background: var(--color-secondary);
  color: var(--color-primary);
  border-radius: 8px;
  border: 1px solid #ffe6b0;
  font-family: var(--font-display);
  font-size: 1.02rem;
  padding: 8px 22px;
  cursor: pointer;
  transition: background 0.18s, color .18s, box-shadow var(--transition);
  box-shadow: 0 1px 6px rgba(34,59,90,0.04);
}
.cookie-banner .cookie-btn.accept {
  background: var(--color-accent);
  color: var(--color-primary);
  border: none;
}
.cookie-banner .cookie-btn.reject {
  background: #ebf0f4;
  color: #8e4700;
  border: 1px solid #ffe6b0;
}
.cookie-banner .cookie-btn.settings {
  background: #fff;
  color: var(--color-primary);
  border: 1px solid #eee;
}
.cookie-banner .cookie-btn:hover, .cookie-banner .cookie-btn:focus {
  box-shadow: 0 2px 12px #ffe6b060;
}
.cookie-banner .cookie-btn.accept:hover {
  background: #fff1d2;
}

/* Cookie Modal Overlay */
.cookie-modal-overlay {
  position: fixed; left: 0; top: 0; right: 0; bottom: 0;
  z-index: 99991;
  background: rgba(34,59,90,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s;
  animation: fadeIn .3s;
}
.cookie-modal {
  background: #fff;
  color: var(--color-primary);
  border-radius: var(--radius);
  max-width: 460px;
  width: 96vw;
  padding: 32px 26px 26px 26px;
  box-shadow: 0 12px 40px rgba(34,59,90,0.15);
  position: relative;
  font-family: var(--font-display);
  animation: popIn .4s cubic-bezier(.64,.01,.07,1.67);
}
.cookie-modal h3 {
  font-family: var(--font-display);
  font-size: 1.23rem;
  margin-bottom: 16px;
}
.cookie-modal ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 22px;
}
.cookie-modal li {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 10px;
  font-size: 1rem;
}
.cookie-modal label {
  font-size: 1rem;
  font-family: var(--font-display);
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 15px;
}
.cookie-modal-close {
  position: absolute; top: 14px; right: 14px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #7f7d80;
  cursor: pointer;
  opacity: 0.82;
  transition: color .18s;
}
.cookie-modal-close:hover {
  color: #E65100;
  opacity: 1;
}
.cookie-toggle {
  appearance: none;
  width: 32px; height: 18px;
  background: #f2f2f6;
  border-radius: 10px;
  position: relative;
  outline: none;
  transition: background .22s;
  border: 1px solid #f0eace;
}
.cookie-toggle:checked {
  background: #ffe6b0;
}
.cookie-toggle:after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 14px; height: 14px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 1px 5px #eed06b66;
  transition: left .22s;
}
.cookie-toggle:checked:after {
  left: 16px;
  background: var(--color-accent);
}

@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes popIn {
  from { transform: scale(.84) translateY(60px); opacity: 0; }
  to { transform: scale(1) translateY(0); opacity: 1; }
}

/* ---------------------------------------------------------- */
/* RESPONSIVE FLEX & ADJUSTMENTS                             */
/* ---------------------------------------------------------- */
@media (max-width: 600px) {
  .footer-contact, .team-expertise, .cookie-banner {
    font-size: 0.96rem;
  }
  .copyright {
    font-size: 0.9rem;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 20px 10px 16px 10px;
  }
  .cookie-banner .cookie-buttons {
    gap: 8px;
  }
  .cookie-modal {
    padding: 22px 8px 16px 8px;
  }
}

/* ---------------------------------------------------------- */
/* UTILITIES AND OVERRIDES                                   */
/* ---------------------------------------------------------- */
.hide { display: none !important; }

::-webkit-scrollbar {
  width: 12px;
  background: #eceef2;
}
::-webkit-scrollbar-thumb {
  background: #d6dbe6;
  border-radius: 8px;
}

/* ---------------------------------------------------------- */
/* ENHANCED INTERACTIONS: FOCUS & ACCESSIBILITY              */
/* ---------------------------------------------------------- */
a:focus, .cta-btn:focus, button:focus, .cookie-btn:focus {
  outline: 2px dashed var(--color-accent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #ffecc5a0;
}

button {
  font-family: var(--font-display);
  font-size: 1rem;
  cursor: pointer;
}

/* ---------------------------------------------------------- */
/* SPACING BETWEEN CARDS AND SECTIONS                        */
/* ---------------------------------------------------------- */
.card, .review-card, .guide-card, .news-card, .testimonial-card, .team-member {
  margin-bottom: 20px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container, .content-grid, .feature-grid, .testimonial-cards, .review-cards, .guide-cards, .news-cards, .team-grid {
  gap: 20px;
}

/* ---------------------------------------------------------- */
/* END                                                      */
/* ---------------------------------------------------------- */
