/* CSS Reset & Normalize */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  background: #F8FAFC;
}

body {
  font-family: 'Roboto', Arial, Helvetica, sans-serif;
  background: #F4F6F8;
  color: #203040;
  min-height: 100vh;
  line-height: 1.75;
}

img {
  max-width: 100%;
  display: block;
}

button, input, textarea, select {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  outline: none;
}

a {
  color: #1A4F82;
  text-decoration: none;
  transition: color 0.2s;
}

a:hover, a:focus {
  color: #F6B80D;
  text-decoration: underline;
}

ul, ol {
  margin: 1em 0 1em 1.5em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #1A4F82;
  font-weight: 700;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; margin-bottom: 24px; }
h2 { font-size: 2rem; margin-bottom: 16px; }
h3 { font-size: 1.3rem; margin-bottom: 10px; }
h4 { font-size: 1.1rem; }

p {
  color: #2B3B4B;
  font-size: 1rem;
  margin-bottom: 16px;
}

strong {
  color: #1A4F82;
  font-weight: 700;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 2px 12px rgba(20,38,62,0.04);
}

/* Header Styles */
header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(26,79,130,0.06);
  position: relative;
  z-index: 20;
}
header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
}
.logo {
  display: flex;
  align-items: center;
  height: 54px;
}
.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}
.main-nav a {
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  color: #F6B80D;
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.01em;
  padding: 6px 0;
  border-radius: 4px;
  transition: color 0.15s, background 0.2s;
}
.main-nav a:hover,
.main-nav a:focus {
  background: #E2E7EB;
  color: #F6B80D;
}

.btn-primary {
  appearance: none;
  background: #1A4F82;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 26px;
  font-size: 1rem;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 2px 6px 0 rgba(26,79,130,0.08);
  transition: background 0.18s, transform 0.18s, box-shadow 0.18s;
  margin-left: 12px;
  text-align: center;
  letter-spacing: 0.02em;
  display: inline-block;
}
.btn-primary:hover, .btn-primary:focus {
  background: #15507c;
  color: #F6B80D;
  transform: translateY(-2px) scale(1.025);
  box-shadow: 0 4px 14px 0 rgba(26,79,130,0.14);
}

.mobile-menu-toggle {
  display: none;
  background: #1A4F82;
  color: #fff;
  border: none;
  font-size: 2rem;
  padding: 6px 16px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 18px;
  transition: background 0.15s, color 0.15s;
  z-index: 100;
}
.mobile-menu-toggle:focus, .mobile-menu-toggle:hover {
  background: #203B56;
  color: #F6B80D;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 86vw;
  max-width: 350px;
  height: 100vh;
  background: #fff;
  box-shadow: -2px 0 18px 0 rgba(26,79,130,.13);
  transform: translateX(100%);
  transition: transform 0.34s cubic-bezier(.83,.04,.65,.98);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: 32px 24px 24px 24px;
}
.mobile-menu.open {
  transform: translateX(0);
}
.mobile-menu-close {
  background: none;
  border: none;
  color: #1A4F82;
  font-size: 2rem;
  align-self: flex-end;
  cursor: pointer;
  padding: 2px 7px;
  border-radius: 5px;
  margin-bottom: 12px;
  transition: background 0.15s, color 0.13s;
}
.mobile-menu-close:hover, .mobile-menu-close:focus {
  background: #E2E7EB;
  color: #F6B80D;
}
.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
}
.mobile-nav a {
  color: #1A4F82;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
  padding: 12px 8px;
  border-radius: 5px;
  transition: background 0.16s, color 0.16s;
}
.mobile-nav a:hover, .mobile-nav a:focus {
  background: #E2E7EB;
  color: #F6B80D;
}

/* Hide Main Nav on Mobile */
@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  .mobile-menu-toggle {
    display: block;
  }
}
@media (min-width: 993px) {
  .mobile-menu {
    display: none !important;
  }
}

/* MAIN HERO & GENERAL LAYOUT */
.hero-section {
  background: linear-gradient(84deg, #E2E7EB 74%, #fff 100%);
  padding: 48px 0 48px 0;
  border-bottom: 2px solid #D0D7DF;
}
.hero-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero-section .content-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  max-width: 700px;
  gap: 24px;
}
.hero-section h1 {
  color: #1A4F82;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
}
.hero-section p {
  color: #223b51;
  font-size: 1.17rem;
  margin-bottom: 8px;
}

