/* --- CSS RESET & NORMALIZE --- */
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 { box-sizing: border-box; }
*, *:before, *:after { box-sizing: inherit; }
body { 
  line-height: 1.45;
  background: #F3F5F7;
  color: #192E45;
}
ul, ol { list-style: none; }
a { color: inherit; text-decoration: none; background: transparent; }
img { display: block; max-width: 100%; height: auto; }
button, input, select, textarea { font-family: inherit; font-size: inherit; outline: none; border: none; background: none; }

/* --- CUSTOM FONT --- */
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,900|Open+Sans:400,600,700&display=swap');

body {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 16px;
  background: #F3F5F7;
  color: #192E45;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  color: #192E45;
}

h1 { font-size: 2.75rem; line-height: 1.1; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 20px; }
h3 { font-size: 1.4rem; margin-bottom: 12px; font-weight: 700; }
h4, h5, h6 { font-size: 1.125rem; }
p, li, blockquote { font-size: 1rem; line-height: 1.7; margin-bottom: 12px; }

strong { font-weight: bold; }

/* COLORS */
:root {
  --primary: #192E45;
  --secondary: #F3F5F7;
  --accent: #27B39A;
  --electric-yellow: #FFDD2D; /* energetic accent */
  --electric-magenta: #FD3397;
  --electric-cyan: #1EF2FF;
  --bg-light: #F3F5F7;
  --text-dark: #192E45;
  --card-bg: #FFF;
  --cta-hover: #1EF2FF;
  --nav-bg: #FFF;
  --shadow: 0 2px 12px rgba(30,69,107,0.09), 0 4px 32px rgba(30,69,107,0.09);
  --border-radius: 20px;
}


/* --- LAYOUT CONTAINERS --- */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 18px;
  display: flex;
  flex-direction: column;
}

.section {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  margin-bottom: 60px;
  padding: 40px 20px;
  box-shadow: var(--shadow);
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
}

.text-section {
  max-width: 720px;
  margin: 0 auto;
}

.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin-bottom: 0;
}

.text-image-section {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: var(--card-bg);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  padding: 28px 28px 24px 28px;
  position: relative;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.25s, transform 0.18s;
}
.card:hover {
  box-shadow: 0 6px 24px 0 rgba(39,179,154,0.13), 0 2px 24px 0 rgba(30,69,107,0.10);
  transform: translateY(-4px) scale(1.025);
  z-index: 2;
}

.card-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

/* Feature item (for icon cards) */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.feature-grid > div {
  background: linear-gradient(110deg, #FFF 70%, var(--electric-cyan) 120%);
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(30, 69, 107, 0.05);
  padding: 24px 18px 22px 18px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 230px;
  transition: box-shadow .2s, transform .18s;
  position: relative;
  gap: 8px;
}
.feature-grid > div:hover {
  box-shadow: 0 6px 18px 0 rgba(253,51,151,0.13), 0 2px 24px 0 rgba(30,69,107,0.10);
  transform: scale(1.025) rotate(-1deg);
  z-index: 2;
}
.feature-grid img {
  width: 44px;
  height: 44px;
  margin-bottom: 10px;
}

/* --- BUTTONS & CTA --- */
.cta, .button, button, input[type='submit'] {
  background: linear-gradient(90deg, var(--accent) 60%, var(--electric-magenta) 100%);
  color: #FFF;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 1.18rem;
  padding: 14px 30px;
  border: none;
  border-radius: 28px;
  box-shadow: 0 4px 20px rgba(39,179,154,0.11);
  cursor: pointer;
  margin-top: 15px;
  margin-bottom: 12px;
  transition: background 0.25s, filter 0.18s, transform .13s;
  display: inline-block;
  text-align: center;
}
.cta:hover, .button:hover, button:hover, input[type='submit']:hover {
  background: linear-gradient(90deg, var(--electric-magenta) 40%, var(--cta-hover) 100%);
  filter: brightness(1.05) drop-shadow(0 1px 9px rgba(253,51,151,0.17));
  transform: translateY(-2px) scale(1.04);
}
.cta:active { filter: brightness(0.97); }

/* --- LISTS & TYPOGRAPHY --- */
ul, ol {
  margin-bottom: 18px;
  padding-left: 28px;
}
ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.7;
  position: relative;
}
ul li::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 10px;
  background: linear-gradient(125deg, var(--accent) 60%, var(--electric-magenta) 100%);
  border-radius: 100%;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

ol li::marker, ol li:before {
  color: var(--accent);
}

blockquote {
  border-left: 5px solid var(--electric-magenta);
  background: #f3f3fa;
  margin: 0 0 8px 0;
  padding: 14px 18px;
  font-style: italic;
  color: var(--primary);
}

