/* ===================== 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, 
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1.55;
  background: #F1FAEE;
  color: #1D3557;
  font-family: 'Open Sans', Arial, sans-serif;
  font-size: 16px;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
ul, ol {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}
a {
  color: #457B9D;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #E63946;
}
button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  outline: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Roboto Slab', serif;
  line-height: 1.12;
  margin-bottom: 16px;
  color: #1D3557;
}
h1 {
  font-size: 2.25rem;
  font-weight: 900;
  letter-spacing: -1px;
  text-shadow: 1px 2px 0px #F1FAEE, 1px 8px 24px #457B9D22;
}
h2 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
h3 {
  font-size: 1.25rem;
  font-weight: 700;
}
p, ul, ol, li {
  font-size: 1rem;
  font-weight: 400;
}
strong, b {
  font-weight: 700;
}

/* Vibrant/Energetic Colors */
:root {
  --brand-primary: #1D3557;
  --brand-secondary: #457B9D;
  --brand-accent: #F1FAEE;
  --vibrant-pink: #EF476F;
  --vibrant-cyan: #06D6A0;
  --vibrant-yellow: #FFD166;
  --vibrant-blue: #118AB2;
  --text-dark: #1D3557;
  --text-light: #fff;
  --card-bg: #fff;
}

/* ===================== LAYOUT & CONTAINERS ===================== */
.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  width: 100%;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================== HEADER & NAVIGATION ===================== */
header {
  width: 100%;
  background: #fff;
  box-shadow: 0 4px 16px 0 #457B9D18;
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 0;
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 80px;
  padding: 0 24px;
  background: transparent;
}
.desktop-nav a {
  color: #1D3557;
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.18s;
  padding: 10px 12px;
  border-radius: 8px;
  position: relative;
}
.desktop-nav a.cta-btn {
  background: linear-gradient(90deg, #EF476F 15%, #FFD166 90%);
  color: #1D3557;
  font-weight: bold;
  font-family: 'Roboto Slab', serif;
  border-radius: 25px;
  font-size: 1.08rem;
  letter-spacing: 0.5px;
  box-shadow: 0 5px 18px #ef476f40;
  padding: 11px 28px;
  margin-left: 10px;
  transition: background 0.2s, color 0.18s, box-shadow 0.2s;
  border: 2px solid #FFD166;
}
.desktop-nav a.cta-btn:hover, .desktop-nav a.cta-btn:focus {
  background: linear-gradient(90deg, #FFD166 15%, #EF476F 90%);
  color: #EF476F;
  box-shadow: 0 8px 24px #FFD16670;
  border-color: #EF476F;
}
.desktop-nav img {
  height: 42px;
  margin-right: 14px;
}
nav.desktop-nav {
  flex-wrap: wrap;
}

/* Responsive Nav Handling */
.mobile-menu-toggle {
  display: none;
  background: #EF476F;
  color: #fff;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 12px 20px 12px auto;
  z-index: 1002;
  box-shadow: 0 3px 12px #EF476F55;
  transition: background 0.2s;
}
.mobile-menu-toggle:hover, .mobile-menu-toggle:focus {
  background: #E63946;
  color: #FFD166;
}
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #1D3557;
  color: #fff;
  z-index: 1200;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-100vw);
  opacity: 0;
  transition: transform 0.36s cubic-bezier(.6,.04,.19,.95), opacity 0.22s;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-menu-close {
  background: #EF476F;
  color: #fff;
  font-size: 2.25rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  margin: 20px 24px 0 auto;
  align-self: flex-end;
  transition: background 0.18s;
}
.mobile-menu-close:focus,.mobile-menu-close:hover {
  background: #FFD166;
  color: #EF476F;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 60px 0 0 36px;
}
.mobile-nav a {
  color: #FFD166;
  background: none;
  font-family: 'Roboto Slab', serif;
  font-size: 1.22rem;
  font-weight: 700;
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 18px;
  transition: background 0.2s, color 0.18s;
  min-width: 230px;
  min-height: 44px;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #EF476F;
  color: #fff;
}

@media (max-width: 1024px) {
  .desktop-nav {
    gap: 18px;
    padding: 0 10px;
  }
}
@media (max-width: 900px) {
  .desktop-nav a {
    font-size: 0.96rem;
    padding: 8px 8px;
  }
  .desktop-nav img { height: 36px; }
}
@media (max-width: 768px) {
  .desktop-nav {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}

/* ===================== HERO SECTION ===================== */
.hero {
  background: linear-gradient(95deg,#FFD166 0,#F1FAEE 35%,#06D6A0 100%);
  border-bottom: 3px solid #118AB2;
  box-shadow: 0 8px 32px #ffd16618;
  padding: 60px 0 50px 0;
  margin-bottom: 60px;
}
.hero .container { justify-content: center; }
.hero .content-wrapper {
  align-items: flex-start;
  gap: 18px;
  max-width: 700px;
}
.hero h1 {
  font-size: 2.5rem;
  color: #1D3557;
  background: none;
}
.hero p {
  font-size: 1.18rem;
  font-weight: 500;
  color: #457B9D;
  margin-bottom: 18px;
}

/* ===================== FEATURES UL ===================== */
.features ul, .trust ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 8px;
}
.features ul li, .trust ul li {
  background: #fff;
  color: #1D3557;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 3px 14px #118AB208;
  border-radius: 16px;
  padding: 18px 26px 18px 18px;
  font-size: 1.07rem;
  font-weight: 600;
  min-width: 250px;
  min-height: 56px;
}
.features ul img, .trust ul img {
  width: 34px;
  height: 34px;
}
@media (max-width: 1024px) {
  .features ul, .trust ul {
    gap: 14px;
  }
  .features ul li, .trust ul li {
    padding: 13px 15px 13px 13px;
    min-width: 180px;
    font-size: 1rem;
  }
}
@media (max-width: 650px) {
  .features ul, .trust ul {
    flex-direction: column;
    gap: 10px;
  }
  .features ul li, .trust ul li {
    width: 100%;
    min-width: unset;
    font-size: 0.98rem;
    align-items: flex-start;
  }
}

/* ===================== STEPS ===================== */
.steps ol {
  display: flex;
  flex-direction: column;
  gap: 22px;
  counter-reset: step;
  margin: 24px 0 16px 0;
  padding-left: 0;
}
.steps ol li {
  position: relative;
  padding-left: 54px;
  font-size: 1.1rem;
  color: #1D3557;
  line-height: 1.35;
  font-weight: 600;
}
.steps ol li:before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(145deg,#EF476F 0,#FFD166 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  box-shadow: 0 3px 14px #457b9d22;
  border: 2px solid #FFD166;
}

@media (max-width: 650px) {
  .steps ol li {
    padding-left: 42px;
    font-size: 0.98rem;
  }
  .steps ol li:before {
    width: 27px; height: 27px; font-size: .96rem;
    border-radius: 7px;
  }
}

.timeline {
  background: #F1FAEE;
  border-left: 5px solid #FFD166;
  margin: 32px 0 0 0;
  padding: 16px 30px;
  border-radius: 7px;
  font-family: 'Roboto Slab', serif;
  color: #457B9D;
  font-weight: 700;
  font-size: 1.08rem;
  box-shadow: 0 8px 32px #FFD16616;
}

/* ===================== SERVICE CARDS ===================== */
.service-cards, .service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 6px 22px #06d6a028, 0 1.5px 5px #457B9D11;
  padding: 24px 24px 18px 24px;
  min-width: 260px;
  max-width: 320px;
  margin-bottom: 20px;
  transition: transform 0.23s, box-shadow 0.23s;
  position: relative;
  gap: 12px;
  border: 2px solid #FFD16633;
}
.service-card:hover, .service-card:focus-within {
  transform: translateY(-6px) scale(1.01) rotateZ(-1.2deg);
  box-shadow: 0 16px 42px #118ab240, 0 1.5px 7px #EF476F11;
  border-color: #EF476F;
}
.service-card h3 {
  font-size: 1.15rem;
  font-family: 'Roboto Slab',serif;
  color: #1D3557;
  font-weight: 700;
}
.service-card span {
  font-family: 'Roboto Slab', serif;
  font-size: 1.08rem;
  font-weight: bold;
  background: #FFD166;
  color: #1D3557;
  border-radius: 8px;
  padding: 4px 13px 4px 13px;
  margin-top: 8px;
  align-self: flex-end;
  box-shadow: 0 4px 9px #FFD16633;
}
.service-card img {
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
}
@media (max-width: 1050px) {
  .service-cards, .service-list {
    gap: 14px;
  }
  .service-card {
    min-width: 210px;
    max-width: 100%;
    padding: 18px 11px 13px 11px;
  }
}
@media (max-width: 650px) {
  .service-cards, .service-list {
    flex-direction: column;
    gap: 10px;
  }
  .service-card {
    width: 100%;
    min-width: unset;
    margin-bottom: 14px;
  }
}

/* ===================== BLOG LISTING ===================== */
.blog-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 18px;
}
.blog-card {
  flex: 1 1 300px;
  max-width: 400px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 20px #457B9D18;
  border-left: 6px solid #06D6A0;
  padding: 22px 22px 15px 20px;
  min-height: 148px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform 0.23s, box-shadow 0.22s, border-color 0.17s;
}
.blog-card h2 {
  font-size: 1.12rem;
  color: #EF476F;
  margin-bottom: 5px;
}
.blog-card p {
  font-size: .98rem;
  color: #1D3557;
  margin-bottom: 7px;
}
.blog-card a {
  color: #118AB2;
  font-weight: bold;
  border-bottom: 2px solid #FFD166;
  margin-top: 6px;
  transition: color 0.18s, border 0.2s;
}
.blog-card:hover, .blog-card:focus-within {
  transform: translateY(-5px) scale(1.015);
  box-shadow: 0 10px 34px #457b9d28, 0 1.5px 7px #EF476F11;
  border-left-color: #FFD166;
}