/* Features Sections */
.features-section {
  background: #fff;
  margin-bottom: 60px;
}
.features-section h2 {
  text-align: center;
  margin-bottom: 32px;
  color: #153861;
}
.feature-grid, .content-wrapper.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: space-between;
}
.feature {
  background: #F3F6FA;
  border-radius: 14px;
  box-shadow: 0 1px 4px 0 rgba(26,79,130,.07);
  flex: 1 1 220px;
  min-width: 200px;
  max-width: 305px;
  padding: 32px 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.16s;
  margin-bottom: 20px;
}
.feature img {
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
}
.feature h3 {
  font-size: 1.2rem;
  color: #1A4F82;
  margin-bottom: 12px;
}
.feature p {
  color: #2B3B4B;
  font-size: 1rem;
}
.feature:hover, .feature:focus-within {
  box-shadow: 0 5px 18px 0 rgba(26,79,130,.16);
  transform: translateY(-4px) scale(1.02);
}

/* Services Sections */
.services-section {
  background: #E2E7EB;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 40px 0;
}
.services-section h2, .services-section h1 {
  color: #1A4F82;
  margin-bottom: 28px;
  text-align: center;
}
.service-list, .service-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}
.service, .service-category {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 1px 4px 0 rgba(26,79,130,.07);
  padding: 30px 22px;
  min-width: 220px;
  flex: 1 1 220px;
  max-width: 315px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: box-shadow 0.22s, transform 0.15s;
}
.service:hover, .service-category:hover {
  box-shadow: 0 8px 24px rgba(26,79,130,0.13);
  transform: translateY(-3px) scale(1.01);
}
.service h3, .service-category h2 {
  font-size: 1.1rem;
  color: #1A4F82;
  margin-bottom: 8px;
}
.service p, .service-category p {
  font-size: 1rem;
  color: #2B3B4B;
}

/* Testimonials */
.testimonials-section {
  margin-bottom: 60px;
}
.testimonials-section h2 {
  color: #153861;
  text-align: center;
  margin-bottom: 28px;
}
.testimonials-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}
.testimonial-card {
  background: #fff;
  flex: 1 1 280px;
  min-width: 260px;
  max-width: 370px;
  padding: 26px 24px;
  border-radius: 14px;
  box-shadow: 0 0 0.5px #D5DFEB, 0 6px 16px 0 rgba(20,70,112,0.10);
  display: flex;
  align-items: center;
  gap: 20px;
  flex-direction: column;
  margin-bottom: 20px;
  position: relative;
  transition: box-shadow 0.14s, transform 0.15s;
}
.testimonial-card p {
  color: #203040;
  font-size: 1rem;
  margin-bottom: 12px;
  font-style: italic;
  text-align: left;
}
.testimonial-card span {
  color: #1A4F82;
  font-weight: 600;
  font-size: 0.98rem;
  align-self: flex-end;
}
.testimonial-card:hover, .testimonial-card:focus-within {
  box-shadow: 0 10px 32px rgba(26,79,130,0.14);
  transform: scale(1.024);
}

/* CTA Section */
.cta-section {
  background: #1A4F82;
  padding: 36px 0;
  border-radius: 18px;
  margin-bottom: 60px;
  color: #fff;
}
.cta-section .btn-primary {
  background: #F6B80D;
  color: #1A4F82;
  box-shadow: 0 2px 8px rgba(26,79,130,0.16);
}
.cta-section .btn-primary:hover, .cta-section .btn-primary:focus {
  background: #fff7e0;
  color: #1A4F82;
}
.cta-section .phone-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  font-size: 1.1rem;
  background: #fff;
  color: #1A4F82;
  border-radius: 7px;
  padding: 8px 14px;
  box-shadow: 0 1px 4px 0 rgba(26,79,130,.07);
}
.cta-section .phone-highlight img {
  width: 22px;
  height: 22px;
}
.cta-section .phone-highlight a {
  color: #1A4F82;
  font-weight: 700;
  margin-left: 3px;
}

