/* Reset and Normalize */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
}
body {
  font-family: 'Roboto', Arial, sans-serif;
  color: #2d2d2d;
  background: #FAFCF9;
  line-height: 1.7;
  min-height: 100vh;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
a {
  color: #235375;
  text-decoration: none;
  transition: color 0.2s;
  font-weight: 500;
}
a:hover, a:focus {
  color: #F7C948;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235375;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.2;
}
h1 {
  font-size: 2rem;
  margin-bottom: 24px;
}
h2 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}
h3 {
  font-size: 1.125rem;
  margin-bottom: 12px;
}

p, ul, ol, dl {
  font-size: 1rem;
  margin-bottom: 16px;
  color: #383A3C;
}
ul, ol {
  padding-left: 24px;
}
ul li, ol li {
  margin-bottom: 8px;
}
li strong {
  color: #235375;
  font-weight: 700;
}

strong {
  color: #235375;
  font-weight: 700;
}

.text-section {
  margin-bottom: 32px;
}

.text-section ul {
  margin-bottom: 16px;
  color: #464646;
}

.text-section h2 {
  font-size: 1.15rem;
  color: #235375;
  margin-top: 16px;
  margin-bottom: 8px;
}

.text-section p, .text-section ul, .text-section li {
  color: #2d2d2d;
}

/* Containers & Layouts */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 16px;
  width: 100%;
}
.content-wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(35, 83, 117, 0.06);
}

/* Brand Buttons */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: 32px;
  background: #F7C948;
  color: #2d2d2d;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 8px;
  box-shadow: 0 2px 6px 0 rgba(35, 83, 117, 0.08);
  transition: background 0.2s, color 0.2s, transform 0.18s;
  outline: none;
}
.cta-btn:hover, .cta-btn:focus {
  background: #fde68a;
  color: #235375;
  transform: translateY(-2px) scale(1.03);
}

/* Main Navigation */
header {
  background: #fff;
  box-shadow: 0 2px 16px rgba(35, 83, 117, 0.05);
  position: sticky;
  top: 0;
  z-index: 60;
}
.main-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: flex-start;
  padding: 18px 0;
  width: 100%;
}
.main-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  color: #235375;
  padding: 8px 12px;
  border-radius: 18px;
  transition: background 0.15s, color 0.2s;
}
.main-nav a.cta-btn {
  margin-left: auto;
  background: #F7C948;
  color: #235375;
  font-weight: 700;
  padding: 10px 22px;
}
.main-nav a.cta-btn:hover {
  background: #fde68a;
  color: #235375;
}
.main-nav img {
  height: 44px;
  margin-right: 8px;
}
.main-nav a:hover, .main-nav a:focus {
  background: #E0F0E7;
  color: #235375;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #F7C948;
  border: none;
  color: #235375;
  font-size: 2.2rem;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(35, 83, 117, 0.15);
  position: absolute;
  top: 18px;
  right: 24px;
  z-index: 101;
  transition: background .18s;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #fde68a;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(224, 240, 231, 0.98);
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(.77,0,.18,1);
  z-index: 999;
  box-shadow: 0 4px 32px rgba(35, 83, 117, 0.20);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 26px 26px 70px 26px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: transparent;
  border: none;
  color: #235375;
  font-size: 2.1rem;
  align-self: flex-end;
  margin-bottom: 20px;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 50%;
  transition: background 0.16s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #F7C948;
  color: #235375;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.mobile-nav a {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.15rem;
  padding: 14px 0 12px 10px;
  border-radius: 16px;
  color: #235375;
  transition: background 0.12s, color 0.15s;
}
.mobile-nav a.cta-btn {
  margin-top: 14px;
  padding: 12px 0 12px 0;
  background: #F7C948;
  color: #235375;
  text-align: center;
  font-size: 1.1rem;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #fde68a;
  color: #235375;
}