@media (max-width: 1025px) {
  .blog-cards {
    gap: 13px;
  }
}
@media (max-width: 650px) {
  .blog-cards {
    flex-direction: column;
    gap: 9px;
  }
}

/* categories */
.categories ul {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}
.categories ul li {
  background: #06d6a0;
  color: #fff;
  border-radius: 27px;
  padding: 5px 18px;
  font-family: 'Roboto Slab', serif;
  font-weight: 700;
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: #F1FAEE;
  padding: 40px 0;
  margin-bottom: 60px;
}
.testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: #fff;
  box-shadow: 0 7px 26px #1d35572c;
  border-radius: 20px;
  min-width: 260px;
  max-width: 370px;
  font-size: 1.02rem;
  margin-bottom: 20px;
  border: 2px solid #06d6a022;
  color: #1D3557;
  position: relative;
  /* For larger quotes */
}
.testimonial-card blockquote {
  color: #1D3557;
  font-style: italic;
  font-size: 1.06rem;
  margin-bottom: 12px;
  position: relative;
  quotes: "\201C""\201D";
}
.testimonial-card blockquote:before {
  content: open-quote;
  color: #EF476F;
  font-size: 1.8rem;
  position: absolute;
  left: -16px;
  top: -10px;
  line-height: 0;
}
.testimonial-card p {
  font-weight: bold;
  color: #118AB2;
  font-family: 'Roboto Slab',serif;
  margin-top: 8px;
  font-size: 1.01em;
}
@media (max-width: 650px) {
  .testimonial-slider {
    flex-direction: column;
    gap: 11px;
  }
  .testimonial-card {
    min-width: unset;
    max-width: 98vw;
    padding: 14px 11px;
  }
}