/* Pricing Page */
.pricing-section {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 42px 20px;
}
.pricing-section h1 {
  text-align: center;
  margin-bottom: 28px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 24px;
  font-size: 1rem;
}
.pricing-table th {
  background: #1A4F82;
  color: #fff;
  padding: 14px 10px;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-align: left;
}
.pricing-table td {
  background: #E2E7EB;
  color: #203040;
  padding: 12px 10px;
  border-bottom: 1px solid #D0D7DF;
}
.pricing-info {
  background: #F3F6FA;
  color: #15507c;
  border-radius: 7px;
  padding: 14px 16px;
  margin-top: 12px;
  font-size: 1rem;
  line-height: 1.5;
}
.pricing-cta-section {
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pricing-cta-section .btn-primary {
  margin-top: 14px;
}
.included-section {
  background: #E2E7EB;
  border-radius: 13px;
  padding: 30px 20px;
  margin-bottom: 60px;
}
.included-section h2 {
  color: #1A4F82;
  margin-bottom: 16px;
}
.included-section ul {
  padding-left: 22px;
  color: #223b51;
}

/* About Page */
.about-section .content-wrapper {
  gap: 32px;
}
.text-section {
  background: #fff;
  border-radius: 12px;
  padding: 30px 22px;
}

/* Values Section on About */
.values-section {
  background: #E2E7EB;
  padding: 42px 0;
  border-radius: 16px;
  margin-bottom: 60px;
}
.value-list {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
  margin-top: 18px;
}
.value {
  background: #fff;
  padding: 28px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 200px;
  max-width: 310px;
  transition: box-shadow 0.18s, transform 0.14s;
  box-shadow: 0 1px 4px 0 rgba(26,79,130,.07);
  margin-bottom: 20px;
}
.value img {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
}
.value h3 {
  font-size: 1.1rem;
  color: #1A4F82;
  margin-bottom: 9px;
}
.value p {
  color: #2B3B4B;
}
.value:hover, .value:focus-within {
  box-shadow: 0 8px 24px rgba(26,79,130,0.13);
  transform: translateY(-2px) scale(1.01);
}

/* List Section */
.usp-list ul, .why-us-section ul {
  padding-left: 22px;
  color: #223b51;
}
.why-us-section {
  margin-bottom: 60px;
}
.why-us-section h2 {
  color: #1A4F82;
  margin-bottom: 18px;
}

/* FAQ Page */
.faq-section {
  margin-bottom: 60px;
}
.faq-section h1 {
  color: #1A4F82;
  margin-bottom: 24px;
  text-align: center;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: #fff;
  border-radius: 12px;
  padding: 22px 18px;
  box-shadow: 0 0.5px 3px #DAE3EC;
  margin-bottom: 20px;
}
.faq-item h2 {
  font-size: 1.1rem;
  color: #1A4F82;
  margin-bottom: 8px;
}
.faq-item p {
  font-size: 1rem;
  color: #203040;
}
.faq-contact-section {
  margin-bottom: 60px;
}
.faq-contact-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}
.contact-info {
  flex: 1 1 220px;
}

/* Kontakt Page */
.contact-section {
  background: #fff;
  border-radius: 18px;
  margin-bottom: 60px;
  padding: 42px 20px;
}
.contact-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}
.contact-details {
  flex: 1 1 240px;
  font-size: 1.06rem;
  color: #304058;
}
.map-placeholder {
  flex: 1 1 220px;
  background: #E2E7EB;
  border-radius: 10px;
  padding: 18px 16px;
  min-height: 120px;
  color: #486080;
  display: flex;
  align-items: center;
  gap: 14px;
}
.map-placeholder img {
  width: 34px;
  height: 34px;
  filter: grayscale(0.7);
}
.contact-cta-section {
  margin-bottom: 60px;
}
.contact-cta-section .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
}
.phone-highlight, .email-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #F3F6FA;
  color: #1A4F82;
  border-radius: 7px;
  padding: 8px 14px;
  font-size: 1rem;
  box-shadow: 0 2px 10px 0 rgba(26,79,130,0.04);
}
.phone-highlight img, .email-highlight img {
  width: 21px;
  height: 21px;
  filter: grayscale(0.6);
}
.phone-highlight a, .email-highlight a {
  color: #1A4F82;
  font-weight: 700;
}