/* HERO Section */
.hero-section {
  background: #E0F0E7;
  padding-top: 40px;
  padding-bottom: 48px;
  border-radius: 0 0 36px 36px;
  box-shadow: 0 8px 36px rgba(35, 83, 117, 0.06);
  margin-bottom: 60px;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  align-items: flex-start;
  gap: 10px;
}
.hero-section h1 {
  font-size: 2.4rem;
  color: #235375;
  margin-bottom: 16px;
}
.hero-section p {
  font-size: 1.2rem;
  color: #235375;
  margin-bottom: 20px;
}

/* Features Grid & Cards */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: flex-start;
}
.features-grid > div {
  background: #fff;
  padding: 28px 22px 24px 22px;
  border-radius: 16px;
  box-shadow: 0 1px 10px rgba(35,83,117,.05);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 255px;
  min-width: 200px;
  flex: 1 1 190px;
  gap: 10px;
  margin-bottom: 20px;
  transition: box-shadow 0.16s, transform 0.14s;
}
.features-grid > div:hover {
  box-shadow: 0 4px 20px rgba(35, 83, 117, 0.14);
  transform: translateY(-2px) scale(1.02);
}
.features-grid img {
  height: 40px;
  margin-bottom: 10px;
}

/* Service Cards/Overview */
.service-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 28px;
  justify-content: flex-start;
}
.service-cards li {
  list-style: none;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(35, 83, 117, 0.06);
  padding: 30px 22px 20px 22px;
  max-width: 232px;
  min-width: 170px;
  flex: 1 1 160px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  transition: box-shadow 0.15s, transform 0.14s;
}
.service-cards li:hover {
  box-shadow: 0 6px 22px rgba(247, 201, 72, 0.18);
  transform: translateY(-3px) scale(1.03);
}
.service-cards img {
  height: 36px;
  margin-bottom: 8px;
}

/* Testimonials */
.testimonials-section {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(35, 83, 117, 0.07);
  padding: 40px 20px;
  margin-bottom: 60px;
}
.testimonials-slider, .testimonials-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: flex-start;
}
.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 20px 18px 20px;
  background: #E0F0E7;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(35, 83, 117, 0.08);
  min-width: 230px;
  max-width: 330px;
  flex: 1 1 240px;
  margin-bottom: 20px;
  transition: box-shadow 0.13s, transform 0.17s;
}
.testimonial-card:hover {
  box-shadow: 0 4px 26px #F7C94832;
  transform: scale(1.02);
}
.testimonial-card p {
  color: #235375;
  font-size: 1.07rem;
  font-style: italic;
}
.testimonial-card strong {
  color: #235375;
  font-size: 0.98rem;
}
.testimonial-stars {
  display: flex;
  gap: 4px;
}
.testimonial-stars img {
  height: 19px;
}

/* Pricing Table */
.pricing-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  margin: 24px 0 40px 0;
  font-size: 1rem;
  box-shadow: 0 2px 10px rgba(35, 83, 117, 0.05);
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
}
.pricing-table th, .pricing-table td {
  padding: 16px 14px;
  text-align: left;
}
.pricing-table thead th {
  background: #F7C948;
  color: #235375;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1.06rem;
}
.pricing-table tr:nth-child(even) td {
  background: #E0F0E7;
}
.pricing-table tbody td {
  color: #235375;
  border-bottom: 1px solid #E0F0E7;
}

/* FAQ Styles */
.faq-list {
  margin-bottom: 32px;
}
.faq-list dt {
  font-weight: 700;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #235375;
  margin-top: 18px;
}
.faq-list dd {
  margin-bottom: 16px;
  margin-left: 0;
  color: #383A3C;
}
.faq-list a {
  color: #F7C948;
  text-decoration: underline;
}
.faq-list a:hover {
  color: #235375;
}