/* ===================== CTA SECTIONS ===================== */
.cta {
  background: linear-gradient(87deg, #06D6A0 3%, #FFD166 98%);
  border-radius: 24px;
  margin-bottom: 60px;
  box-shadow: 0 7px 32px #ffd16618;
}
.cta .content-wrapper {
  align-items: flex-start;
  gap: 20px;
}
.cta h2 {
  color: #1D3557;
  font-size: 1.36rem;
  font-weight: 900;
  margin-bottom: 4px;
  letter-spacing: -0.5px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #FFD166 18%, #EF476F 95%);
  color: #1D3557;
  font-family: 'Roboto Slab',serif;
  font-size: 1.15rem;
  font-weight: bold;
  padding: 14px 32px;
  border-radius: 50px;
  border: 2px solid #FFD166;
  box-shadow: 0 5px 18px #ef476f30;
  letter-spacing: 1px;
  margin: 7px 0;
  transition: background 0.2s, color 0.2s, border 0.2s, transform .24s, box-shadow .22s;
}
.cta-btn:hover,
.cta-btn:focus {
  background: linear-gradient(90deg, #EF476F 10%, #FFD166 90%);
  color: #fff;
  border-color: #EF476F;
  box-shadow: 0 12px 44px #FFD16660;
  transform: translateY(-2px) scale(1.016);
}

/* ===================== PRICING TABLE ===================== */
.pricing-table {
  width: 100%;
  background: #fff;
  border-collapse: separate;
  border-spacing: 0;
  box-shadow: 0 4px 18px #FFD16629;
  border-radius: 15px;
  margin-top: 12px;
  margin-bottom: 18px;
  overflow: hidden;
  font-size: 1.02rem;
}
.pricing-table th, .pricing-table td {
  padding: 18px 16px;
  text-align: left;
}
.pricing-table th {
  background: #FFD166;
  color: #1D3557;
  font-family: 'Roboto Slab',serif;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.3px;
}
.pricing-table tr {
  border-bottom: 1px solid #457b9d18;
}
.pricing-table tbody tr:nth-child(even) {
  background: #F1FAEE;
}
.pricing-table td {
  font-size: 1rem;
  color: #1D3557;
}
@media (max-width: 700px) {
  .pricing-table th, .pricing-table td {
    padding: 9px 6px;
    font-size: 0.95rem;
  }
}

/* ===================== FAQ ACCORDION ===================== */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 26px;
  margin-top: 22px;
}
.faq-accordion details {
  background: #fff;
  border: 2px solid #FFD16655;
  border-radius: 11px;
  box-shadow: 0 2px 10px #457B9D14;
  padding: 15px 20px;
  transition: box-shadow 0.19s, border 0.17s;
  font-size: 1rem;
  position: relative;
}
.faq-accordion details[open] {
  border-color: #EF476F;
  box-shadow: 0 9px 28px #FFD16629;
}
.faq-accordion summary {
  font-family: 'Roboto Slab',serif;
  font-weight: bold;
  font-size: 1.08em;
  color: #1D3557;
  cursor: pointer;
  list-style: none;
  outline: none;
}
.faq-accordion details div {
  margin-top: 11px;
  color: #457B9D;
  font-size: .98rem;
}

/* ===================== ABOUT, TEAM, TRUST ===================== */
.text-section {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-top: 10px;
}
.text-section ul{
  gap: 8px;
}
.text-section li {
  color: #118AB2;
  font-size: 1rem;
  margin-bottom: 4px;
}

/* ===================== CONTACT PAGE ===================== */
.contact-details ul {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 4px;
}
.location-map {
  margin-top: 24px;
  background: #F1FAEE;
  border-left: 4px solid #118AB2;
  padding: 17px 19px;
  border-radius: 8px;
  color: #1D3557;
  font-size: 0.99rem;
  box-shadow: 0 2px 12px #118ab211;
}
.opening-hours ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 9px;
}