/* Thank You Page */
.confirmation-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
  text-align: center;
}
.thank-you-message {
  background: #E2E7EB;
  color: #1A4F82;
  border-radius: 12px;
  padding: 18px 15px;
  margin-bottom: 8px;
  font-size: 1.06rem;
}
.next-steps {
  background: #fff;
  color: #304058;
  border-radius: 10px;
  padding: 14px 18px;
}
.next-steps .phone-highlight {
  margin-top: 8px;
  justify-content: center;
}

/* Legal Sections (Datenschutz, GDPR, Cookie, Nutzungsbed) */
.legal-section {
  margin-bottom: 60px;
}
.legal-section .content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #fff;
  padding: 34px 24px;
  border-radius: 16px;
  box-shadow: 0 1px 8px rgba(26,79,130,0.06);
}
.legal-section .text-section {
  background: #F3F6FA;
  border-radius: 8px;
  padding: 20px 16px;
  margin-top: 8px;
}
.legal-section ul {
  color: #223b51;
  margin: 14px 0 12px 18px;
}

/* Footer Styles */
footer {
  background: #1A4F82;
  color: #fff;
  padding: 26px 0 18px 0;
  margin-top: 24px;
}
footer .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 8px;
  justify-content: center;
}
.footer-nav a {
  color: #fff;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 600;
  font-size: 1rem;
  padding: 6px 0;
  border-radius: 4px;
  transition: color 0.15s, background 0.19s;
}
.footer-nav a:hover, .footer-nav a:focus {
  background: #F6B80D;
  color: #1A4F82;
}
.footer-contact {
  font-size: 0.98rem;
  color: #EDF2F7;
  text-align: center;
  margin-bottom: 3px;
}
.footer-contact a {
  color: #F6B80D;
  font-weight: 600;
}
.footer-copy {
  text-align: center;
  font-size: 0.98rem;
  color: #BED2E6;
}

/* Cookie Consent Banner */
.cookie-consent-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #1A4F82;
  color: #fff;
  box-shadow: 0 -2px 16px 0 rgba(26,79,130,0.10);
  z-index: 2000;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 20px 16px;
  transition: transform 0.33s cubic-bezier(.79,.08,.57,.99), opacity 0.24s;
  font-size: 1rem;
}
.cookie-consent-banner.hide {
  transform: translateY(140%);
  opacity: 0;
}
.cookie-consent-banner .cookie-actions {
  display: flex;
  gap: 12px;
}
.cookie-btn {
  appearance: none;
  border: none;
  background: #F6B80D;
  color: #1A4F82;
  font-family: 'Montserrat', Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 0.98rem;
  padding: 8px 18px;
  border-radius: 6px;
  cursor: pointer;
  margin-left: 8px;
  transition: background 0.16s, color 0.17s, transform 0.13s;
  box-shadow: 0 1px 5px 0 rgba(26,79,130,.06);
}
.cookie-btn:hover, .cookie-btn:focus {
  background: #fff7e0;
  color: #1A4F82;
  transform: translateY(-1px) scale(1.04);
}
.cookie-btn.cookie-settings {
  background: #fff;
  color: #1A4F82;
  border: 1.5px solid #E2E7EB;
}
.cookie-btn.cookie-settings:hover, .cookie-btn.cookie-settings:focus {
  background: #E2E7EB;
  color: #1A4F82;
}

