/* ------------------------- 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;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body, html {
  height: 100%;
  width: 100%;
  line-height: 1.6;
  background: #FCFCFC;
  color: #21243d;
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
}
img, svg {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul, ol {
  list-style: none;
}
button {
  font: inherit;
  background: none;
  border: none;
  cursor: pointer;
}
:focus {
  outline: 2px solid #F4D35E;
  outline-offset: 2px;
}

/* ---------------------- BRAND VARIABLES ---------------------- */
:root {
  --primary: #1C2541;
  --secondary: #3A506B;
  --accent: #F4D35E;
  --extra-blue: #2188ff;
  --fun-coral: #FF7E67;
  --fun-green: #15C7A8;
  --white: #fff;
  --light: #fafdff;
  --gray-bg: #f1f8ff;
  --dark-text: #1C2541;
  --mid-text: #3A506B;
  --shadow: 0 4px 32px rgba(44,61,125,0.10);
  --radius: 20px;
  --bezier: cubic-bezier(.6,1.5,.4,1);
}

@font-face {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: local('Montserrat Bold'), local('Montserrat-Bold'),
    url('https://fonts.gstatic.com/s/montserrat/v25/JTURjIg1_i6t8kCHKm45_dJE3gTD_vx3rCubqg.woff2') format('woff2');
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  font-style: normal;
  font-weight: 400;
  src: local('Roboto'), local('Roboto-Regular'),
    url('https://fonts.gstatic.com/s/roboto/v30/KFOmCnqEu92Fr1Mu4mxP.woff2') format('woff2');
  font-display: swap;
}

/* ---------------------- UTILITY CLASSES ---------------------- */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.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: center;
  gap: 20px;
  padding: 20px;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ---------------------- TYPOGRAPHY ---------------------- */
h1, .hero h1, .about h1, .confirmation h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.13;
  color: var(--primary);
  letter-spacing: -.5px;
  margin-bottom: 16px;
}
h2, .about h2, .confirmation h2 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--accent);
  margin-bottom: 20px;
}
h3 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1.12rem;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: 0.01em;
}
p, li {
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 1rem;
  color: var(--dark-text);
  margin-bottom: 14px;
}
.subtitle {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--secondary);
  margin-bottom: 26px;
  text-shadow: 0 2px 8px #f1f8ff;
}
.policy-text h3 {
  color: var(--fun-coral);
  font-size: 1.05rem;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 7px;
}
.privacy-policy ul, .policy-text ul {
  padding-left: 21px;
  list-style: disc;
  margin-bottom: 12px;
}
.certifications {
  margin-top: 12px;
  color: var(--fun-coral);
  font-size: 1rem;
  font-family: 'Montserrat', Arial, sans-serif;
}
.footer-brand p {
  font-size: 1rem;
  color: var(--light);
}
strong {
  font-weight: 700;
}

/* ---------------------- HEADER & NAVIGATION ---------------------- */
header {
  background: var(--primary);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 4px 20px rgba(28,37,65,0.09);
}
header .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 10px;
  padding-bottom: 10px;
}
.logo-link img {
  height: 48px;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  flex-wrap: wrap;
}
.main-nav a {
  color: var(--accent);
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.02rem;
  padding: 9px 12px;
  border-radius: var(--radius);
  transition: background 0.2s var(--bezier), color 0.12s;
}
.main-nav a:hover, .main-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.button.primary {
  background: var(--accent);
  color: var(--primary);
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  margin-left: 12px;
  box-shadow: 0 3px 14px rgba(28,37,65,0.08);
  transition: background 0.18s, color 0.16s, transform 0.22s var(--bezier);
  border: 2px solid var(--accent);
}
.button.primary:hover, .button.primary:focus {
  background: var(--fun-green);
  color: var(--white);
  transform: translateY(-2px) scale(1.032);
  border-color: var(--fun-green);
}
.button.secondary {
  background: var(--primary);
  color: var(--accent);
  border-radius: 28px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  margin-left: 10px;
  border: 2px solid var(--accent);
  box-shadow: 0 3px 14px rgba(28,37,65,0.07);
  transition: background 0.18s, color 0.16s, border-color 0.2s, transform 0.22s var(--bezier);
}
.button.secondary:hover, .button.secondary:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
  transform: translateY(-2px) scale(1.032);
}