/* ===================== THANK YOU PAGE ===================== */
.thank_you {
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  margin-top: 38px;
}

/* ===================== LEGAL PAGES ===================== */
.legal .text-section {
  padding: 16px 0 0 0;
  border-left: 5px solid #EF476F;
  color: #1D3557;
  margin-bottom: 20px;
}
.legal .text-section ul {
  color: #118AB2;
  gap: 6px;
}
.legal .text-section li {
  font-size: 0.98rem;
  margin-bottom: 3px;
}

/* ===================== FOOTER ===================== */
footer {
  margin-top: 80px;
  background: #1D3557;
  color: #fff;
  padding: 40px 0 0 0;
  box-shadow: 0 -2px 30px #1D355732;
}
footer .container {
  width: 100%;
}
footer .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
  padding-bottom: 25px;
}
.footer-logo img {
  height: 40px;
  margin-bottom: 22px;
}
.footer-contact-info h3 {
  color: #FFD166;
  font-family: 'Roboto Slab',serif;
  font-size: 1.09em;
  margin-bottom: 12px;
}
.footer-contact-info a {
  color: #FFD166;
  text-decoration: underline;
}
.footer-links nav, .footer-privacy nav {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links a, .footer-privacy a {
  color: #F1FAEE;
  font-size: 0.98em;
  line-height: 1.38;
  transition: color 0.18s;
}
.footer-links a:hover, .footer-privacy a:hover {
  color: #FFD166;
}
footer {
  border-top: 5px solid #FFD166;
}
@media (max-width: 900px) {
  footer .content-wrapper {
    gap: 20px;
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-logo img {
    margin-bottom: 12px;
  }
}

/* ===================== FLEXBOX SPACING & ALIGNMENT CLASSES ===================== */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
}
.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;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ===================== RESPONSIVE FLEX DIRECTION ADJUSTMENTS ===================== */
@media (max-width: 768px) {
  .content-wrapper,
  .card-container,
  .content-grid,
  .service-cards,
  .service-list,
  .testimonial-slider,
  .footer .content-wrapper {
    flex-direction: column !important;
    gap: 16px !important;
    align-items: stretch;
  }
  .text-image-section {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: flex-start;
  }
}

/* ===================== BUTTONS & INTERACTIVES ===================== */
button, .cta-btn {
  outline: none;
}
button:active, .cta-btn:active {
  transform: scale(0.98);
}

/* ===================== ANIMATIONS & MICROINTERACTIONS ===================== */
.section, .service-card, .testimonial-card, .blog-card {
  transition: box-shadow 0.19s, transform 0.21s, border-color 0.19s;
}

@media (max-width: 480px) {
  h1 { font-size: 1.38rem; }
  h2 { font-size: 1rem; }
  .container { padding: 0 8px; }
  .footer-logo img { height: 29px; }
}

/* ===================== COOKIE CONSENT BANNER ===================== */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  width: 100vw;
  z-index: 1400;
  background: #1D3557;
  color: #FFD166;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 32px;
  justify-content: space-between;
  padding: 26px 24px;
  box-shadow: 0 -8px 24px #457B9D55;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  border-top: 4px solid #FFD166;
  transition: transform 0.38s;
}
.cookie-banner.hide {
  transform: translateY(120%);
}
.cookie-banner .cookie-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}
.cookie-btn {
  background: #FFD166;
  color: #1D3557;
  font-family: 'Roboto Slab',serif;
  font-weight: bold;
  font-size: 1.03rem;
  padding: 10px 22px;
  border-radius: 22px;
  border: none;
  margin-right: 2px;
  margin-top: 0;
  transition: background 0.17s, color 0.13s, transform .22s, box-shadow 0.18s;
  box-shadow: 0 2px 12px #FFD16618;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #EF476F;
  color: #fff;
  box-shadow: 0 4px 16px #EF476F22;
}
.cookie-btn.settings {
  background: #457B9D;
  color: #FFD166;
  border: 2px solid #F1FAEE;
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: #06D6A0;
  color: #fff;
  border-color: #FFD166;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    font-size: .98rem;
    padding: 18px 6px;
  }
  .cookie-actions {
    gap: 8px;
  }
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%) scale(1);
  z-index: 1500;
  background: #fff;
  color: #1D3557;
  border-radius: 15px;
  box-shadow: 0 8px 48px #457B9D35;
  width: 96vw;
  max-width: 440px;
  padding: 36px 28px 28px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  opacity: 1;
  transition: opacity 0.24s, transform 0.27s;
  font-family: 'Open Sans', sans-serif;
}
.cookie-modal.hide {
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%,-50%) scale(.94);
}
.cookie-modal h3 {
  color: #EF476F;
  font-family: 'Roboto Slab',serif;
  font-size: 1.12rem;
}
.cookie-modal .cookie-category {
  font-family: 'Open Sans',sans-serif;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 8px;
}
.cookie-modal label {
  font-weight: 500;
  font-size: 1rem;
}
.cookie-modal input[type="checkbox"]:checked + span {
  color: #457B9D;
}
.cookie-modal .essential {
  color: #06D6A0;
  font-weight: bold;
  font-size: .98rem;
}
.cookie-modal .cookie-modal-actions {
  margin-top: 18px;
  display: flex;
  gap: 12px;
}
.cookie-modal .modal-close {
  background: #EF476F;
  color: #fff;
  border-radius: 50%;
  font-size: 1.35rem;
  width: 36px;
  height: 36px;
  border: none;
  align-self: flex-end;
  margin-left: auto;
  margin-bottom: 10px;
  transition: background 0.15s;
}
.cookie-modal .modal-close:hover, .cookie-modal .modal-close:focus {
  background: #FFD166;
  color: #EF476F;
}
@media (max-width: 450px) {
  .cookie-modal { padding: 18px 4px 11px 6px; }
}

/* ===================== MISC: UTILITY ===================== */
.mg-bottom-40 { margin-bottom: 40px !important; }
.mt-20 { margin-top: 20px; }
.mg-bottom-24 { margin-bottom: 24px !important; }
.py-50 { padding: 50px 0; }
.no-select { user-select: none; }

/* ===================== HIDE/SHOW CLASSES for JS ===================== */
.hide { display: none !important; }
.show { display: block !important; }

/* ===================== ACCESSIBILITY OUTLINES ===================== */
*:focus {
  outline: 2px solid #FFD166;
  outline-offset: 1.5px;
}

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