/* --- TESTIMONIALS --- */
.testimonial-card {
  display: flex;
  align-items: center;
  gap: 20px;
  background: #FDFBF7;
  border-radius: 14px;
  box-shadow: 0 2px 12px rgba(253,51,151,0.05);
  padding: 20px 28px;
  margin-bottom: 20px;
  color: #252535;
  max-width: 680px;
  border-left: 6px solid var(--accent);
  transition: box-shadow .22s, transform .16s;
}
.testimonial-card blockquote {
  background: transparent;
  border: none;
  color: #1b234a;
  font-style: italic;
  margin-bottom: 6px;
  padding: 0;
  font-size: 1.07rem;
}
.testimonial-card p {
  font-size: 0.96rem;
  color: #535353;
  margin-bottom: 0;
}
.testimonial-card:hover {
  box-shadow: 0 6px 18px 0 rgba(39,179,154,0.10), 0 2px 14px 0 rgba(253,51,151,0.10);
  transform: scale(1.016) translateY(-2px);
  z-index: 2;
}

/* --- SPECIAL CARDS / TIPS --- */
.tips-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
}
.tip-card {
  flex: 1 1 230px;
  background: linear-gradient(115deg, #FFF 70%, var(--electric-yellow) 130%);
  border-radius: 14px;
  box-shadow: 0 2px 10px 0 rgba(39,179,154,0.07);
  padding: 22px 18px 18px 18px;
  margin-bottom: 20px;
  transition: box-shadow .22s, transform .13s;
  min-width: 210px;
}
.tip-card:hover {
  box-shadow: 0 4px 22px rgba(255,221,45,0.09), 0 2px 12px rgba(253,51,151,0.08);
  transform: scale(1.019) rotate(0.5deg);
  z-index: 2;
}

.look-ideas {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
}
.look-ideas > div {
  flex: 1 1 220px;
  min-width: 190px;
  background: linear-gradient(100deg, #FFF 75%, var(--electric-cyan) 120%);
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(39,179,154,0.06);
  padding: 18px 16px 14px 16px;
  transition: box-shadow .22s, transform .13s;
}
.look-ideas > div:hover {
  box-shadow: 0 8px 20px rgba(30,69,107,0.08), 0 2px 13px rgba(39,179,154,0.07);
  transform: translateY(-3px) scale(1.02);
  z-index: 2;
}

/* --- NAVIGATION --- */
header {
  position: relative;
  background: var(--nav-bg);
  width: 100%;
  box-shadow: 0 2px 12px rgba(25,46,69,0.03);
  z-index: 500;
}
header nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-start;
  padding: 18px 18px 16px 18px;
}
header nav img {
  height: 38px;
  width: auto;
  margin-right: 16px;
}
header nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  padding: 5px 15px;
  border-radius: 16px;
  transition: background 0.17s, color 0.17s, transform 0.14s;
  color: var(--primary);
  font-size: 1rem;
  white-space: nowrap;
}
header nav a:hover, header nav a.active {
  background: var(--electric-cyan);
  color: var(--primary);
  transform: translateY(-1px) scale(1.06);
}

/* --- MOBILE BURGER MENU --- */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  right: 25px;
  top: 18px;
  background: var(--accent);
  color: #FFF;
  border: none;
  font-size: 2.2rem;
  padding: 5px 16px 2px 16px;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(39,179,154,0.09);
  cursor: pointer;
  z-index: 2200;
  transition: background 0.2s, filter 0.11s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: var(--electric-magenta);
  filter: brightness(1.1);
}

.mobile-menu {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100vw;
  height: 100vh;
  background: #f8fafb;
  z-index: 5000;
  transform: translateX(-110vw);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.28s cubic-bezier(.8, .02, .4, 1.2), opacity 0.18s;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  margin: 16px 18px 4px auto;
  background: var(--accent);
  color: #FFF;
  border: none;
  font-size: 2.2rem;
  padding: 0 16px;
  border-radius: 12px;
  cursor: pointer;
  align-self: flex-end;
  box-shadow: 0 2px 8px rgba(253,51,151,0.07);
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: var(--electric-magenta);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  margin-top: 36px;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  padding: 16px 22px;
  border-radius: 10px;
  margin: 0 18px;
  background: #FFF;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(39,179,154,0.08);
  transition: background 0.17s, color 0.17s, transform 0.14s;
}
.mobile-nav a:hover {
  background: var(--electric-cyan);
  color: var(--accent);
}

/* --- FOOTER --- */
footer {
  background: #1A335A;
  color: #FAFAFB;
  padding: 34px 0 18px 0;
  width: 100%;
  text-align: center;
  box-shadow: 0 -2px 12px rgba(30,69,107,0.04);
  margin-top: 70px;
}
footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
}
footer nav a {
  color: var(--electric-cyan);
  font-weight: 700;
  font-size: 1rem;
  padding: 3px 10px;
  border-radius: 9px;
  background: transparent;
  transition: background .19s, color .19s;
}
footer nav a:hover {
  background: var(--accent);
  color: #FFF;
}
footer nav span {
  font-size: 0.96rem;
  color: #C6DEE4;
}
footer small {
  display: block;
  color: #AFB7C4;
  font-size: 0.97rem;
  margin-top: 7px;
}