/* ---------------------- MOBILE NAVIGATION ---------------------- */
.mobile-menu-toggle {
  display: none;
  font-size: 2.2rem;
  background: var(--accent);
  color: var(--primary);
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: none;
  transition: background 0.22s;
  z-index: 501;
  margin-left: 10px;
}
.mobile-menu-toggle:active, .mobile-menu-toggle:focus {
  background: var(--fun-coral);
  color: var(--white);
}
.mobile-menu {
  position: fixed;
  top: 0; left: 0;
  width: 100vw; height: 100vh;
  background: var(--primary);
  color: var(--accent);
  transform: translateX(-100vw);
  transition: transform 0.32s var(--bezier);
  z-index: 5000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 38px 24px 24px 24px;
  gap: 18px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  position: absolute;
  top: 22px; right: 24px;
  font-size: 2.2rem;
  background: var(--fun-coral);
  color: var(--white);
  border-radius: 12px;
  padding: 4px 16px;
  border: none;
  z-index: 10010;
}
.mobile-menu-close:focus {
  box-shadow: 0 0 0 3px var(--accent);
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
  align-items: flex-start;
}
.mobile-nav a {
  font-size: 1.22rem;
  color: var(--accent);
  padding: 10px 8px;
  border-radius: var(--radius);
  font-family: 'Montserrat';
  width: 100%;
  font-weight: 700;
  transition: background 0.18s, color 0.1s, transform 0.18s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--accent);
  color: var(--primary);
  transform: translateX(7px);
}
@media (max-width: 1020px) {
  .main-nav { display: none; }
  .mobile-menu-toggle { display: block; }
}
@media (min-width: 1021px) {
  .mobile-menu { display: none !important; }
}

/* ---------------------- HERO & ABOUT & CTA ---------------------- */
.hero, .hero-contact, .confirmation {
  background: var(--gray-bg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 350px;
}
.hero .content-wrapper,
.hero-contact .content-wrapper,
.confirmation .content-wrapper {
  align-items: flex-start;
  max-width: 700px;
  margin: 0 auto;
}
.hero h1, .confirmation h1 { color: var(--primary); }
.hero .subtitle { color: var(--secondary); }
.cta {
  background: var(--accent);
  display: flex;
  justify-content: center;
  align-items: center;
}
.cta .content-wrapper {
  align-items: center;
}
.cta h2 {
  color: var(--primary);
  margin-bottom: 22px;
  font-size: 2rem;
}
.cta .button { margin-left: 0; }

/* ---------------------- FEATURES ---------------------- */
.features {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.features .feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 28px;
  justify-content: center;
}
.feature {
  flex: 1 1 220px;
  min-width: 200px;
  background: var(--gray-bg);
  padding: 24px 18px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 18px rgba(28,37,65,0.10);
  text-align: center;
  transition: transform 0.17s, box-shadow 0.18s;
  position: relative;
  overflow: hidden;
}
.feature img {
  width: 44px;
  margin-bottom: 14px;
  animation: floaticon 2.6s infinite cubic-bezier(.6,1.4,.7,1.6);
}
.feature:hover, .feature:focus-within {
  transform: translateY(-4px) scale(1.033);
  box-shadow: 0 8px 32px rgba(28,37,65,0.17);
}
@keyframes floaticon {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ---------------------- SERVICES PREVIEW ---------------------- */
.services-preview {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: 0 2px 22px rgba(58,80,107,0.07);
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 32px;
  width: 100%;
}
.service-item {
  flex: 1 1 220px;
  background: var(--white);
  margin-bottom: 20px;
  border-radius: var(--radius);
  box-shadow: 0 2px 16px rgba(30,120,255,0.10);
  padding: 20px 16px;
  transition: transform 0.19s, box-shadow 0.16s;
  position: relative;
}
.service-item:hover, .service-item:focus-within {
  transform: translateY(-3px) scale(1.03) rotate(-1.2deg);
  box-shadow: 0 10px 36px rgba(21,199,168,0.12);
  background: #eafff6;
}

/* ---------------------- TESTIMONIALS ---------------------- */
.testimonials {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.testimonials .testimonial-slider {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 18px;
}
.testimonial-card {
  background: #f7f9fd;
  border-radius: var(--radius);
  min-width: 220px;
  max-width: 340px;
  box-shadow: 0 4px 20px rgba(28,37,65,0.07);
  position: relative;
  margin-bottom: 20px;
  transition: transform 0.16s, box-shadow 0.18s;
  border: 2.5px dashed var(--fun-coral);
  color: var(--primary);
}
.testimonial-card p {
  font-size: 1.11rem;
  color: var(--primary);
  margin-bottom: 12px;
  font-style: italic;
}
.testimonial-name {
  font-weight: 700;
  font-family: 'Montserrat';
  color: var(--fun-coral);
  letter-spacing: 0.02em;
  font-size: 1.01rem;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  transform: scale(1.025) rotate(0.5deg);
  box-shadow: 0 8px 30px rgba(250, 211, 94, 0.17);
  border-color: var(--fun-green);
}

/* ---------------------- FOOTER ---------------------- */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 52px 0 30px 0;
  font-size: 1rem;
}
footer .container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 32px;
  align-items: flex-start;
  justify-content: space-between;
}
.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  min-width: 160px;
  max-width: 260px;
}
.footer-brand img {
  height: 44px;
  margin-bottom: 0.5em;
}
.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 120px;
}
.footer-nav a {
  color: var(--accent);
  font-family: 'Montserrat';
  font-size: 1.02rem;
  padding: 5px 4px;
  border-radius: 8px;
  transition: background 0.14s, color 0.14s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: var(--accent);
  color: var(--primary);
}
.footer-contact span {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 6px;
  color: var(--light);
}
.footer-contact img {
  width: 18px;
}