/* Card Containers & Spacing Patterns */
.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 1px 7px rgba(35, 83, 117, 0.10);
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.16s, transform 0.14s;
  padding: 20px;
}
.card:hover {
  box-shadow: 0 8px 24px rgba(247, 201, 72, 0.10);
  transform: scale(1.01);
}
.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;
}

/* Contact Section */
.contact-section {
  margin-bottom: 60px;
}
.contact-info-block {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
  margin-bottom: 12px;
}
.contact-summary ul {
  list-style: none;
  padding: 0;
}
.contact-summary li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: #383A3C;
}
.contact-summary img {
  height: 21px;
}

/* Footer */
footer {
  background: #E0F0E7;
  padding: 30px 0 18px 0;
  margin-top: 60px;
  box-shadow: 0 -2px 24px rgba(35,83,117,.07);
}
.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 8px;
}
.footer-menu a {
  color: #235375;
  font-size: 1rem;
  padding: 8px 10px;
  border-radius: 10px;
  transition: background 0.14s;
}
.footer-menu a:hover, .footer-menu a:focus {
  background: #F7C948;
  color: #235375;
}
.footer-contact {
  text-align: center;
  color: #235375;
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.footer-contact small {
  display: block;
  margin-top: 6px;
  color: #8094a3;
  font-size: 0.9rem;
}

/* Thank You Page Enhancements */
.thank-you-section {
  padding: 40px 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 16px rgba(35, 83, 117, 0.06);
  margin-bottom: 60px;
  text-align: center;
}
.thank-you-section h1 {
  font-size: 2.3rem;
  color: #235375;
}

/* Business Clients Logos */
.client-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: flex-start;
  margin-top: 16px;
}
.client-logos li {
  list-style: none;
}
.client-logos img {
  height: 56px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(35,83,117,0.07);
  padding: 7px;
  transition: box-shadow .17s;
}
.client-logos img:hover {
  box-shadow: 0 8px 22px #f7c94833;
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 0; right: 0;
  bottom: 0;
  background: #fff3d4;
  border-top: 2px solid #F7C948;
  color: #235375;
  z-index: 9999;
  box-shadow: 0 -2px 22px rgba(35, 83, 117, 0.10);
  padding: 18px 16px 18px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: 1rem;
  border-radius: 20px 20px 0 0;
  transition: transform 0.23s;
  animation: cookieSlideIn .63s cubic-bezier(.7,.19,.27,1);
}
@keyframes cookieSlideIn {
  from { transform: translateY(120%); }
  to   { transform: translateY(0); }
}
.cookie-banner button {
  margin-left: 8px;
}
.cookie-btn {
  background: #F7C948;
  color: #235375;
  border: none;
  border-radius: 18px;
  padding: 10px 18px;
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 1rem;
  cursor: pointer;
  margin-right: 6px;
  margin-bottom: 4px;
  transition: background 0.18s;
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fde68a;
}
.cookie-settings-btn {
  background: transparent;
  border: 2px solid #F7C948;
  color: #235375;
  padding: 10px 18px;
}
.cookie-settings-btn:hover, .cookie-settings-btn:focus {
  background: #F7C948;
}