/* Cookie Preferences Modal */
.cookie-modal-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(20,38,62,0.43);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.25s;
  pointer-events: all;
}
.cookie-modal-overlay.hide {
  opacity: 0;
  pointer-events: none;
}
.cookie-modal {
  background: #fff;
  color: #1A4F82;
  border-radius: 17px;
  box-shadow: 0 8px 40px 0 rgba(26,79,130,0.13);
  max-width: 432px;
  width: 92vw;
  padding: 34px 24px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  position: relative;
  animation: appearCookieModal 0.38s cubic-bezier(.71,.19,.55,1.03);
}
@keyframes appearCookieModal {
  0% { transform: scale(0.84) translateY(30px); opacity: 0; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.cookie-modal h2 {
  font-size: 1.25rem;
  color: #1A4F82;
}
.cookie-modal-category {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 12px 0;
}
.cookie-modal-category label {
  font-weight: 500;
  font-size: 1.04rem;
  color: #1A4F82;
}
.cookie-modal-toggle {
  appearance: none;
  position: relative;
  width: 42px;
  height: 24px;
  border-radius: 13px;
  background: #E2E7EB;
  outline: none;
  border: none;
  vertical-align: middle;
  transition: background 0.13s;
  cursor: pointer;
}
.cookie-modal-toggle:checked {
  background: #1A4F82;
}
.cookie-modal-toggle:before {
  content: '';
  display: block;
  position: absolute;
  left: 3px;
  top: 3px;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.16s;
}
.cookie-modal-toggle:checked:before {
  transform: translateX(18px);
}
.cookie-modal-actions {
  display: flex;
  gap: 14px;
  margin-top: 12px;
  align-items: center;
  justify-content: flex-end;
}
.cookie-modal .cookie-btn {
  margin-left: 0;
}
.cookie-modal .cookie-close {
  position: absolute;
  top: 12px; right: 16px;
  background: none;
  border: none;
  font-size: 1.3rem;
  color: #C0CDE0;
  cursor: pointer;
  border-radius: 4px;
  transition: color 0.14s;
}
.cookie-modal .cookie-close:hover, .cookie-modal .cookie-close:focus {
  color: #1A4F82;
}

/* Helpers */
ul, ol, .faq-list, .value-list, .feature-grid, .service-list, .testimonial-card, .content-grid, .card-container {
  margin-bottom: 0;
}

.card-container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.card {
  margin-bottom: 20px;
  position: relative;
  background: #fff;
  border-radius: 11px;
  box-shadow: 0 1px 6px #D5DFEB;
}
.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 DESIGN */
@media (max-width: 1200px) {
  .container {
    max-width: 960px;
  }
}
@media (max-width: 992px) {
  .container {
    max-width: 780px;
  }
}
@media (max-width: 850px) {
  .container {
    max-width: 99vw;
  }
  .feature-grid, .value-list, .service-list, .service-categories {
    gap: 18px;
  }
}
@media (max-width: 768px) {
  html {
    font-size: 15px;
  }
  .section {
    padding: 30px 8px;
  }
  .content-wrapper, .faq-section .content-wrapper, .about-section .content-wrapper, .confirmation-section .content-wrapper {
    gap: 18px;
  }
  .hero-section .content-wrapper {
    padding-left: 4px; padding-right: 4px;
  }
  .value-list, .feature-grid, .service-list, .service-categories {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
  }
  .features-section, .services-section, .included-section, .values-section, .cta-section, .contact-section {
    padding: 20px 0;
    border-radius: 12px;
  }
  .feature, .service, .service-category, .value {
    min-width: unset;
    max-width: 100%;
    width: 100%;
    padding: 20px 11px;
  }
  .contact-section .content-wrapper,
  .contact-cta-section .content-wrapper,
  .faq-contact-section .content-wrapper {
    flex-direction: column;
    align-items: stretch;
    gap: 18px;
  }
  .testimonials-section .content-wrapper {
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }
  .footer-nav {
    gap: 8px;
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 560px) {
  html {
    font-size: 14px;
  }
  .container {
    padding: 0 4px;
  }
  .hero-section h1 {
    font-size: 1.35rem;
    text-align: left;
    margin-bottom: 12px;
  }
  .hero-section .content-wrapper,
  .confirmation-section .content-wrapper {
    align-items: stretch;
  }
  .section, .legal-section .content-wrapper {
    padding: 18px 4px;
    border-radius:10px;
  }
  .thank-you-message, .next-steps, .pricing-info {
    padding: 10px 6px;
    font-size: 1rem;
  }
  .cta-section {
    border-radius: 10px;
    padding: 24px 0;
  }
}

/* TRANSITIONS & MICRO-INTERACTIONS */
input:not([type="checkbox"]), textarea, select {
  transition: border 0.16s, box-shadow 0.15s;
}
input:focus, textarea:focus, select:focus {
  border-color: #1A4F82;
  box-shadow: 0 2px 10px #BED2E6;
}

/* Remove number arrows for input[type=number] on Chrome/Firefox */
input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* Toggle visually hidden (for cookie banner/modal) */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); border: 0; padding: 0;
}

/* END OF STYLESHEET */