/* ---------------------- ABOUT PAGE ---------------------- */
.about {
  background: var(--light);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 60px;
}
.text-section {
  max-width: 700px;
  margin-bottom: 24px;
  margin-top: 6px;
}
.text-section ul {
  list-style: disc;
  margin-left: 19px;
  margin-bottom: 0;
}
.team .team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 19px 0 14px 0;
  width: 100%;
  justify-content: center;
}
.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 1px 12px rgba(58,80,107,0.10);
  padding: 18px 18px;
  min-width: 185px;
  flex: 1 1 220px;
  margin-bottom: 20px;
  border-left: 6px solid var(--accent);
  transition: box-shadow 0.17s, border-color 0.13s;
  position: relative;
}
.team-card:hover, .team-card:focus-within {
  box-shadow: 0 6px 20px rgba(244,211,94,0.19), 0 2px 8px rgba(21,199,168,0.07);
  border-color: var(--fun-coral);
}
.company-highlights .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 20px;
  justify-content: center;
}
.value-item {
  background: var(--gray-bg);
  border-radius: var(--radius);
  box-shadow: 0 2px 13px rgba(30,120,255,0.09);
  padding: 20px 18px;
  min-width: 180px;
  flex: 1 1 200px;
  margin-bottom: 20px;
  transition: background 0.16s, border 0.12s;
  border: 2px solid transparent;
}
.value-item:hover, .value-item:focus-within {
  background: #fffde5;
  border: 2px solid var(--fun-coral);
}

/* ---------------------- SERVICES PAGE ---------------------- */
.services-list .service-grid, .service-benefits .benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 24px;
}
.service-detail, .benefit-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 18px;
  min-width: 180px;
  margin-bottom: 20px;
  box-shadow: 0 2px 16px rgba(58,80,107,0.09);
  flex: 1 1 205px;
  transition: box-shadow 0.15s, background 0.12s, transform 0.18s;
  position: relative;
}
.service-detail:hover, .benefit-item:hover, .service-detail:focus-within, .benefit-item:focus-within {
  box-shadow: 0 6px 28px rgba(244,173,62,0.15);
  background: #fffcf4;
  transform: scale(1.027);
}

/* ---------------------- PRICING PAGE ---------------------- */
.pricing-table {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 24px;
}
.pricing-item {
  background: var(--white);
  border: 3px solid var(--accent);
  border-radius: var(--radius);
  min-width: 180px;
  flex: 1 1 240px;
  padding: 22px 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 18px rgba(244,211,94,0.09);
  text-align: center;
  transition: border-color 0.18s, box-shadow 0.2s, transform 0.19s;
  position: relative;
}
.pricing-item .price {
  font-size: 1.32rem;
  color: var(--fun-green);
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  margin-bottom: 7px;
  display: block;
}
.pricing-item:hover, .pricing-item:focus-within {
  border-color: var(--fun-coral);
  transform: scale(1.034);
  box-shadow: 0 12px 32px rgba(33,136,255,0.11);
}
.pricing-info ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 14px;
}

