/* ==========================================================================
   CSS RESET & BASE STYLES (Normalize & Reset)
   ==========================================================================
*/
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%;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, main, menu, nav, section {
  display: block;
}
body {
  line-height: 1.5;
  min-height: 100vh;
  background: #FFF8F4;
  color: #27343d;
  font-family: 'Roboto', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
  border-style: none;
  border-radius: 12px;
}
a {
  color: #14B89C;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #FF9344;
  text-decoration: underline;
}
button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
}
ul, ol {
  padding-left: 1.5em;
}
table {
  border-collapse: collapse;
  width: 100%;
}
th, td {
  padding: 12px 16px;
  border-bottom: 1px solid #E7E7E7;
}
th {
  background: #FFF3EA;
  color: #283E4A;
  font-weight: 700;
}

/* ==========================================================================
   BRAND VARIABLES & FONT IMPORTS
   ==========================================================================
*/
@import url('https://fonts.googleapis.com/css?family=Montserrat:700,600,400&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,500,700&display=swap');
:root {
  --brand-primary: #283E4A;
  --brand-secondary: #14B89C;
  --brand-accent: #FAFAFA;
  --warm-base: #FFF8F4;
  --warm-orange: #FF9344;
  --warm-yellow: #FFD68A;
  --neutral-dark: #27343d;
  --neutral-mid: #435054;
  --neutral-light: #F5F3F0;
  --shadow: 0 3px 12px rgba(240, 109, 26, 0.07), 0 1.5px 6px rgba(30,51,84,0.03);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --font-display: 'Montserrat', Arial, sans-serif;
  --font-body: 'Roboto', Arial, sans-serif;
}

/* ==========================================================================
   TYPOGRAPHY & HEADINGS
   ==========================================================================
*/
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--brand-primary);
  margin-bottom: 16px;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}
h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
h4 {
  font-size: 1.15rem;
}
p, li, td, th {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--neutral-dark);
}
strong {
  color: var(--brand-primary);
  font-weight: 600;
}

/* ==========================================================================
   LAYOUT CONTAINERS & SPACING
   ==========================================================================
*/
.container {
  max-width: 1120px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: var(--warm-base);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 768px) {
  .section {
    margin-bottom: 38px;
    padding: 22px 8px;
    border-radius: var(--radius);
  }
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 28px 24px;
  margin-bottom: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 280px;
  flex: 1 1 280px;
}
.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;
}
@media (max-width: 768px) {
  .text-image-section {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #FFF6ED;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  max-width: 540px;
}
.testimonial-card p {
  color: var(--neutral-dark);
  font-size: 1.1rem;
  font-style: italic;
}
.testimonial-card div {
  color: var(--brand-primary);
  font-size: 1rem;
  font-family: var(--font-body);
}

.feature-list, .feature-item, .faq-list, .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.feature-list li, .feature-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 15px;
  background: #FFFBF8;
  padding: 14px 18px;
  border-radius: var(--radius);
  margin-bottom: 12px;
  box-shadow: 0 1.5px 8px rgba(255, 147, 68, 0.07);
}
.feature-list li img {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
}
.feature-item {
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}

/* ==========================================================================
   NAVIGATION STYLES
   ==========================================================================
*/
header {
  background: #FFF;
  box-shadow: 0 1.5px 12px rgba(40, 62, 74, 0.06);
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 22;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.main-nav a {
  color: var(--brand-primary);
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
  display: flex;
  align-items: center;
}
.main-nav a:not(.cta-primary):hover {
  background: var(--warm-yellow);
  color: #fff;
}
.main-nav img {
  height: 40px;
  margin-right: 16px;
  border-radius: 0;
}
.cta-primary {
  background: var(--warm-orange);
  color: #FFF;
  font-family: var(--font-display);
  font-weight: 700;
  padding: 10px 28px;
  border-radius: var(--radius);
  font-size: 1.07rem;
  box-shadow: var(--shadow);
  margin-left: 8px;
  transition: background 0.22s, box-shadow 0.2s, transform 0.2s;
  outline: none;
  border: none;
  display: inline-block;
  cursor: pointer;
  position: relative;
}
.cta-primary:hover, .cta-primary:focus {
  background: #ffb76b;
  color: var(--brand-primary);
  box-shadow: 0 6px 24px rgba(255,147,68,0.16);
  transform: translateY(-2px) scale(1.03);
}

/* Hide mobile menu at desktop, show at mobile (burger) */
.mobile-menu-toggle {
  display: none;
  position: absolute;
  top: 18px;
  right: 16px;
  font-size: 2rem;
  background: var(--brand-secondary);
  color: #fff;
  padding: 7px 15px;
  border-radius: var(--radius-lg);
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 101;
  outline: none;
  border: none;
  transition: background 0.19s;
}
.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus {
  background: var(--warm-orange);
  color: #fff;
}

.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: #FFF8F4;
  box-shadow: 0 2px 40px rgba(40,62,74,0.17);
  z-index: 200;
  transform: translateX(-105vw);
  transition: transform 0.35s cubic-bezier(.65,.05,.29,.89);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 45px;
  padding-left: 0;
  pointer-events: none;
  opacity: 0;
}
.mobile-menu.active {
  transform: translateX(0);
  pointer-events: auto;
  opacity: 1;
}
.mobile-menu-close {
  position: absolute;
  top: 18px;
  right: 19px;
  font-size: 2.1rem;
  background: var(--warm-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius);
  padding: 3px 13px;
  cursor: pointer;
  box-shadow: 0 2.5px 10px rgba(255,147,68,0.12);
  z-index: 12;
  transition: background 0.21s;
}
.mobile-menu-close:hover,
.mobile-menu-close:focus {
  background: var(--brand-secondary);
  color: #fff;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  margin-top: 32px;
  padding-left: 32px;
}
.mobile-nav a {
  color: var(--brand-primary);
  font-size: 1.3rem;
  font-family: var(--font-display);
  font-weight: 500;
  padding: 13px 18px;
  border-radius: var(--radius);
  transition: background 0.19s, color 0.16s;
  margin-right: auto;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: var(--brand-secondary);
  color: #FFF;
}

