/* === CSS RESET & BASE === */
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,
main, menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
  background: #FCFDFF;
  color: #21264a;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  letter-spacing: 0.02em;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
  border: 0;
}
ul, ol {
  list-style: none;
}
a {
  color: #1A2253;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #35A7A1;
}
:focus {
  outline: 2px dashed #35A7A1;
  outline-offset: 3px;
}

/* === ROOT & FONTS === */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,800|Roboto:400,500,700&display=swap');
:root {
  --primary: #1A2253;
  --secondary: #35A7A1;
  --accent: #F1F3F8;
  --grey: #495287;
  --lightgrey: #E5ECF6;
  --danger: #e05656;
  --cookie-bg: #21264a;
  --cookie-accent: #35A7A1;
  --shadow: 0 4px 18px 0 rgba(34,48,98,0.08);
  --radius-sm: 12px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --header-height: 80px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: 0.01em;
}
h1 { font-size: 2.25rem; line-height: 1.1; margin-bottom: 32px; }
h2 { font-size: 1.75rem; line-height: 1.2; margin-bottom: 24px; }
h3 { font-size: 1.25rem; line-height: 1.2; margin-bottom: 16px; }
h4 { font-size: 1.1rem; margin-bottom: 12px; }
p, li, span {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  color: #222443;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
}
strong { font-weight: 700; }

@media (max-width: 768px) {
  h1 { font-size: 1.5rem; margin-bottom: 24px; }
  h2 { font-size: 1.2rem; margin-bottom: 14px; }
  h3 { font-size: 1.05rem; margin-bottom: 10px; }
}

/* === CONTAINER & LAYOUT === */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: stretch;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
}

@media (max-width: 900px) {
  .section {
    padding: 28px 8px;
    margin-bottom: 38px;
    border-radius: var(--radius-md);
  }
}

/* === HEADER & NAVIGATION === */
header {
  width: 100%;
  background: white;
  box-shadow: 0 2px 14px 0 rgba(34,48,98,0.07);
  position: sticky;
  top: 0;
  left: 0;
  z-index: 60;
}
header .container {
  height: var(--header-height);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
}
.main-nav a {
  font-family: 'Montserrat',Arial,sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing:0.01em;
  color: var(--grey);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  position: relative;
  background: none;
  transition: background 0.25s, color 0.2s;
}
.main-nav a.cta {
  background: var(--secondary);
  color: white;
  border-radius: var(--radius-md);
  padding: 9px 26px;
  margin-left: 10px;
  font-size: 17px;
  box-shadow: 0 6px 20px 0 rgba(53,167,161,0.18);
  letter-spacing: 0.04em;
  position: relative;
  z-index: 2;
  transition: background 0.15s, box-shadow 0.19s, color 0.18s;
}
.main-nav a.cta:hover, .main-nav a.cta:focus {
  background: #279079;
  color: #FFF;
  box-shadow: 0 8px 28px 0 rgba(41,169,130,0.25);
}
.main-nav a:hover, .main-nav a:focus:not(.cta) {
  color: var(--secondary);
  background: var(--accent);
  text-decoration: underline;
}

/* === MOBILE MENU === */
.mobile-menu-toggle {
  display: none;
  background: var(--secondary);
  border: none;
  color: white;
  font-size: 2.1rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  z-index: 91;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #279089;
}
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(26,34,83,0.97);
  z-index: 100;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 24px;
  transform: translateX(-100%);
  transition: transform 0.38s cubic-bezier(.77,0,.18,1);
}
.mobile-menu.active {
  display: flex;
  transform: translateX(0);
}
.mobile-menu-close {
  align-self: flex-end;
  color: white;
  font-size: 2.2rem;
  background: none;
  border: none;
  margin-right: 30px;
  margin-bottom: 12px;
  cursor: pointer;
  z-index: 111;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 90vw;
  padding: 0 24px 0 40px;
}
.mobile-nav a {
  color: #FFF;
  font-size: 1.2rem;
  font-family: 'Montserrat', Arial, sans-serif;
  letter-spacing: 0.03em;
  font-weight: 700;
  padding: 14px 0 14px 12px;
  border-radius: var(--radius-sm);
  background: transparent;
  transition: background 0.17s, color 0.12s;
  text-align: left;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--secondary);
  color: #FFF;
}
.mobile-nav a.cta {
  background: #35A7A1;
  color: #FFF;
  padding: 14px 24px;
  font-size: 1.25rem;
  border-radius: var(--radius-md);
  margin: 0 0 12px 0;
  box-shadow: 0 10px 32px 0 rgba(53,167,161,0.21);
  font-weight: 800;
}

@media (max-width: 1020px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
}
@media (min-width: 1021px) {
  .mobile-menu-toggle,
  .mobile-menu { display: none !important; }
  .main-nav { display: flex !important; }
}