/* ---------------------- FAQ PAGE ---------------------- */
.faq-list .faq-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 26px;
  justify-content: center;
}
.faq-item {
  min-width: 200px;
  flex: 1 1 300px;
  margin-bottom: 20px;
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 18px 18px;
  box-shadow: 0 2px 16px rgba(21,199,168,0.10);
  transition: background 0.18s, transform 0.15s, box-shadow 0.17s;
  position: relative;
}
.faq-item:hover, .faq-item:focus-within {
  background: #e6fdff;
  transform: scale(1.022) rotate(-1.3deg);
  box-shadow: 0 9px 34px rgba(21,199,168,0.13);
}

/* ---------------------- CONTACT PAGE ---------------------- */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 24px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1rem;
  color: var(--primary);
  background: #fffde7;
  border-radius: 14px;
  padding: 8px 14px;
}
.contact-item img {
  width: 22px;
}
.contact-info ul {
  list-style: disc;
  margin-left: 19px;
  margin-bottom: 0;
}
.map-placeholder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  padding: 22px 18px;
  border-radius: 16px;
  background: #eaf7fe;
  box-shadow: 0 2px 13px rgba(33,136,255,0.07);
  margin-top: 14px;
}
.address-block {
  display: flex;
  align-items: center;
  gap: 11px;
}
.address-block img {
  width: 22px;
}