/* Cookie Consent Modal */
.cookie-modal-overlay {
  position: fixed;
  z-index: 10001;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(35, 83, 117, 0.22);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: cookieFadeIn .4s;
}
@keyframes cookieFadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.cookie-modal {
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 36px rgba(35, 83, 117, 0.15);
  max-width: 410px;
  width: 90%;
  padding: 30px 24px 24px 24px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  animation: modalPop .34s;
  position: relative;
}
@keyframes modalPop {
  from { transform: scale(0.88); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.cookie-modal h3 {
  color: #235375;
  font-size: 1.22rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.cookie-modal .categories {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 10px 0;
}
.cookie-modal .category {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #E0F0E7;
  padding: 9px 12px;
  border-radius: 9px;
  min-width: 220px;
}
.cookie-modal .category input[type=checkbox] {
  accent-color: #F7C948;
  width: 19px; height: 19px;
}
.cookie-modal .always-on {
  font-size: 0.95rem;
  color: #235375;
  background: #fde68a;
  border-radius: 6px;
  padding: 3px 9px;
  margin-left: 8px;
}
.cookie-modal .cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 17px;
  width: 100%;
  justify-content: flex-end;
}
.cookie-modal .cookie-modal-close {
  position: absolute;
  right: 15px; top: 15px;
  background: none;
  border: none;
  font-size: 1.35rem;
  color: #235375;
  cursor: pointer;
  border-radius: 50%;
  transition: background .2s;
  padding: 2px 7px;
}
.cookie-modal .cookie-modal-close:hover,
.cookie-modal .cookie-modal-close:focus {
  background: #fde68a;
}

/* Responsive Design */
@media (max-width: 1100px) {
  .container {
    max-width: 99vw;
    padding: 0 10px;
  }
  .features-grid > div, .service-cards li {
    max-width: 320px;
    min-width: 40vw;
  }
}
@media (max-width: 900px) {
  .main-nav {
    gap: 10px 10px;
    font-size: 0.97rem;
  }
  .features-grid,
  .service-cards,
  .testimonials-slider,
  .content-grid {
    gap: 14px;
  }
}
@media (max-width: 768px) {
  html { font-size: 15px; }
  .main-nav { display: none; }
  .mobile-menu-toggle {
    display: flex;
  }
  .hero-section,
  .section,
  .thank-you-section,
  .testimonials-section {
    padding: 30px 5px;
  }
  .features-grid,
  .service-cards,
  .content-grid,
  .testimonials-slider,
  .testimonials-list,
  .client-logos,
  .card-container {
    flex-direction: column;
    gap: 16px;
    align-items: stretch;
  }
  .features-grid > div,
  .service-cards li,
  .card,
  .testimonial-card {
    max-width: 100%;
    min-width: 0;
  }
  .contact-info-block {
    flex-direction: column;
    gap: 16px;
  }
  .footer-menu {
    flex-direction: column;
    gap: 8px;
  }
  .hero-section h1 {
    font-size: 1.7rem;
  }
  .testimonials-section h2, .contact-section h2 { font-size: 1.15rem; }
  .text-image-section { flex-direction: column; gap: 14px; }
}
@media (max-width: 600px) {
  html { font-size: 14px; }
  .container { padding: 0 4px; }
  .section, .hero-section, .thank-you-section, .testimonials-section {
    padding: 18px 2px 23px 2px;
  }
  .pricing-table th, .pricing-table td {
    padding: 9px 6px;
    font-size: .96rem;
  }
  .contact-summary ul {
    font-size: 0.98rem;
  }
  .footer-contact { font-size: 0.97rem; }
  .cookie-modal { padding: 17px 8px 10px 8px; }
}

/* Utility Classes */
.hide { display: none !important; }
.show { display: block !important; }

/* Accessibility */
:focus-visible {
  outline: 2px solid #F7C948;
  outline-offset: 2px;
}

/* Miscellaneous Enhancements */
::-webkit-input-placeholder { color: #6d7c85; }
::-moz-placeholder { color: #6d7c85; }
:-ms-input-placeholder { color: #6d7c85; }
::placeholder { color: #6d7c85; }

/* Form-Related Buttons - for generic use */
button, input[type="button"], input[type="submit"] {
  font-family: inherit;
  border: none;
}

/* Animation of Interactive Elements */
button, .cta-btn, .cookie-btn {
  transition: background 0.18s, color 0.16s, box-shadow 0.18s, transform 0.11s;
}

/* ========= CUSTOM SCROLLBAR (for friendly look) ========= */
::-webkit-scrollbar {
  width: 10px;
  background: #E0F0E7;
}
::-webkit-scrollbar-thumb {
  background: #F7C948;
  border-radius: 8px;
}

/* END OF COMPLETE CSS */