/* === SECTION / CARD / LAYOUT FLEX === */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  box-shadow: var(--shadow);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  padding: 32px 24px;
  position: relative;
  min-width: 260px;
  max-width: 420px;
  flex: 1 1 300px;
  transition: box-shadow 0.19s, transform 0.2s;
  z-index: 1;
}
.card:hover, .card:focus-within {
  box-shadow: 0 8px 32px 0 rgba(41,169,130,0.25);
  transform: translateY(-3px) scale(1.02);
}
.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;
}
.text-section {
  background: #FFF;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 18px 20px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s;
}
.text-section:hover {
  box-shadow: 0 8px 32px 0 #979FA71a;
}
@media (max-width: 900px) {
  .card-container, .content-grid, .footer-cols {
    flex-direction: column !important;
    gap: 22px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
  }
}

/* === TESTIMONIALS === */
.testimonial-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF;
  color: #222443;
  border-radius: var(--radius-lg);
  box-shadow: 0 6px 32px 0 #35A7A114, var(--shadow);
  margin-bottom: 24px;
  min-width: 260px;
  max-width: 720px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.08rem;
  font-style: italic;
}
.testimonial-card p {
  color: #21264a;
  font-size: 1.12rem;
}
.testimonial-card span {
  color: var(--secondary);
  font-size: 1rem;
  font-style: normal;
  font-family: 'Roboto', Arial, sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  margin-left: 10px;
}
@media (max-width: 600px) {
  .testimonial-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 14px 10px;
    border-radius: var(--radius-md);
    font-size: 1rem;
  }
}

/* === FEATURE ITEMS === */
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  background: #FFF;
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 14px 0 #35A7A114;
  padding: 18px 22px;
  margin-bottom: 18px;
}

/* === BUTTONS & CTA === */
.cta {
  display: inline-flex;
  align-items: center;
  background: var(--secondary);
  color: #FFF !important;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 18px;
  border: none;
  border-radius: var(--radius-md);
  padding: 15px 37px;
  margin-top: 12px;
  cursor: pointer;
  box-shadow: 0 10px 32px 0 rgba(53,167,161,0.19);
  letter-spacing: .04em;
  transition: background 0.19s, box-shadow 0.15s, transform 0.19s;
  text-decoration: none;
  outline: none;
  z-index: 2;
}
.cta:hover, .cta:focus {
  background: #279089;
  color: #FFF;
  box-shadow: 0 14px 40px 0 rgba(41,169,130,0.26);
  transform: scale(1.03) translateY(-2px);
}

button, .button {
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 28px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--secondary);
  color: #FFF;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: background 0.16s, transform 0.14s;
}
button:hover, button:focus,
.button:hover, .button:focus {
  background: #188f88;
  transform: translateY(-2px);
}
.button--danger {
  background: var(--danger);
  color: #FFF;
}
.button--danger:hover {
  background: #c84343;
}
.button--light {
  background: var(--accent);
  color: var(--primary);
  box-shadow: none;
  border: 2px solid var(--secondary);
}
.button--light:hover {
  background: var(--secondary);
  color: #FFF;
}

/* === ICONS in Features & Lists === */
ul li img, ol li img {
  margin-right: 13px;
  vertical-align: middle;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--accent);
  padding: 4px;
  box-shadow: 0 2px 8px 0 #35A7A11a;
}
ul li, ol li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 1.06rem;
  color: #273045;
  line-height: 1.6;
}
ol {
  counter-reset: stepNum;
  margin-left: 0.7em;
}
ol li {
  position: relative;
  padding-left: 4px;
}