/* ---------------------- POLICY PAGES ---------------------- */
.policy-text {
  background: var(--gray-bg);
  border-radius: var(--radius);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.policy-text h1,.policy-text h2 {
  text-align: left;
}
.policy-text h1 {
  font-size: 2.1rem;
}
.policy-text h2 {
  font-size: 1.44rem;
}
.policy-text ul {
  list-style: disc;
  margin-left: 22px;
  margin-bottom: 18px;
}

/* ---------------------- THANK YOU PAGE ---------------------- */
.confirmation {
  background: #e7f6f7;
  box-shadow: 0 2px 25px rgba(33,136,255,0.09);
  border-radius: var(--radius);
  text-align: left;
  margin-bottom: 60px;
  min-height: 270px;
}
.confirmation .button { margin-top: 20px; }

/* ---------------------- RESPONSIVE LAYOUTS ---------------------- */
@media (max-width: 1020px) {
  .container {
    padding-left: 10px;
    padding-right: 10px;
  }
  header .container {
    flex-direction: row;
    gap: 12px;
  }
  footer .container {
    gap: 18px;
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 860px) {
  .content-grid,
  .feature-grid, .service-list, .team-grid, .value-grid,
  .services-list .service-grid, .service-benefits .benefit-grid,
  .pricing-table, .faq-list .faq-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 768px) {
  .section, .policy-text {
    margin-bottom: 36px;
    padding: 28px 7px;
  }
  .hero, .confirmation, .about {
    padding: 28px 5px;
  }
  h1, .hero h1, .confirmation h1 {
    font-size: 1.57rem;
    margin-bottom: 9px;
  }
  h2, .about h2, .confirmation h2 {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .footer-brand img {
    height: 34px;
  }
  .testimonial-card,
  .card,
  .feature,
  .service-item,
  .value-item,
  .team-card,
  .service-detail,
  .benefit-item,
  .faq-item,
  .pricing-item {
    min-width: 0;
    width: 100%;
  }
  .text-image-section {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }
}

/* ---------------------- ANIMATIONS + INTERACTIONS ---------------------- */
.button, .main-nav a, .mobile-nav a, .footer-nav a {
  transition: all 0.18s var(--bezier);
}
button:active, .button:active {
  transform: scale(0.97);
}
.policy-text, .features, .testimonials, .services-preview,
.company-highlights, .about, .confirmation, .faq-list, .pricing,
.pricing-table, .policy-text {
  animation: fadeSlideIn 0.72s var(--bezier) 0.05s both;
}
@keyframes fadeSlideIn {
  from { opacity: 0; transform: translateY(32px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -------------- COOKIE CONSENT BANNER -------------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  background: var(--primary);
  color: var(--accent);
  z-index: 9999;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 24px;
  justify-content: center;
  padding: 23px 18px 16px 18px;
  font-size: 1rem;
  box-shadow: 0 -2px 20px rgba(28,37,65,0.19);
  animation: cookieIn 0.9s var(--bezier);
}
@keyframes cookieIn {
  0% { opacity: 0; transform: translateY(70px); }
  80% { opacity: 1; transform: translateY(-4px); }
  100% { opacity: 1; transform: translateY(0); }
}
.cookie-banner__message {
  flex: 1 1 190px;
  font-size: 1.01rem;
  color: var(--accent);
}
.cookie-banner__actions {
  display: flex;
  flex-direction: row;
  gap: 11px;
  flex-wrap: wrap;
}
.cookie-btn {
  border-radius: 18px;
  font-family: 'Montserrat';
  font-weight: 600;
  font-size: 1rem;
  padding: 7px 23px;
  box-shadow: 0 2px 13px rgba(244,211,94,0.09);
  border: 1.6px solid var(--accent);
  transition: background 0.14s, color 0.14s, border 0.13s;
  margin: 0 0 0 0;
}
.cookie-btn.accept {
  background: var(--accent);
  color: var(--primary);
}
.cookie-btn.accept:hover, .cookie-btn.accept:focus {
  background: var(--fun-green);
  color: var(--white);
  border-color: var(--fun-green);
}
.cookie-btn.reject {
  background: none;
  color: var(--accent);
  border-color: var(--fun-coral);
}
.cookie-btn.reject:hover, .cookie-btn.reject:focus {
  background: var(--fun-coral);
  color: var(--white);
}
.cookie-btn.settings {
  background: var(--primary);
  color: var(--accent);
  border-color: var(--accent);
}
.cookie-btn.settings:hover, .cookie-btn.settings:focus {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--primary);
}
@media (max-width: 680px) {
  .cookie-banner {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    padding: 13px 9px 9px 10px;
  }
  .cookie-banner__actions {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    width: 100%;
  }
}

/* -------------- COOKIE SETTINGS MODAL -------------- */
.cookie-modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(28,37,65,0.55);
  z-index: 10004;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: modalOverlayIn 0.25s;
}
@keyframes modalOverlayIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.cookie-modal {
  background: var(--white);
  color: var(--primary);
  border-radius: var(--radius);
  max-width: 430px;
  width: 92vw;
  box-shadow: 0 8px 44px rgba(244,211,94,0.17);
  padding: 38px 22px 25px 22px;
  position: relative;
  z-index: 10010;
  animation: modalIn .33s both var(--bezier);
  font-size: 1rem;
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.82) translateY(56px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.cookie-modal h2 {
  font-size: 1.15rem;
  color: var(--fun-coral);
  margin-bottom: 13px;
}
.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
  padding: 8px 0;
  border-bottom: 1px solid #eaf7fe;
  font-size: 1rem;
}
.cookie-category label {
  font-family: 'Montserrat';
  color: var(--primary);
  font-size: 1.01rem;
}
.cookie-toggle {
  appearance: none;
  width: 40px;
  height: 22px;
  background: var(--gray-bg);
  border-radius: 20px;
  position: relative;
  transition: background 0.19s;
  margin-left: 12px;
  border: 1px solid #ccc;
}
.cookie-toggle:checked {
  background: var(--fun-green);
  border-color: var(--fun-green);
}
.cookie-toggle::after {
  content: '';
  display: block;
  position: absolute;
  top: 2.5px;
  left: 2px;
  width: 17px;
  height: 17px;
  background: var(--white);
  border-radius: 50%;
  transition: left 0.16s;
  box-shadow: 0 1px 6px rgba(0,0,0,0.08);
}
.cookie-toggle:checked::after {
  left: 21px;
}
.cookie-modal__close {
  position: absolute;
  top: 13px; right: 14px;
  font-size: 1.42rem;
  background: var(--fun-coral);
  color: var(--white);
  border-radius: 10px;
  border: none;
  width: 32px;
  height: 32px;
  text-align: center;
}
.cookie-modal__close:focus {
  box-shadow: 0 0 0 3px var(--accent);
}
.cookie-modal__footer {
  display: flex;
  flex-direction: row;
  gap: 15px;
  justify-content: flex-end;
  margin-top: 20px;
}
@media (max-width: 440px) {
  .cookie-modal {
    padding: 20px 6px 16px 7px;
    max-width: 97vw;
  }
}

/* --------------- SCROLLBAR DESIGN (optional for fun) --------------- */
::-webkit-scrollbar {
  width: 14px;
  background: #f4f6ff;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 7px;
  border: 4px solid #f4f6ff;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--fun-coral);
}

/* ---------------------- MISC ---------------------- */
html { scroll-behavior: smooth; }
body { min-height: 100vh; background: #FCFCFC; }

/* END OF STYLE.CSS */
