/* =========================
   CSS Reset & Normalize
========================= */
html {
  box-sizing: border-box;
  font-size: 100%;
  scroll-behavior: smooth;
}
*, *:before, *:after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  color: #22252A;
  background: #F5F7FA;
  min-height: 100vh;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}
img, svg {
  max-width: 100%;
  display: block;
  height: auto;
}
ul, ol {
  padding-left: 1.5em;
  margin-bottom: 20px;
}
li {
  margin-bottom: 8px;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}
::-webkit-input-placeholder { color: #888; }
::-moz-placeholder { color: #888; }
:-ms-input-placeholder { color: #888; }
::placeholder { color: #888; }
a {
  color: #20507A;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #D1A934;
}

/* ====================
   Typography & Headings
==================== */
h1, .display {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  color: #12263A;
  font-size: 2.5rem;
  line-height: 1.18;
  margin-bottom: 0.75em;
  letter-spacing: -0.5px;
}
h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #1D3557;
  font-size: 1.75rem;
  margin-bottom: 0.7em;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: #22304E;
  font-size: 1.25rem;
  margin-bottom: 0.6em;
}
h4 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  color: #20507A;
  font-size: 1.1rem;
  margin-bottom: 0.5em;
}
p, address, blockquote {
  font-size: 1rem;
  margin-bottom: 1em;
}
blockquote {
  margin: 0 0 1em 0;
  border-left: 4px solid #F7C948;
  padding-left: 1em;
  font-style: italic;
  color: #22304E;
}
strong {
  font-weight: 700;
}

/* =============================
   Luxury Premium Brand Colors
============================= */
:root {
  --primary: #20507A;
  --primary-dark: #12263A;
  --secondary: #F7C948;
  --accent: #F5F7FA;
  --gold: #D1A934;
  --offwhite: #F8F9FC;
  --card-bg: #fff;
  --section-bg: #F8F6F2;
  --shadow: 0 2px 18px rgba(32,80,122,0.06), 0 1.5px 9px rgba(209,169,52,0.09);
}

/* ====================
   Utility Classes
==================== */
.container {
  width: 100%;
  max-width: 1220px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.section {
  background: var(--section-bg);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.text-section,
.text-section.rating-summary {
  margin-top: 24px;
  font-size: 1.08rem;
}
@media (max-width: 1200px) {
  .container {
    max-width: 96vw;
  }
}
@media (max-width: 768px) {
  .container {
    padding: 0 10px;
  }
  .section {
    padding: 30px 10px;
    margin-bottom: 40px;
  }
}

/* =========================
   HEADER & NAVIGATION
========================= */
header {
  background: var(--card-bg);
  border-bottom: 1.5px solid #eee;
  box-shadow: 0 2px 10px -8px rgba(32,80,122,0.07);
  position: sticky;
  top: 0;
  z-index: 90;
}
header .container {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 0 24px;
}
.logo {
  display: flex;
  align-items: center;
  min-width: 135px;
}
nav {
  display: flex;
  gap: 18px;
  align-items: center;
}
nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: var(--primary);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}
nav a::after {
  content: "";
  display: block;
  width: 0%;
  height: 2px;
  background: var(--gold);
  transition: width 0.35s;
  position: absolute;
  bottom: 0; left: 0;
  border-radius: 2px;
}
nav a:hover::after,
nav a:focus::after {
  width: 80%;
}
@media (max-width: 1024px) {
  header .container {
    padding: 0 10px;
  }
  nav {
    gap: 6px;
  }
}

/* =======================
   MOBILE NAVIGATION MENU
======================= */
.mobile-menu-toggle {
  display: none;
  background: var(--gold);
  border: none;
  color: #fff;
  font-size: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(32,80,122,0.06), 0 0.5px 2px rgba(209,169,52,0.09);
  cursor: pointer;
  justify-content: center;
  align-items: center;
  margin-left: 8px;
  transition: background 0.2s, color 0.2s;
  z-index: 200;
}
.mobile-menu-toggle:focus,
.mobile-menu-toggle:hover {
  background: #ba971d;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #fff;
  box-shadow: 0 8px 32px rgba(32,80,122,0.23);
  transform: translateX(-100vw);
  transition: transform 0.35s cubic-bezier(0.8,0.2,0.2,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: 0;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  background: transparent;
  color: var(--primary);
  font-size: 2.1rem;
  margin: 24px 24px 0 0;
  border: none;
  cursor: pointer;
  z-index: 1100;
  transition: color 0.2s;
}
.mobile-menu-close:focus,
.mobile-menu-close:hover {
  color: var(--gold);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 32px 32px 0 32px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.31rem;
  color: var(--primary-dark);
  padding: 16px 0;
  border-bottom: 1px solid #eee;
  transition: color 0.2s;
  font-weight: 600;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: var(--gold);
}
@media (max-width: 1024px) {
  nav { display: none !important; }
  .mobile-menu-toggle { display: flex; }
  .cta.primary { display: none; }
}
@media (min-width: 1025px) {
  .mobile-menu, .mobile-menu-toggle { display: none !important; }
}

/* =========================
   HERO & SECTION STYLES
========================= */
.hero, .lifehacks-hero, .inspiration-hero, .blog-hero, .tipps-hero, .thank-you-message, .about-mission {
  background: linear-gradient(90deg,#fff 75%,#F7C948 220%);
  box-shadow: 0 4px 24px rgba(209,169,52,0.05);
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
  padding: 56px 0 32px 0;
}
.hero .content-wrapper, .lifehacks-hero .content-wrapper, .blog-hero .content-wrapper, .inspiration-hero .content-wrapper,
.about-mission .content-wrapper, .thank-you-message .content-wrapper, .tipps-hero .content-wrapper {
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 0 8px;
  max-width: 760px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .hero, .lifehacks-hero, .inspiration-hero, .blog-hero, .tipps-hero, .about-mission, .thank-you-message {
    padding: 35px 0 18px 0;
    margin-bottom: 32px;
    border-radius: 0 0 20px 20px;
  }
}

/* ===== CTA BUTTONS ===== */
.cta {
  display: inline-block;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  text-align: center;
  padding: 13px 38px;
  border-radius: 36px;
  background: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 1.5px 8px rgba(32,80,122,0.07), 0 0.7px 2px rgba(247,201,72,0.13);
  margin-top: 12px;
  margin-bottom: 12px;
  transition: background 0.23s, color 0.23s, box-shadow 0.23s, transform 0.15s;
  text-decoration: none;
}
.cta.primary {
  background: var(--secondary);
  color: #204056;
  box-shadow: 0 1.5px 8px rgba(209,169,52,0.10), 0 1px 4px rgba(32,80,122,0.08);
}
.cta.secondary {
  background: var(--primary);
  color: #fff;
}
.cta:hover, .cta:focus {
  background: #D1A934;
  color: #fff;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 6px 20px rgba(32,80,122,0.14);
}
@media (max-width: 480px) {
  .cta {
    padding: 12px 22px;
    font-size: 1rem;
  }
}

/* =========================
   CARDS, GRID, FEATURES
========================= */
.card-container, .feature-grid, .feature-icons, .hack-categories, .team-bios, .testimonials-list, .blog-previews, .tips-grid, .tipps-grid, .faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  align-items: stretch;
}
.card, .feature, .testimonial-card, .news-card, .team-bio, .blog-preview, .tips-card {
  background: var(--card-bg);
  box-shadow: 0 1.5px 8px rgba(32,80,122,0.06), 0 0.7px 2px rgba(247,201,72,0.10);
  border-radius: 18px;
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.24s, transform 0.12s;
  min-width: 240px;
  flex: 1 1 255px;
}
.card:hover, .feature:hover, .testimonial-card:hover, .blog-preview:hover {
  box-shadow: 0 6px 22px rgba(32,80,122,0.14);
  transform: translateY(-3px) scale(1.012);
}
.feature img, .feature svg {
  width: 44px;
  height: 44px;
  margin-bottom: 13px;
}
.feature h3 {
  color: var(--primary-dark);
  font-size: 1.17rem;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .card-container, .feature-grid, .feature-icons, .team-bios, .hack-categories, .blog-previews, .tipps-grid, .faq-accordion {
    gap: 18px;
  }
  .card, .feature, .testimonial-card, .team-bio, .blog-preview, .tips-card {
    padding: 20px 14px;
  }
}
@media (max-width: 680px) {
  .card-container, .feature-grid, .feature-icons, .hack-categories, .team-bios, .blog-previews, .tipps-grid, .faq-accordion {
    flex-direction: column;
    gap: 14px;
  }
  .card, .feature, .testimonial-card, .team-bio, .blog-preview, .tips-card {
    min-width: unset;
  }
}

/* =========================
   SECTION & FLEX PATTERNS
========================= */
.section {
  background: var(--section-bg);
  margin-bottom: 60px;
  padding: 40px 20px;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  border-radius: 16px;
}
.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;
  padding: 20px;
  background: #fff;
  border: 1px solid #f5e4ca;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 18px rgba(32,80,122,0.08);
  min-width: 230px;
  max-width: 420px;
  margin-bottom: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}
@media (max-width: 768px) {
  .content-grid,
  .text-image-section {
    flex-direction: column;
    gap: 20px;
  }
}

/* =========================
   TESTIMONIALS & RATINGS
========================= */
.testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.testimonial-card {
  color: #233045;
  background: #fff;
  border-left: 4px solid var(--gold);
  border-radius: 20px;
  box-shadow: 0 2px 12px rgba(32,80,122,0.07);
  font-size: 1.04rem;
  transition: box-shadow 0.18s;
  margin-bottom: 20px;
}
.testimonial-card p {
  font-style: italic;
  color: #22304E;
}
.testimonial-card span {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #9d8726;
  font-weight: 600;
  margin-top: 6px;
}
.rating-summary {
  background: var(--offwhite);
  border-radius: 12px;
  padding: 18px 18px 18px 12px;
  box-shadow: 0 1px 5px rgba(32,80,122,0.05);
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  color: #1D3557;
}
.rating-summary img {
  vertical-align: middle;
  width: 32px;
  height: auto;
  margin-right: 10px;
}

/* =========================
   SECTIONS: FEATURES, CTA
========================= */
.features {
  background: var(--section-bg);
  border-radius: 20px;
  padding: 35px 0 32px 0;
  margin-bottom: 56px;
  box-shadow: var(--shadow);
}
.features .content-wrapper,
.feature-grid,
.feature-icons {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.features .feature {
  flex: 1 1 230px;
  min-width: 230px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(32,80,122,0.08);
  transition: box-shadow 0.2s;
  padding: 28px 22px;
  border: 1.5px solid #faebd7;
  position: relative;
}
.features .feature:hover {
  box-shadow: 0 6px 28px rgba(32,80,122,0.13);
}
@media (max-width: 900px) {
  .features .content-wrapper, .feature-grid, .feature-icons {
    gap: 20px;
  }
}
@media (max-width: 700px) {
  .features .content-wrapper, .feature-grid, .feature-icons {
    flex-direction: column;
    gap: 12px;
  }
  .features .feature {
    min-width: unset;
  }
}

/* CTA - Newsletter & Community */
.cta.community-cta, .cta.newsletter-cta, .cta.submit-cta, .features.inspiration-cta {
  background: #F5F7FA;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
  padding: 34px 18px;
}
.newsletter p{
  color:#204056;
}
.cta.community-cta h2, .cta.newsletter-cta h2, .features.inspiration-cta h2 {
  color: var(--primary);
}
.cta.community-cta .newsletter, .newsletter-cta .content-wrapper, .community-cta .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* =========================
   SEARCH & SELECT STYLES
========================= */
.search-bar {
  display: flex;
  flex-direction: row;
  gap: 14px;
  margin-top: 18px;
  align-items: center;
}
.search-bar input[type="text"] {
  background: #fff;
  border: 1.5px solid #bed3ed;
  padding: 10px 14px;
  border-radius: 20px;
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  min-width: 180px;
  transition: border 0.2s;
}
.search-bar input[type="text"]:focus {
  border: 1.5px solid var(--primary);
}
.search-bar label {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  color: var(--primary);
}
.category-filter {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}
.category-filter select {
  border-radius: 14px;
  border: 1.5px solid #e5e8ef;
  padding: 8px 14px;
  color: #506480;
  font-family: 'Roboto', Arial, sans-serif;
}
@media (max-width: 600px) {
  .search-bar, .category-filter {
    flex-direction: column;
    align-items: stretch;
    gap: 5px;
  }
}

/* =========================
   BLOG & ARTICLE CARDS
========================= */
.blog-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.blog-previews article {
  flex: 1 1 320px;
  background: var(--card-bg);
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(32,80,122,0.07);
  padding: 26px 20px 18px 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-left: 4px solid var(--gold);
  min-width: 230px;
  transition: box-shadow 0.18s;
}
.blog-previews article:hover {
  box-shadow: 0 7px 26px rgba(32,80,122,0.14);
}
.blog-previews h3 {
  color: var(--primary-dark);
  margin-bottom: 8px;
}
.blog-previews p {
  color: #37424F;
}
.blog-previews a {
  align-self: flex-start;
  margin-top: 10px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
  border-bottom: 1.5px solid var(--gold);
  transition: color 0.2s;
}
.blog-previews a:hover {
  color: var(--gold);
}

/* =========================
   FOOTER
========================= */
footer {
  background: #fff;
  border-top: 1.5px solid #d8dadc;
  padding: 42px 0 32px 0;
  margin-top: 46px;
}
footer .container {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  color: #22304E;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.footer-nav a:hover {
  color: var(--gold);
}
.footer-contact {
  font-size: 0.95rem;
  color: #405475;
  font-family: 'Roboto', Arial, sans-serif;
  margin-bottom: 2px;
  padding-right: 16px;
  max-width: 380px;
}
.footer-contact a {
  color: var(--primary);
  text-decoration: underline;
}
.brand-logo {
  align-self: flex-end;
  margin-top: 8px;
}
.brand-logo img {
  width: 64px;
  height: auto;
  filter: drop-shadow(0 1.5px 2px rgba(32,80,122,0.09));
}
@media (max-width: 800px) {
  footer .container {
    flex-direction: column;
    align-items: stretch;
    gap: 26px;
  }
  .brand-logo {
    align-self: flex-start;
    margin-top: 0;
  }
}

/* =========================
   COOKIE CONSENT BANNER
========================= */
.cookie-consent-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fffbe7;
  border-top: 1.5px solid #e7dbbf;
  box-shadow: 0 -3px 16px rgba(32,80,122,0.07);
  z-index: 980;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 28px;
  padding: 21px 16px;
  font-size: 1.01rem;
  transition: transform 0.42s cubic-bezier(.77,0,.18,1);
  will-change: transform;
}
.cookie-consent-banner.hide {
  transform: translateY(100%);
}
.cookie-consent-banner p {
  color: #1D3557;
  margin: 0;
  padding-right: 18px;
  max-width: 540px;
}
.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.cookie-buttons .cta {
  box-shadow: none;
  border-radius: 24px;
  padding: 10px 26px;
  font-size: 1rem;
  margin: 0;
}
.cookie-buttons .accept {
  background: var(--secondary);
  color: #204056;
}
.cookie-buttons .accept:hover {
  background: #D1A934;
}
.cookie-buttons .reject {
  background: #fff;
  color: #b2442c;
  border: 1px solid #F7C948;
}
.cookie-buttons .reject:hover {
  background: #f3e8c7;
}
.cookie-buttons .settings {
  background: #ebeff5;
  color: var(--primary);
  border: 1px solid #dde7f3;
}
.cookie-buttons .settings:hover {
  background: #d0d7e0;
}
@media (max-width: 650px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px 4px;
  }
  .cookie-buttons {
    flex-direction: column;
    gap: 7px;
  }
}

/* COOKIE MODAL */
.cookie-modal-overlay {
  display: none;
  position: fixed;
  z-index: 1200;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(32,80,122,0.12);
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.23s;
}
.cookie-modal-overlay.active {
  display: flex;
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 20px;
  padding: 38px 32px 28px 32px;
  box-shadow: 0 3px 28px rgba(32,80,122,0.18);
  min-width: 300px;
  max-width: 98vw;
  transition: transform 0.21s cubic-bezier(.77,0,.18,1);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.cookie-modal h2 {
  color: var(--primary-dark);
  margin-bottom: 8px;
  font-size: 1.27rem;
}
.cookie-modal .category-list {
  margin: 20px 0 10px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cookie-category input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 1.2em;
  height: 1.2em;
}
.cookie-info {
  font-size: 0.97rem;
  color: #37526a;
  margin-bottom: 13px;
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.cookie-modal .cta {
  padding: 10px 26px;
  border-radius: 18px;
  box-shadow: none;
}
.cookie-modal .cta.save {
  background: var(--secondary);
  color: #204056;
}
.cookie-modal .cta.save:hover {
  background: #D1A934;
  color: #fff;
}
.cookie-modal .cta.cancel {
  background: #fff;
  color: var(--primary);
  border: 1px solid #F7C948;
}
.cookie-modal-close {
  position: absolute;
  right: 18px;
  top: 16px;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: #bbaa7b;
  cursor: pointer;
  z-index: 1221;
  transition: color 0.2s;
}
.cookie-modal-close:hover {
  color: #d0a62e;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 18px 6px 15px 8px;
  }
}

/* =========================
   FORM ELEMENTS
========================= */
input, select, textarea {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
}
input:disabled, select:disabled {
  background: #ebebec;
  color: #a7a7a7;
  cursor: not-allowed;
}

/* =========================
   FAQ & CARD LISTS
========================= */
.faq-accordion {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.faq-accordion > div {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1.5px 7px rgba(32,80,122,0.07);
  padding: 21px 16px;
  margin-bottom: 20px;
}
.faq-accordion h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--primary);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 600;
}

/* =========================
   RESPONSIVE ADJUSTMENTS
========================= */
@media (max-width: 900px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.32rem; }
  h3 { font-size: 1.09rem; }
}
@media (max-width: 580px) {
  h1 { font-size: 1.35rem; }
  h2 { font-size: 1.15rem; }
  .container { padding: 0 3vw; }
}

/* =========================
   SPECIAL SPACING & DETAILS
========================= */
.section:not(:last-child) {
  margin-bottom: 60px;
}
.card:not(:last-child), .feature:not(:last-child), .testimonial-card:not(:last-child) {
  margin-bottom: 20px;
}
.content-wrapper > *:not(:last-child) {
  margin-right: 0;
}

/* =========================
   ACCESSIBILITY, FOCUS
========================= */
:focus {
  outline: 2px dotted var(--gold);
  outline-offset: 2px;
}

/* =========================
   MICROINTERACTIONS
========================= */
.card, .feature, .testimonial-card, .blog-previews article, .footer-nav a, .cta, nav a, .mobile-nav a {
  transition: box-shadow 0.18s, background 0.23s, color 0.19s, transform 0.12s;
}

/* =========================
   PRINT ADJUSTMENTS
========================= */
@media print {
  header, .mobile-menu, .cookie-consent-banner, footer {
    display: none !important;
  }
}

/* =========================
   Luxurious Details
========================= */
.card, .feature, .testimonial-card, .blog-previews article {
  border-left: 4px solid var(--gold);
}
blockquote {
  border-left: 4px solid var(--gold);
  background: #fcf8ed;
  border-radius: 10px 0 0 10px;
  padding: 10px 1em 10px 18px;
}
hr {
  border: none;
  border-top: 1.3px solid #E6D7B6;
  margin: 28px 0;
}

/* =========================
   Misc Extra Patterns
========================= */
.team-bios {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.team-bios > div {
  background: #fff;
  border-radius: 13px;
  box-shadow: 0 1.3px 9px rgba(32,80,122,0.05);
  padding: 22px 16px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 4px solid var(--gold);
}
@media (max-width: 700px) {
  .team-bios {
    flex-direction: column;
    gap: 10px;
  }
}
.success-tips {
  background: #fff9e1;
  border-radius: 11px;
  padding: 15px 18px;
}
.quick-tips-list {
  background: #f5f1e1;
  border-radius: 9px;
  padding: 11px 16px;
  font-size: 0.99rem;
  margin-top: 14px;
}

/* =========================
   Contact Map
========================= */
.contact-map {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 15px;
  background: #f8f6ec;
  padding: 13px 16px;
  border-radius: 12px;
  font-size: 0.98rem;
}

/* =========================
   End of File
========================= */
