/* RESET & BASE STYLES ----------------------------------------------------- */
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.6;
  background: #fcfcfc;
  font-family: 'Roboto', Arial, sans-serif;
  color: #222;
  min-height: 100vh;
}
*, *:before, *:after {
  box-sizing: inherit;
}
img {
  vertical-align: middle;
  max-width: 100%;
  border: 0;
}
ul, ol {
  padding-left: 1.2em;
}
a {
  color: #25325B;
  text-decoration: none;
  transition: color 0.2s;
}
a:hover, a:focus {
  color: #F7B32B;
  outline: none;
}


/* TYPOGRAPHY ----------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #25325B;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.2;
}
h1 {
  font-size: 2.6rem;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
h2 {
  font-size: 2rem;
  margin-bottom: 18px;
  text-transform: uppercase;
}
h3 {
  font-size: 1.3rem;
  margin-bottom: 14px;
  text-transform: uppercase;
}
h4, h5, h6 {
  margin-bottom: 8px;
}
p, li, em {
  font-size: 1.05rem;
  color: #222;
  letter-spacing: 0.01em;
}
strong {
  font-weight: 700;
  color: #25325B;
}
em {
  font-style: italic;
  color: #444;
}


/* CONTAINERS, SECTIONS, LAYOUT GRIDS ------------------------------------- */
.container {
  max-width: 1160px;
  padding: 0 20px;
  margin: 0 auto;
  width: 100%;
}
.content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 18px rgba(37,50,91,0.09);
}
.hero-section {
  display: flex;
  align-items: center;
  min-height: 320px;
  background: #F7B32B;
  color: #25325B;
  border-radius: 0 0 60px 60px;
  margin-bottom: 32px;
  padding: 48px 0 60px;
}
.hero-section h1,
.hero-section h2, .hero-section p {
  color: #25325B;
}
.features-section, .services-section, .about-section,
.services-detail-section, .pricing-section, .themes-overview-section, .thankyou-section, .moreinfo-section,
.cookie-section, .privacy-section, .gdpr-section, .terms-section, .contact-section, .inquiry-process-section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 10px rgba(37,50,91,0.06);
}
.cta-section {
  margin-bottom: 48px;
  padding: 32px 20px;
  background: #25325B;
  color: #fff;
  border-radius: 32px;
  box-shadow: 0 2px 10px rgba(37,50,91,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-section h2 {
  color: #fff;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(37,50,91,0.09);
  padding: 28px 20px;
  position: relative;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 370px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 4px 24px rgba(37,50,91,0.13);
  transform: translateY(-3px) scale(1.03);
}

.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: flex-start;
  gap: 20px;
  padding: 20px;
  background: #f6f7fa;
  border-radius: 15px;
  box-shadow: 0 2px 8px rgba(37,50,91,0.10);
  margin-bottom: 20px;
  border-left: 6px solid #F7B32B;
  position: relative;
  max-width: 650px;
}
.testimonial-card p {
  font-size: 1.1rem;
  color: #25325B;
  font-family: 'Montserrat', Arial, sans-serif;
  line-height: 1.55;
  margin-bottom: 0;
}
.testimonial-card span {
  color: #222;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
}


/* NAVIGATION ----------------------------------------------------- */
header {
  width: 100%;
  background: #fff;
  padding: 18px 0 14px 0;
  box-shadow: 0 2px 12px rgba(37,50,91,0.055);
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
header .container {
  display: flex;
  align-items: center;
  gap: 24px;
}
header img {
  height: 48px;
  width: auto;
  margin-right: 22px;
}
header nav {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
header nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: #25325B;
  border-radius: 8px;
  padding: 6px 13px;
  transition: background 0.16s, color 0.16s;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
header nav a:hover, header nav a.active {
  background: #F7B32B;
  color: #25325B;
}
.primary-cta {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
  font-weight: 700;
  background: #25325B;
  color: #fff !important;
  border: none;
  border-radius: 10px;
  padding: 10px 30px;
  margin-left: 18px;
  box-shadow: 0 2px 10px rgba(37,50,91,0.09);
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.16s, color 0.16s, box-shadow 0.2s;
  display: inline-block;
  outline: none;
}
.primary-cta:hover, .primary-cta:focus {
  background: #F7B32B;
  color: #25325B !important;
  box-shadow: 0 4px 18px rgba(247,179,43,0.11);
}


/* MOBILE MENU --------------------------------------------------- */
.mobile-menu-toggle {
  font-size: 1.85rem;
  background: none;
  border: none;
  color: #25325B;
  padding: 10px 14px;
  border-radius: 7px;
  cursor: pointer;
  margin-left: 14px;
  display: none;
  z-index: 1102;
  transition: background 0.15s, color 0.15s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #F7B32B;
  color: #25325B;
}
.mobile-menu {
  position: fixed;
  left: 0; top: 0;
  width: 100vw;
  height: 100vh;
  background: #25325B;
  color: #fff;
  z-index: 1101;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  padding: 0;
  transition: transform 0.35s cubic-bezier(.7,.3,.3,1), opacity 0.3s;
  transform: translateX(-100vw);
  opacity: 0;
  pointer-events: none;
}
.mobile-menu.open {
  transform: translateX(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 2.3rem;
  align-self: flex-end;
  margin: 20px 26px 20px 0;
  cursor: pointer;
  z-index: 1103;
  padding: 5px 10px;
  border-radius: 6px;
  transition: background 0.14s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus{
  background: #F7B32B;
  color: #25325B;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 18px 32px;
  gap: 24px;
  flex-wrap: nowrap;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 9px 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s, color 0.15s, background 0.13s;
  width: 100%;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  color: #F7B32B;
  border-bottom: 2px solid #F7B32B;
  background: rgba(37,50,91,0.12);
  outline: none;
}

@media (max-width: 1024px) {
  header nav {
    gap: 12px;
  }
}
@media (max-width: 900px) {
  .container {
    max-width: 98vw;
    padding: 0 10px;
  }
  .content-wrapper {
    gap: 13px;
  }
  .hero-section, .features-section, .about-section, .services-section, .services-detail-section, .cta-section,
  .pricing-section, .themes-overview-section, .thankyou-section, .moreinfo-section, .contact-section, .privacy-section, .gdpr-section, .terms-section {
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (max-width: 768px) {
  header nav, .primary-cta {
    display: none;
  }
  .mobile-menu-toggle {
    display: inline-block;
  }
  header {
    padding: 12px 0 10px 0;
  }
  .hero-section {
    border-radius: 0 0 34px 34px;
    padding: 32px 0 40px 0;
    margin-bottom: 24px;
  }
  .section, .services-section, .about-section, .features-section,
   .services-detail-section, .pricing-section, .contact-section, .thankyou-section, .privacy-section, .gdpr-section, .terms-section, .cta-section {
    padding: 28px 5px;
    margin-bottom: 40px;
    border-radius: 13px;
  }
  .card {
    min-width: 95vw;
    max-width: 100vw;
    border-radius: 11px;
  }
  .content-grid, .card-container, .features {
    flex-direction: column;
    gap: 16px;
  }
  .testimonial-card {
    padding: 15px;
    border-radius: 10px;
    gap: 14px;
    margin-bottom: 18px;
    max-width: 100vw;
  }
  .moreinfo-section, .thankyou-section, .privacy-section, .gdpr-section, .terms-section, .cookie-section {
    padding: 18px 4px;
  }
  .cta-section {
    border-radius: 19px;
    padding: 22px 4px;
    margin-bottom: 28px;
  }
  .text-image-section {
    flex-direction: column;
    gap: 23px;
  }
}
@media (max-width: 500px) {
  h1 { font-size: 1.55rem; }
  h2 { font-size: 1.22rem; }
  h3 { font-size: 1.07rem; }
  p, li, em { font-size: 0.98rem; }
  .primary-cta { font-size: 0.98rem; padding: 8px 14px; }
}


/* TABLE DESIGN ------------------------------------------------- */
table {
  width: 100%;
  border-collapse: collapse;
  background: #f6f7fa;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}
th, td {
  padding: 14px 12px;
  text-align: left;
  font-size: 1rem;
}
th {
  background: #25325B;
  color: #fff;
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #F7B32B;
}
td {
  border-bottom: 1px solid #e8eaf2;
}
tbody tr:last-child td {
  border-bottom: none;
}
table tr:hover td {
  background: #fff8e3;
  transition: background 0.12s;
}


/* LISTS & DECOR ---------------------------------------------*/
ul, ol {
  margin-bottom: 10px;
}
ul li, ol li {
  margin-bottom: 7px;
  padding-left: 0.25em;
  line-height: 1.55;
}
ul li strong, ol li strong {
  color: #25325B;
}
ul {
  list-style-type: square;
}
ol {
  list-style-type: decimal-leading-zero;
}


/* SHAPES, BUTTONS, MICRO-INTERACTIONS ------------------------- */
button, .button, input[type='submit'] {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.03rem;
  font-weight: 600;
  border: none;
  outline: none;
  border-radius: 9px;
  padding: 9px 25px;
  background: #F7B32B;
  color: #25325B;
  cursor: pointer;
  transition: background 0.17s, color 0.14s, box-shadow 0.14s, border 0.12s;
}
button:hover, button:focus, .button:hover, .button:focus, input[type='submit']:hover, input[type='submit']:focus {
  background: #25325B;
  color: #fff;
  box-shadow: 0 3px 12px rgba(247,179,43,0.10);
}

/* CARDS visually geometric */
.card, .testimonial-card {
  border-radius: 17px 4px 17px 4px;
  border: 2.3px solid #F7B32B;
  box-shadow: 0 4px 22px rgba(37,50,91,0.08);
  position: relative;
}
.card:after, .testimonial-card:after {
  content: '';
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: 38px;
  height: 38px;
  background: #F7B32B;
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
  opacity: 0.15;
}

/* VISUAL HIERARCHY ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  margin-top: 12px;
  margin-bottom: 0.6em;
}
.content-wrapper h1:first-child,
.content-wrapper h2:first-child {
  margin-top: 0;
}

/* SPACING, FLEX ALIGNMENTS ----------------------------------- */
.features-section ul, .about-section ul, .services-section ul, .features-section ol,
.services-detail-section ul, .services-detail-section ol,
.themes-overview-section ul, .moreinfo-section ul, .contact-section ul, .inquiry-process-section ul, .inquiry-process-section ol {
  margin-top: 11px;
  margin-bottom: 0;
  scroll-margin-top: 70px;
}

/* FOOTER ----------------------------------------------------- */
footer {
  width: 100%;
  background: #25325B;
  color: #fff;
  padding: 26px 0 18px 0;
  border-radius: 32px 32px 0 0;
  margin-top: 32px;
  box-shadow: 0 -2px 20px rgba(37,50,91,0.08);
}
footer .container {
  display: flex;
  flex-direction: column;
}
footer .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
footer nav {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 5px;
  flex-wrap: wrap;
}
footer nav a {
  color: #F7B32B;
  font-size: 0.99rem;
  text-transform: uppercase;
}
footer nav a:hover, footer nav a:focus {
  color: #fff;
  text-shadow: 0 2px 8px #F7B32B;
}
footer div {
  font-size: 0.98rem;
  text-align: center;
  margin-bottom: 2px;
}


/* RESPONSIVE: For small screen layout of footer, nav, etc ------ */
@media (max-width: 600px) {
  footer .content-wrapper {
    gap: 3px;
  }
  footer nav {
    gap: 5px;
    flex-direction: column;
    align-items: center;
  }
  .footer .container {
    padding-left: 2px;
    padding-right: 2px;
  }
}

/* COOKIE CONSENT BANNER & MODAL ------------------------------ */
.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  border-top: 2px solid #F7B32B;
  box-shadow: 0 -6px 24px rgba(37,50,91,0.09);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 1200;
  padding: 24px 12px 18px 18px;
  gap: 19px;
  font-size: 1.05rem;
}
.cookie-banner p {
  font-size: 1rem;
  color: #222;
  margin-right: 18px;
}
.cookie-banner-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  align-items: center;
}
.cookie-banner button {
  font-size: 0.98rem;
  border-radius: 7px;
  padding: 7px 22px;
  font-weight: 700;
}
.cookie-accept {
  background: #25325B;
  color: #fff;
}
.cookie-accept:hover {
  background: #F7B32B;
  color: #25325B;
}
.cookie-reject {
  background: #e1e6f2;
  color: #25325B;
}
.cookie-settings {
  background: #F7B32B;
  color: #25325B;
}
.cookie-settings:hover {
  background: #25325B;
  color: #fff;
}
@media (max-width: 700px) {
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 17px 6px 13px 9px;
    gap: 13px;
    font-size: 0.97rem;
  }
  .cookie-banner p {
    margin-bottom: 7px;
  }
  .cookie-banner-actions {
    gap: 8px;
  }
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  min-width: 312px;
  min-height: 236px;
  padding: 32px 24px 28px 24px;
  z-index: 1250;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 6px 32px rgba(37,50,91,0.13);
  transform: translate(-50%, -50%) scale(0.96);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.36s cubic-bezier(.7,.3,.3,1), transform 0.33s;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 97vw;
}
.cookie-modal.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.cookie-modal h3 {
  font-size: 1.19rem;
  margin-bottom: 6px;
}
.cookie-categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cookie-category-row {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-bottom: 6px;
}
.cookie-category-row label {
  font-size: 1.02rem;
  flex: 1 1 auto;
}
.cookie-modal-actions {
  display: flex;
  flex-direction: row;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 9px;
}
.cookie-modal-toggle {
  margin-right: 7px;
  accent-color: #F7B32B;
  width: 18px;
  height: 18px;
}
.cookie-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: #25325B;
  cursor: pointer;
  border-radius: 7px;
  padding: 4px 9px;
  transition: background 0.14s;
}
.cookie-modal-close:hover, .cookie-modal-close:focus {
  background: #F7B32B;
  color: #25325B;
}
@media (max-width: 430px) {
  .cookie-modal {
    padding: 13px 6px 13px 6px;
    min-width: unset;
  }
  .cookie-modal-actions {
    gap: 8px;
  }
}


/* GEOMETRIC ACCENTS, DECORATIVE SHAPES ---------------------- */
.section {
  position: relative;
  overflow: hidden;
}
.section:before {
  content: '';
  position: absolute;
  left: -34px;
  top: -26px;
  width: 110px;
  height: 110px;
  background: #25325B;
  opacity: 0.06;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
  z-index: 0;
}
.section:after {
  content: '';
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 90px;
  height: 90px;
  background: #F7B32B;
  opacity: 0.09;
  clip-path: polygon(0% 100%, 50% 0%, 100% 100%);
  z-index: 0;
}
.content-wrapper, .section > * {
  position: relative;
  z-index: 1;
}


/* FORMS ------------------------------------------------------ */
input, select, textarea {
  font-size: 1rem;
  font-family: 'Roboto', Arial, sans-serif;
  border: 2px solid #e8eaf2;
  border-radius: 9px;
  padding: 9px 14px;
  background: #fff;
  margin-bottom: 17px;
  outline: none;
  transition: border 0.18s, box-shadow 0.17s;
  width: 100%;
  max-width: 480px;
}
input:focus, textarea:focus, select:focus {
  border-color: #F7B32B;
  box-shadow: 0 2px 12px rgba(247,179,43,0.09);
}
label {
  font-size: 1.04rem;
  font-family: 'Montserrat', Arial, sans-serif;
  display: block;
  margin-bottom: 5px;
}


/* UTILITY CLASSES & MISC -------------------------------------- */
.text-center {
  text-align: center!important;
}
.mb-20   { margin-bottom: 20px!important; }
.mt-24   { margin-top: 24px!important; }

/* Hide decorative accents on very small screens */
@media (max-width: 420px) {
  .section:before, .section:after { display: none; }
}

/* PRINT FRIENDLY --------------------------------------------- */
@media print {
  header, .mobile-menu, .cookie-banner, .cookie-modal, footer {
    display: none!important;
  }
  body { background: #fff; color: #222; }
  .container { padding: 0!important; }
  .section, .hero-section, .features-section, .about-section,
  .services-section, .services-detail-section, .cta-section,
  .pricing-section, .themes-overview-section, .thankyou-section, .moreinfo-section {
    box-shadow: none!important;
    background: #fff!important;
    border-radius: 0!important;
  }
}

/* ACCESSIBILITY ---------------------------------------------- */
a, button, .primary-cta, input, select, textarea {
  outline-offset: 2px;
}

/* END OF STYLE.CSS */