/* --- COOKIE CONSENT BANNER --- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0; right: 0;
  z-index: 9000;
  width: 100%;
  background: #FFF;
  color: #19304F;
  box-shadow: 0 -4px 26px 0 rgba(25,46,69,0.10);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 28px 22px 22px 22px;
  gap: 22px;
  font-size: 1rem;
  border-radius: 22px 22px 0 0;
  transition: transform .27s cubic-bezier(.8,.06,.4,1.18), opacity .17s;
}
.cookie-banner.hide { transform: translateY(120%); opacity: 0; pointer-events: none; }
.cookie-banner .cookie-text {
  flex: 2;
  min-width: 180px;
  margin-right: 20px;
  color: #19304F;
}
.cookie-banner .cookie-btns {
  display: flex;
  gap: 16px;
}
.cookie-banner button {
  padding: 10px 22px;
  margin: 0;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  border-radius: 8px;
  box-shadow: 0 1px 5px rgba(39,179,154,0.08);
  background: var(--accent);
  color: #FFF;
  cursor: pointer;
  border: none;
  transition: background 0.18s, color 0.14s;
}
.cookie-banner button.cookie-settings {
  background: var(--electric-magenta);
  color: #FFF;
}
.cookie-banner button:hover, .cookie-banner button:focus {
  background: var(--primary);
}
.cookie-banner button.cookie-settings:hover, .cookie-banner button.cookie-settings:focus {
  background: var(--cta-hover);
  color: var(--primary);
}

/* --- COOKIE MODAL --- */
.cookie-modal {
  position: fixed;
  top: 0; left: 0;
  width: 100vw;  height: 100vh;
  background: rgba(34,38,60,0.35);
  z-index: 12000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.21s;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal .cookie-modal-content {
  background: #FFF;
  color: #1B234A;
  border-radius: 22px;
  padding: 36px 32px 28px 32px;
  min-width: 290px;
  max-width: 96vw;
  box-shadow: 0 6px 40px 0 rgba(30,69,107,0.15);
}
.cookie-modal h3 {
  margin-bottom: 12px;
  font-size: 1.28rem;
}
.cookie-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 16px;
}
.cookie-modal .cookie-category label{
  font-weight: 600;
}
.cookie-modal input[type=checkbox] {
  width: 22px;
  height: 22px;
  accent-color: var(--accent);
  margin-top: 1px;
}
.cookie-modal .modal-actions {
  margin-top: 26px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.cookie-modal button {
  padding: 10px 30px;
  font-size: 1.08rem;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 1120px) {
  .container { max-width: 98vw; }
}
@media (max-width: 900px) {
  h1 { font-size: 2.18rem; }
  h2 { font-size: 1.48rem; }
  .section { padding: 34px 10px; margin-bottom: 45px; }
  .feature-grid, .card-container, .look-ideas, .tips-list { gap: 16px; }
}
@media (max-width: 768px) {
  h1 { font-size: 1.58rem; }
  h2 { font-size: 1.12rem; }
  header nav { gap: 9px; padding: 9px 10px 12px 10px; }
  header nav img { height: 32px; margin-right: 9px; }
  .section { padding: 22px 3vw; margin-bottom: 32px; }
  .feature-grid, .card-container, .look-ideas, .tips-list { gap: 12px; flex-direction: column; }
  .feature-grid > div, .look-ideas > div, .tip-card, .card { min-width: 90vw; }
  .content-grid { flex-direction: column; gap: 10px; }
  .testimonial-card { flex-direction: column; gap: 9px; padding: 14px 11px; }
  .cookie-banner { flex-direction: column; gap: 10px; padding: 18px 5vw 16px 5vw; }
  .container { padding: 0 4vw; }
  .text-section { max-width: 100%; }
  .look-ideas, .tips-list { margin-bottom: 5px; }
  .text-image-section { flex-direction: column; gap: 14px; }
  .mobile-menu-toggle { display: block; }
  header nav { display: none; }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
  .mobile-menu-toggle { display: none !important; }
  header nav { display: flex !important; }
}

/* --- Utility Classes --- */
.flex { display: flex; }
.flex-center { align-items: center; justify-content: center; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.text-center { text-align: center; }
.text-left { text-align: left; }

/* --- MISC --- */
::-webkit-scrollbar { width: 9px; background: #f6fafd; }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 8px; }
a:focus, button:focus { outline: 2px solid var(--electric-magenta); outline-offset: 2px; }

/* --- END --- */