/* === FOOTER === */
footer {
  background: var(--primary);
  color: #F1F3F8;
  margin-top: 75px;
  font-family: 'Roboto', Arial, sans-serif;
  letter-spacing: 0;
}
footer .container {
  padding: 36px 16px 64px 16px;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: flex-start;
}
footer h3 {
  font-size: 1.18rem;
  color: #FFF;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: 'Montserrat', Arial, sans-serif;
}
footer ul {
  list-style: none;
}
footer ul li {
  color: #F1F3F8;
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}
footer a {
  color: #E1FFFA;
  text-decoration: underline;
  font-weight: 500;
  transition: color 0.2s;
}
footer a:hover, footer a:focus {
  color: var(--secondary);
}
footer img {
  max-width: 44px;
  margin-bottom: 9px;
}
footer .footer-cols > div {
  min-width: 180px;
  flex: 1;
}
@media (max-width: 900px) {
  .footer-cols {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
  footer .container {
    padding: 18px 6px 32px 6px;
  }
}

/* === COOKIE CONSENT BANNER === */
.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--cookie-bg);
  color: #F1F3F8;
  z-index: 190;
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px 24px 14vw;
  box-shadow: 0 -8px 32px 0 #1212232f, 0 0 1px #21264a;
  border-radius: 18px 18px 0 0;
  animation: cookie-slide-in 0.5s 0.12s both cubic-bezier(.38,.8,.9,1);
}
@keyframes cookie-slide-in {
  0% { transform: translateY(100%); opacity: 0; }
  60% { opacity: 0.5; }
  90% { transform: translateY(-8px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner__text {
  flex: 1 1 300px;
  font-size: 1rem;
  color: #F1F3F8;
}
.cookie-banner .button,
.cookie-banner .button--danger,
.cookie-banner .button--light {
  margin-left: 8px;
  margin-right: 4px;
}
@media (max-width:700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 18px 8px 18px 8px;
    gap: 14px;
    font-size: 0.96rem;
  }
  .cookie-banner__text { font-size: 0.95rem; }
}

/* === COOKIE MODAL === */
.cookie-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 210;
  background: rgba(26,34,83,0.74);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: modal-fade-in 0.26s cubic-bezier(.38,.9,.59,1) both;
}
@keyframes modal-fade-in {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
.cookie-modal {
  background: #FFF;
  max-width: 420px;
  width: 88vw;
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: 0 12px 52px 0 #27354525;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--primary);
  animation: modal-grow-in 0.36s cubic-bezier(.41,.8,.42,1) both;
}
@keyframes modal-grow-in {
  0% { transform: scale(0.8); opacity: 0; }
  80% { opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.21rem;
  margin-bottom: 6px;
  color: var(--primary);
}
.cookie-modal label {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 1.06rem;
  cursor: pointer;
  font-family: 'Roboto', Arial, sans-serif;
}
.cookie-modal input[type="checkbox"] {
  accent-color: var(--secondary);
  width: 22px;
  height: 22px;
  border-radius: 7px;
  margin-right: 3px;
}
.cookie-modal .modal-actions {
  display: flex;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 16px;
}
.cookie-modal .modal-actions .button {
  min-width: 110px;
}
@media (max-width: 500px) {
  .cookie-modal {
    padding: 16px 5vw;
    font-size: 0.96rem;
    border-radius: var(--radius-md);
  }
  .cookie-modal .modal-actions { gap: 8px; }
}

/* === ANIMATIONS / MICRO-INTERACTIONS === */
.cta, .card, .testimonial-card, .feature-item, button, .button {
  transition: box-shadow 0.22s, background 0.14s, color 0.18s, transform 0.18s;
}
.card:hover, .card:focus,.feature-item:hover {
  box-shadow: 0 10px 36px 0 #35A7A11a, var(--shadow);
  transform: translateY(-2px) scale(1.015);
}

/* === ARTISTIC DECORATIVE ELEMENTS === */
.section::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 0;
  left: -30px;
  top: -20px;
  width: 68px;
  height: 68px;
  background: var(--secondary);
  opacity: 0.13;
  border-radius: 28px 34px 40px 20px / 36px 30px 24px 40px;
  pointer-events: none;
}
.section:nth-child(2)::after {
  content:'';
  display: block;
  position: absolute;
  z-index: 0;
  right: -36px; bottom: -20px;
  width: 54px;
  height: 54px;
  background: var(--primary);
  opacity: 0.10;
  border-radius: 36px 18px 30px 30px;
  pointer-events: none;
}
@media (max-width: 500px) {
  .section::before,
  .section::after { display: none; }
}

/* === RESPONSIVE & MOBILE ADJUSTMENTS === */
@media (max-width: 690px) {
  .container {
    max-width: 97vw;
    padding: 0 3vw;
  }
  .card, .text-section, .testimonial-card, .feature-item {
    padding: 13px 8px;
    border-radius: var(--radius-sm);
    font-size: 0.99rem;
  }
  h1, h2 { word-break: break-word; }
}

/* === ARTISTIC TYPOGRAPHY EFFECT === */
h1, h2, h3 {
  position: relative;
}
h1::after, h2::after {
  content: '';
  display: block;
  width: 56px;
  height: 4px;
  background: var(--secondary);
  border-radius: 3px;
  margin-top: 8px;
  opacity: 0.45;
}
@media (max-width:600px) {
  h1::after, h2::after { width: 32px; height:2px; }
}
h2::after { margin-top: 7px; }

/* === PAGE SPECIFIC === */
main img[alt^='Blog'], main img[alt^='Whispering Journeys'], main img[alt^='logo'] {
  margin: 22px auto 0 auto;
  display: block;
}

/* === UTILITIES === */
.text-center { text-align: center !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-2 { margin-top: 8px !important; }
.mt-3 { margin-top: 16px !important; }
.mb-2 { margin-bottom: 8px !important; }
.mb-3 { margin-bottom: 16px !important; }

/* === COLORFUL BULLETS in Artistic Style === */
ul li::before {
  content: '';
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 7px;
  vertical-align: middle;
  border-radius: 40%;
  background: var(--secondary);
  opacity: 0.18;
}
ul li strong { color: var(--secondary); }

/* === Z-INDEX CORRECTNESS === */
header,
.mobile-menu,
.cookie-banner, 
.cookie-modal-overlay {
  z-index: inherit;
}

/* === SCROLLBAR STYLE === */
::-webkit-scrollbar {
  width: 9px;
  background: #f5f7f9;
}
::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 7px;
}

/* === FOCUS STATES === */
.cta:focus, .button:focus, input:focus, textarea:focus, select:focus {
  box-shadow: 0 0 0 3px #1A225355, 0 2px 14px 0 #35A7A125;
  outline: none;
}

/* === ARTISTIC HIGHLIGHT === */
mark {
  background: #FFF6A9;
  color: #1A2253;
  border-radius: 0.3em;
  padding: 0.1em 0.2em;
}

/* === END OF CSS === */