@media (max-width: 1020px) {
  .container {
    max-width: 94vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px;
  }
}
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 769px) {
  .mobile-menu {
    display: none !important;
  }
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ==========================================================================
   FOOTER STYLES
   ==========================================================================
*/
footer {
  background: #FFF;
  padding: 38px 0 0 0;
  margin-top: 60px;
  box-shadow: 0 -7px 35px rgba(255,147,68,0.08);
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin-bottom: 16px;
}
.footer-nav a {
  color: var(--brand-primary);
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  transition: background 0.16s, color 0.17s;
}
.footer-nav a:hover {
  background: var(--warm-yellow);
  color: #FFF;
}
.footer-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 1rem;
  color: var(--brand-primary);
}
.footer-contact div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer-contact img {
  width: 20px;
  height: 20px;
  border-radius: 0;
}
.copyright {
  text-align: center;
  color: #aaa;
  font-size: 0.97rem;
  padding: 14px 0 8px 0;
}
@media (max-width: 660px) {
  .footer-contact {
    flex-direction: column;
    align-items: flex-start;
    padding-left: 24px;
  }
}

/* ==========================================================================
   BUTTONS & LINKS
   ==========================================================================
*/
button, .cta-primary, .cookie-consent-banner button, .cookie-consent-modal button {
  cursor: pointer;
  user-select: none;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ==========================================================================
   SPECIAL BLOCKS & COMPONENTS
   ==========================================================================
*/
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #FFF6ED;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 8px rgba(252,187,118,0.07);
  padding: 20px 16px;
}
.faq-item h3 {
  font-size: 1.2rem;
}
.faq-item p {
  color: var(--neutral-mid);
}
.faq-support {
  margin-top: 26px;
}
.faq-support p {
  margin-bottom: 9px;
  font-size: 1rem;
  color: var(--brand-primary);
  font-weight: 500;
}
.faq-support a {
  color: var(--warm-orange);
  font-weight: 700;
  font-family: var(--font-display);
  text-decoration: underline;
  transition: color 0.18s;
}
.faq-support a:hover {
  color: var(--brand-secondary);
}
.platform-badges {
  display: flex;
  gap: 20px;
  margin-top: 16px;
}
.platform-badges img {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
}
.service-list li {
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px 18px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.service-list li h3 {
  margin-bottom: 6px;
}

.contact-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 9px;
}
.address-block, .contact-details, .working-hours {
  flex: 1 1 160px;
  background: #FFF9F3;
  border-radius: var(--radius);
  box-shadow: 0 1.5px 8px rgba(255,147,68,0.06);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 180px;
}
.address-block h2, .contact-details h2, .working-hours h2 {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.contact-details ul {
  list-style: none;
  padding: 0;
}
.contact-details li {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

@media (max-width: 700px) {
  .contact-block {
    flex-direction: column;
    gap: 18px;
  }
}

/* ==========================================================================
   TABLE STYLING
   ==========================================================================
*/
table {
  margin-top: 20px;
  background: #FFF;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
thead, th {
  background: #FFF3EA;
  color: var(--brand-primary);
}
td {
  background: #FFF;
  color: var(--neutral-dark);
}
td:last-child, th:last-child {
  text-align: right;
}
td:first-child, th:first-child {
  text-align: left;
}

/* ==========================================================================
   COOKIE CONSENT BANNER
   ==========================================================================
*/
.cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 900;
  background: #FFFBF8;
  color: var(--neutral-dark);
  padding: 20px 6vw 20px 6vw;
  box-shadow: 0 -2px 18px 0 rgba(255,147,68,0.13);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  transition: transform 0.33s cubic-bezier(.65,.05,.29,.89), opacity 0.22s;
  transform: translateY(0);
  opacity: 1;
}
.cookie-consent-banner.hide {
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.cookie-consent-banner .cookie-message {
  font-size: 1rem;
  color: var(--brand-primary);
  flex: 1 1 240px;
  margin-right: 12px;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 14px;
}
.cookie-consent-banner button {
  padding: 9px 18px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
  background: var(--brand-secondary);
  color: #FFF;
  border: none;
  box-shadow: var(--shadow);
  transition: background 0.16s, color 0.15s, transform 0.17s;
}
.cookie-consent-banner button.accept {
  background: var(--warm-orange);
  color: #FFF;
}
.cookie-consent-banner button.reject {
  background: var(--brand-secondary);
}
.cookie-consent-banner button.settings {
  background: #FFF;
  color: var(--brand-primary);
  border: 1.5px solid var(--brand-secondary);
}
.cookie-consent-banner button:hover, .cookie-consent-banner button:focus {
  background: var(--warm-yellow);
  color: var(--brand-primary);
  transform: scale(1.05);
}
@media (max-width: 600px) {
  .cookie-consent-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 12px;
    gap: 14px;
  }
  .cookie-consent-banner .cookie-message {
    margin-right: 0;
  }
}

.cookie-consent-modal-overlay {
  display: none;
  position: fixed;
  z-index: 995;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(34,34,34,0.44);
  justify-content: center;
  align-items: center;
  transition: opacity 0.26s;
}
.cookie-consent-modal-overlay.active {
  display: flex;
  opacity: 1;
}
.cookie-consent-modal {
  background: #FFF8F4;
  border-radius: var(--radius-lg);
  box-shadow: 0 8px 44px 0 rgba(40,62,74,0.22);
  max-width: 390px;
  width: 93vw;
  padding: 32px 28px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  animation: popin 0.27s cubic-bezier(.15,.89,.35,1.1);
}
@keyframes popin {
  0% { transform: scale(0.85); opacity: 0; }
  90% { transform: scale(1.03); opacity: 1; }
  100% { transform: scale(1); }
}
.cookie-consent-modal h3 {
  margin-bottom: 12px;
  font-size: 1.4rem;
  color: var(--brand-primary);
  font-family: var(--font-display);
}
.cookie-consent-modal .cookie-category {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}
.cookie-consent-modal label {
  flex-grow: 1;
  font-size: 1rem;
  color: var(--neutral-dark);
}
.cookie-consent-modal input[type="checkbox"] {
  accent-color: var(--brand-secondary);
  width: 20px;
  height: 20px;
  border-radius: 7px;
  border: 1.5px solid #b0cec4;
}
.cookie-consent-modal button {
  padding: 9px 16px;
  font-size: 1rem;
  font-family: var(--font-display);
}
.cookie-consent-modal .close-modal {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--warm-orange);
  color: #fff;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 1.5rem;
  height: 32px;
  width: 32px;
  cursor: pointer;
  transition: background 0.2s;
}
.cookie-consent-modal .close-modal:hover {
  background: var(--brand-secondary);
}

/* ==========================================================================
   MICRO-INTERACTIONS & HOVER TRANSITIONS
   ==========================================================================
*/
.card, .testimonial-card, .faq-item, .address-block, .contact-details, .working-hours, .feature-list li, .service-list li {
  transition: box-shadow 0.19s, transform 0.13s;
}
.card:hover, .testimonial-card:hover, .faq-item:hover {
  box-shadow: 0 11px 22px rgba(255,147,68,0.12);
  transform: translateY(-2px) scale(1.015);
  background: #FFF5E6;
}

.feature-list li:hover {
  box-shadow: 0 6px 18px 0 rgba(255,147,68,0.12);
  background: #FFEDCF;
}
.service-list li:hover {
  box-shadow: 0 12px 18px rgba(255,147,68,0.09);
  background: #fff4e7;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ==========================================================================
*/
@media (max-width: 840px) {
  .card-container, .content-grid {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
}
@media (max-width: 660px) {
  .section {
    margin-bottom: 28px;
    padding: 13px 2px;
  }
  .card {
    padding: 18px 7px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.2rem;
  }
}

/* ==========================================================================
   UTILITY CLASSES
   ==========================================================================
*/
.text-center {
  text-align: center;
}
.mt-40 {
  margin-top: 40px;
}
.mb-30 {
  margin-bottom: 30px;
}

/* ==========================================================================
   PRINTING ACCESSIBILITY COLOR CONTRAST
   ==========================================================================
*/
@media (print) {
  body {
    background: #FFF;
    color: #000;
  }
  .section, .card, .testimonial-card, .faq-item, .feature-list li {
    box-shadow: none !important;
    background: #fff !important;
  }
}

/* ==========================================================================
   GENERAL ACCESSIBILITY
   ==========================================================================
*/
:focus {
  outline: 3px solid var(--brand-secondary);
  outline-offset: 2px;
}

/* Ensures no element overlaps due to proper spacing */
.card + .card, .testimonial-card + .testimonial-card {
  margin-top: 20px;
}

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