/* Global Styles from index.css and App.css */
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
    'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

code {
  font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
    monospace;
}

/* AGB.module.css */
.AGB_page {
  background-color: #f8fafc;
  min-height: 100vh;
}
.AGB_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.AGB_title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}
.AGB_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.AGB_legalContainer {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.AGB_companyHeader {
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: #4a5568;
}
.AGB_agbSection {
  margin-bottom: 2.5rem;
}
.AGB_agbSection:last-child {
  margin-bottom: 0;
}
.AGB_agbSection h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
}
.AGB_agbSection p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.AGB_agbSection ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.AGB_agbSection li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.AGB_legalContainer a {
  color: #805ad5;
  text-decoration: none;
  transition: color 0.3s;
}
.AGB_legalContainer a:hover {
  color: #6b46c1;
  text-decoration: underline;
}
.AGB_subtitle {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}
.AGB_subtitledate {
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}
.AGB_mainList {
  counter-reset: main-counter;
  padding-left: 0;
  list-style-type: none;
}
.AGB_mainList > li {
  margin-bottom: 2rem;
  counter-increment: main-counter;
}
.AGB_mainList > li > h2:before {
  content: counter(main-counter) ". ";
  font-weight: bold;
}
.AGB_subListNumbered {
  counter-reset: sub-counter;
  list-style-type: none;
  padding-left: 1.5rem;
}
.AGB_subListNumbered > li {
  margin-bottom: 1.5rem;
  counter-increment: sub-counter;
}
.AGB_subListNumbered > li > h3:before {
  content: counter(main-counter) "." counter(sub-counter) ". ";
  font-weight: bold;
}
.AGB_subList {
  list-style-type: none;
  padding-left: 1.5rem;
  counter-reset: sub-list;
}
.AGB_subList > li {
  margin-bottom: 1rem;
  counter-increment: sub-list;
  position: relative;
}
.AGB_subList > li:before {
  content: "(" counter(sub-list) ") ";
  position: absolute;
  left: -1.5rem;
}
.AGB_subSubList {
  list-style-type: none;
  padding-left: 1.5rem;
  counter-reset: sub-sub-list;
}
.AGB_subSubList > li {
  margin-bottom: 1rem;
  counter-increment: sub-sub-list;
}
.AGB_subSubList > li > h4:before {
  content: counter(main-counter) "." counter(sub-counter) "." counter(sub-sub-list) ". ";
  font-weight: bold;
}
.AGB_companyInfo {
  margin-bottom: 0.3rem;
  padding-left: 1rem;
}
.AGB_note {
  font-style: italic;
  font-size: 0.9em;
}
.AGB_priceList {
  margin: 1rem 0 1rem 1rem;
}
.AGB_priceList p {
  margin-bottom: 0.5rem;
}

/* ContactPage.module.css */
.ContactPage_page {
  background-color: #f8fafc;
  min-height: 100vh;
}
.ContactPage_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.ContactPage_title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}
.ContactPage_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.ContactPage_formContainer {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
}
.ContactPage_formIntro {
  padding-right: 2rem;
  border-right: 1px solid #e2e8f0;
}
.ContactPage_formIntro h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2d3748;
}
.ContactPage_contactInfo {
  margin-top: 2rem;
}
.ContactPage_contactItem {
  margin-bottom: 1rem;
}
.ContactPage_contactItem a {
  color: #805ad5;
  text-decoration: none;
}
.ContactPage_contactItem a:hover {
  text-decoration: underline;
}
.ContactPage_contactForm {
  width: 100%;
}
.ContactPage_formGroup {
  margin-bottom: 1rem;
}
.ContactPage_formGroup label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #4a5568;
}
.ContactPage_formGroup input,
.ContactPage_formGroup textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  font-size: 1rem;
}
.ContactPage_formGroup input:focus,
.ContactPage_formGroup textarea:focus {
  outline: none;
  border-color: #805ad5;
  box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.2);
}
.ContactPage_checkboxGroup {
  display: flex;
  align-items: flex-start;
}
.ContactPage_checkboxGroup input {
  width: auto;
  margin-right: 0.75rem;
  margin-top: 0.25rem;
}
.ContactPage_checkboxGroup label {
  font-weight: 400;
  font-size: 0.9rem;
}
.ContactPage_formActions {
  margin-top: 2rem;
  text-align: right;
}
.ContactPage_submitButton {
  background: #805ad5;
  color: #fff;
  border: none;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.ContactPage_submitButton:hover {
  background: #6b46c1;
}
.ContactPage_submitButton:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
}
.ContactPage_errorMessage {
  background: #fed7d7;
  color: #c53030;
  padding: 0.75rem;
  border-radius: 0.375rem;
  margin-bottom: 1rem;
}
.ContactPage_successMessage {
  background: #fff;
  padding: 3rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.ContactPage_successMessage h1 {
  color: #48bb78;
  margin-bottom: 1.5rem;
}
.ContactPage_honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  height: 0;
}
.ContactPage_formRow {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 1rem;
}
.ContactPage_ticketingOptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 0.5rem;
}
.ContactPage_optionGroup {
  background: #f7fafc;
  padding: 1rem;
  border-radius: 0.375rem;
}
.ContactPage_optionGroup h4 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: #4a5568;
}
@media (max-width: 768px) {
  .ContactPage_formContainer {
    grid-template-columns: 1fr;
  }
  .ContactPage_formIntro {
    padding-right: 0;
    border-right: none;
    border-bottom: 1px solid #e2e8f0;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
  }
  .ContactPage_formRow {
    grid-template-columns: 1fr;
  }
  .ContactPage_ticketingOptions {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* Datenschutz.module.css */
.Datenschutz_page {
  background-color: #f8fafc;
  min-height: 100vh;
}
.Datenschutz_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.Datenschutz_title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}
.Datenschutz_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.Datenschutz_legalContainer {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 900px;
  margin: 0 auto;
}
.Datenschutz_dsSection {
  margin-bottom: 2.5rem;
}
.Datenschutz_dsSection:last-child {
  margin-bottom: 0;
}
.Datenschutz_dsSection h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #2d3748;
}
.Datenschutz_dsSection h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
}
.Datenschutz_dsSection p {
  margin-bottom: 1rem;
  line-height: 1.6;
}
.Datenschutz_dsSection ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}
.Datenschutz_dsSection li {
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.Datenschutz_legalContainer a {
  color: #805ad5;
  text-decoration: none;
  transition: color 0.3s;
}
.Datenschutz_legalContainer a:hover {
  color: #6b46c1;
  text-decoration: underline;
}

/* FeaturesPage.module.css */
.FeaturesPage_page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #f8fafc;
}
.FeaturesPage_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.FeaturesPage_title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
}
.FeaturesPage_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.FeaturesPage_subSectionTitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 2rem 0;
  text-align: center;
}
.FeaturesPage_grid3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.FeaturesPage_card {
  padding: 1.5rem;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  border-radius: .5rem;
}
.FeaturesPage_divider {
  margin: 3rem 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}
.FeaturesPage_cardHeader {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}
.FeaturesPage_featureIcon {
  width: 40px;
  height: 60px;
  margin-right: 0.75rem;
  object-fit: contain;
  flex-shrink: 0;
}
@media (max-width: 1080px) {
  .FeaturesPage_grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 540px) {
  .FeaturesPage_grid3 {
    grid-template-columns: 1fr;
  }
}

/* FeeCalculator.module.css */
.FeeCalculator_calculator {
  background: white;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 1.5rem 1.5rem;
  margin: 2rem 0;
  width: auto;
  max-width: none;
  border: 1px solid #e2e8f0;
}
.FeeCalculator_calculatorTitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  text-align: center;
}
.FeeCalculator_sliders {
  margin-bottom: 2rem;
}
.FeeCalculator_sliderGroup {
  margin-bottom: 1.25rem;
}
.FeeCalculator_sliderGroup label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
}
.FeeCalculator_slider {
  width: 100%;
  height: 8px;
  -webkit-appearance: none;
  appearance: none;
  background: #e2e8f0;
  outline: none;
  border-radius: 4px;
}
.FeeCalculator_slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 18px;
  height: 18px;
  background: #7b71d3;
  border-radius: 50%;
  cursor: pointer;
}
.FeeCalculator_slider::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background: #805ad5;
  border-radius: 50%;
  cursor: pointer;
}
.FeeCalculator_results {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(2, 1fr);
}
.FeeCalculator_resultGroup {
  background: #f8fafc;
  border-radius: 0.5rem;
  padding: 1rem;
}
.FeeCalculator_resultGroup h4 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: #4a5568;
}
.FeeCalculator_feeList {
  list-style-type: none;
  padding: 0;
}
.FeeCalculator_feeList li {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #e2e8f0;
  flex-wrap: wrap;
}
.FeeCalculator_feeList li:last-child {
  border-bottom: none;
}
.FeeCalculator_feeList li span {
  font-weight: 500;
}
.FeeCalculator_feeList li small {
  color: #718096;
  font-size: 0.8rem;
}
.FeeCalculator_recommendation {
  grid-column: 1 / -1;
  background: linear-gradient(to right, #d2bbff, #7b71d3);
  color: white;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
}
.FeeCalculator_recommendationText {
  margin-bottom: 0.75rem;
}
.FeeCalculator_recommendedPlan {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.FeeCalculator_btnPrimary {
  background: white;
  color: #805ad5;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.FeeCalculator_btnPrimary:hover {
  background: #f7fafc;
}
.FeeCalculator_feeAmount {
  min-width: 80px;
  text-align: right;
}
.FeeCalculator_feeInfo {
  width: 100%;
  font-size: 0.8rem;
  color: #718096;
  margin-top: 0.2rem;
  padding-left: 0;
}
.FeeCalculator_customerTypeCosts {
  margin-top: 1rem;
}
.FeeCalculator_customerTypeCosts p {
  margin-bottom: 0.5rem;
}
.FeeCalculator_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
@media (min-width: 1200px) {
  .FeeCalculator_results { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 640px) {
  .FeeCalculator_calculator { padding: 1.25rem 1rem; }
  .FeeCalculator_results { grid-template-columns: 1fr; }
}

/* Footer.module.css */
.Footer_footer {
  background: #2d3748;
  color: #cbd5e0;
  padding: 3rem 1.5rem;
}
.Footer_footerGrid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}
.Footer_copy {
  text-align: center;
  margin-top: 2rem;
  font-size: .875rem;
}
.Footer_footerIcon {
  height: 20px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.Footer_footer a {
  color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.Footer_footer a:hover,
.Footer_footer a:visited,
.Footer_footer a:active {
  color: #ffffff;
  opacity: 0.8;
}

/* Header.module.css */
.Header_header {
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}
.Header_container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.Header_logo { font-size: 1.25rem; font-weight: bold; }
.Header_nav { display: flex; gap: 1rem; align-items: center; }
.Header_navLink { text-decoration: none; color: inherit; transition: color .3s; }
.Header_navLink:hover { color: #6b46c1; }
.Header_logoImage { height: 40px; width: auto; }
.Header_btnRegister {
  background: #7B71D3FF;
  color: #fff !important;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  transition: background 0.3s;
}
.Header_btnRegister:hover {
  background: #6b46c1;
  color: #fff !important;
}
.Header_menuToggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 200;
}
.Header_burgerIcon {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #2d3748;
  position: relative;
  transition: background-color 0.3s;
}
.Header_burgerIcon:before,
.Header_burgerIcon:after {
  content: '';
  position: absolute;
  width: 24px;
  height: 2px;
  background-color: #2d3748;
  transition: transform 0.3s;
}
.Header_burgerIcon:before {
  top: -8px;
}
.Header_burgerIcon:after {
  top: 8px;
}
@media (max-width: 860px) {
  .Header_btnRegister {
    margin-top: 1rem;
    width: 50%;
    text-align: center;
  }
  .Header_menuToggle {
    display: block;
  }
  .Header_nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  }
  .Header_navOpen {
    display: flex;
  }
  .Header_navLink {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
  }
  .Header_navLink:last-child {
    border-bottom: none;
  }
  .Header_menuToggle[aria-expanded="true"] .Header_burgerIcon {
    background-color: transparent;
  }
  .Header_menuToggle[aria-expanded="true"] .Header_burgerIcon:before {
    transform: translateY(8px) rotate(45deg);
  }
  .Header_menuToggle[aria-expanded="true"] .Header_burgerIcon:after {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* HomePage.module.css */
.HomePage_page { display:flex; flex-direction:column; min-height:100vh; background-color: #f8fafc; }
.HomePage_hero { position:relative; background:linear-gradient(to right, #d2bbff, #7b71d3); color:#fff; }
.HomePage_heroOverlay { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:0.2; }
.HomePage_heroContent { position:relative; max-width:800px; margin:0 auto; padding:4rem 1.5rem; text-align:center; }
.HomePage_heroTitle { font-size:2.25rem; font-weight:800; margin-bottom:1rem; }
.HomePage_heroSubtitle { font-size:1.125rem; margin-bottom:2rem; }
.HomePage_btnPrimary { background: #7b71d3; color:#fff; font-weight:600; padding:.75rem 3rem; vertical-align:center; border-radius:9999px; text-decoration:none; transition:background .3s; }
.HomePage_btnPrimary:hover { background: #667eea; }
.HomePage_btnPrimary2 { background:#fff; color: #7b71d3; font-weight:600; padding:.75rem 2rem; border-radius:9999px; text-decoration:none; transition:background .3s; }
.HomePage_btnPrimary2:hover { background: #f8fafc; }
.HomePage_section { max-width:1200px; margin:0 auto; padding:2rem 1.5rem; }
.HomePage_sectionFluid { width:clamp(320px,80vw,1300px); margin:0 auto; padding:2rem 1.5rem; }
.HomePage_sectionDescription { text-align:center; max-width:860px; margin:0 auto 2rem; }
.HomePage_sectionTitle { font-size:1.875rem; font-weight:700; text-align:center; margin-bottom:2rem; }
.HomePage_grid3 {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(3, 1fr);
}
.HomePage_card { padding:1.5rem; background:#fff; box-shadow:0 2px 4px rgba(0,0,0,0.1); border-radius:.5rem; text-align:center; }
.HomePage_cardRaised { background:#fff; border:1px solid #e2e8f0; border-radius:0.75rem; box-shadow:0 4px 12px rgba(0,0,0,0.1); }
.HomePage_noteBox { margin-top:2rem; background:#fff; padding:1.5rem; border-radius:.5rem; box-shadow:0 2px 4px rgba(0,0,0,0.1); }
.HomePage_sectionCenter { max-width:800px; margin:0 auto; padding:4rem 1.5rem; text-align:center; }
.HomePage_featureGrid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}
.HomePage_featureCard {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  text-align: center;
}
.HomePage_featureTitle {
  font-weight: 600;
  margin: 0;
}
.HomePage_divider {
  margin: 1.25rem 0;
  border: 0;
  border-top: 1px solid #e2e8f0;
}
.HomePage_subSectionTitle {
  font-size: 1.5rem;
  font-weight: 600;
  margin: 1rem 0 2rem;
  text-align: center;
}
.HomePage_logoImage {
  height: 40px;
  width: auto;
}
.HomePage_brandLogo {
  max-width: 70%;
  margin-bottom: 1.5rem;
}
.HomePage_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.HomePage_footerIcon {
  height: 20px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.HomePage_textCenter {
  text-align: center;
  margin-top: 1.5rem;
}
.HomePage_textright {
  text-align: right;
  margin-top: 1.5rem;
}
.HomePage_textleft {
  text-align: left;
  margin-top: 1.5rem;
}
.HomePage_btnSmall {
  padding: 0.5rem 1.5rem;
  font-size: 0.9rem;
}
.HomePage_noList {
  list-style-type: none;
  padding-left: 0;
}
.HomePage_noList li {
  margin-bottom: 0.5rem;
}
.HomePage_ctaSection {
  background: linear-gradient(to right, #7b71d3, #d2bbff);
  color: #fff;
  width: 100%;
  padding: 4rem 0;
}
.HomePage_ctaContainer {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
.HomePage_ctaTitle {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #fff;
}
.HomePage_ctaText {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
}
.HomePage_btnCta {
  background: #fff;
  color: #7b71d3;
  font-weight: 600;
  padding: .75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: background .3s;
}
.HomePage_btnCta:hover {
  background: #f7fafc;
}
.HomePage_grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin: 1.5rem 0;
}
.HomePage_sectionFullBleed { width:100%; max-width:none; margin:0; padding:4rem 0; background:#f1f5f9; }
.HomePage_fullBleedInner { width:100%; max-width:none; margin:0; padding:0 1.5rem; }
@media (max-width: 768px) {
  .HomePage_grid3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .HomePage_grid2 {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 480px) {
  .HomePage_grid3 {
    grid-template-columns: 1fr;
  }
}

/* ImageCarousel.module.css */
.ImageCarousel_carousel {
  position: relative;
}
.ImageCarousel_viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  border-radius: 0.75rem;
}
.ImageCarousel_viewport::-webkit-scrollbar { height: 0; width: 0; }
.ImageCarousel_track {
  display: flex;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.ImageCarousel_slide {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
}
.ImageCarousel_image {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  background: #fff;
}
.ImageCarousel_navBtn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: rgba(255, 255, 255, 0.9);
  color: #4a5568;
  border: 1px solid #e2e8f0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.ImageCarousel_prev { left: 8px; }
.ImageCarousel_next { right: 8px; }
@media (min-width: 640px) { .ImageCarousel_slide { flex: 0 0 50%; } }
@media (min-width: 1024px) { .ImageCarousel_slide { flex: 0 0 33.3333%; } }
@media (max-width: 640px) { .ImageCarousel_navBtn { display: none; } }

/* Impressum.module.css */
.Impressum_page {
  background-color: #f8fafc;
  min-height: 100vh;
}
.Impressum_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.Impressum_title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}
.Impressum_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.Impressum_legalContainer {
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}
.Impressum_legalContainer h2 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: #2d3748;
}
.Impressum_legalContainer h2:first-child {
  margin-top: 0;
}
.Impressum_legalContainer p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.Impressum_legalContainer a {
  color: #805ad5;
  text-decoration: none;
  transition: color 0.3s;
}
.Impressum_legalContainer a:hover {
  color: #6b46c1;
  text-decoration: underline;
}

/* Layout.module.css */
.Layout_layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
.Layout_main {
  flex: 1;
}

/* PaymentComparison.module.css */
.PaymentComparison_page {
  background-color: #f8fafc;
  min-height: 100vh;
}
.PaymentComparison_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.PaymentComparison_title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #2d3748;
}
.PaymentComparison_subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 3rem;
}
.PaymentComparison_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.PaymentComparison_cardsContainer {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.PaymentComparison_paymentCard {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.PaymentComparison_paymentCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.PaymentComparison_cardHeader {
  background: #f7fafc;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}
.PaymentComparison_paymentLogo {
  height: 60px;
  max-width: 200px;
  object-fit: contain;
  margin-bottom: 1rem;
}
.PaymentComparison_cardHeader h2 {
  margin: 0;
  color: #2d3748;
  font-weight: 600;
}
.PaymentComparison_cardBody {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.PaymentComparison_prosList li, .PaymentComparison_consList li {
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  position: relative;
  list-style-type: none;
}
.PaymentComparison_prosList li::before {
  content: '\2713';
  color: #48bb78;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}
.PaymentComparison_consList li::before {
  content: '\2717';
  color: #e53e3e;
  position: absolute;
  left: 0;
  font-weight: bold;
  font-size: 1.1rem;
}
.PaymentComparison_ratingsSection {
  margin-bottom: 1.5rem;
}
.PaymentComparison_ratings {
  display: grid;
  gap: 0.75rem;
}
.PaymentComparison_ratingItem {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.PaymentComparison_stars {
  display: flex;
  gap: 0.25rem;
}
.PaymentComparison_starFilled {
  color: #ecc94b;
}
.PaymentComparison_starEmpty {
  color: #e2e8f0;
}
.PaymentComparison_suitableSection {
  background: #f7fafc;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-top: 1.5rem;
}
.PaymentComparison_suitableSection h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}
.PaymentComparison_suitableSection p {
  font-size: 0.95rem;
  color: #4a5568;
}
.PaymentComparison_callToAction {
  text-align: center;
  margin-top: 3rem;
}
.PaymentComparison_callToAction p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.PaymentComparison_btnPrimary {
  background: #805ad5;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.PaymentComparison_btnPrimary:hover {
  background: #6b46c1;
}
.PaymentComparison_cardSection, .PaymentComparison_ratingsSection, .PaymentComparison_suitableSection {
  padding: 1.5rem;
  border-bottom: 1px solid #f0f0f0;
}
.PaymentComparison_cardSection h3, .PaymentComparison_ratingsSection h3, .PaymentComparison_suitableSection h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  font-size: 1.125rem;
  font-weight: 600;
}
@media (max-width: 768px) {
  .PaymentComparison_cardsContainer {
    grid-template-columns: 1fr;
  }
  .PaymentComparison_ratingItem {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }
  .PaymentComparison_cardSection, .PaymentComparison_ratingsSection, .PaymentComparison_suitableSection {
    min-height: auto;
  }
}
@media (min-width: 769px) {
  .PaymentComparison_cardBody {
    display: flex;
    flex-direction: column;
  }
  .PaymentComparison_cardSection:nth-of-type(1) {
    min-height: 300px;
  }
  .PaymentComparison_cardSection:nth-of-type(2) {
    min-height: 260px;
  }
  .PaymentComparison_ratingsSection {
    min-height: 200px;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  .PaymentComparison_suitableSection {
    min-height: 150px;
    margin: 0;
    padding: 1.5rem;
  }
  .PaymentComparison_ratings {
    margin: 0 0.5rem;
  }
}

/* PricingCards.module.css */
.PricingCards_section { padding:2rem 1.5rem; }
.PricingCards_title { font-size:1.875rem; font-weight:700; text-align:center; margin-bottom:1.5rem; }
.PricingCards_eventGrid, .PricingCards_flatGrid { display:grid; gap:1.5rem; grid-template-columns:repeat(auto-fit,minmax(200px,1fr)); }
.PricingCards_card { display:flex; flex-direction:column; background:#fff; box-shadow:0 4px 6px rgba(0,0,0,0.1); border-radius:.75rem; overflow:hidden; }
.PricingCards_cardHeader { background:#e2e8f0; padding:1rem; text-align:center; font-weight:600; }
.PricingCards_cardBody { flex-grow:1; padding:1rem; text-align:center; }
.PricingCards_cardImage { max-height:6rem; margin:0 auto 1rem; }
.PricingCards_features { list-style:none; padding:0; margin:0; }
.PricingCards_features li { margin:0.5rem 0; }
.PricingCards_cardPrice { background:#e2e8f0; padding:1rem; text-align:center; font-size:1.5rem; font-weight:700; }
.PricingCards_priceOption {
  margin-bottom: 0.5rem;
}
.PricingCards_priceOption:last-child {
  margin-bottom: 0;
}
.PricingCards_priceAmount {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
}
.PricingCards_priceFrequency {
  font-size: 0.875rem;
  color: #718096;
}

/* PricingPage.module.css */
.PricingPage_page {
  background-color: #f8fafc;
  min-height: 100vh;
}
.PricingPage_section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.PricingPage_title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
  color: #2d3748;
}
.PricingPage_subtitle {
  text-align: center;
  font-size: 1.25rem;
  color: #4a5568;
  margin-bottom: 3rem;
}
.PricingPage_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.PricingPage_setupOptions {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 3rem;
}
.PricingPage_setupCard:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
.PricingPage_setupHeader.active {
  background: #805ad5;
  color: white;
}
.PricingPage_price {
  display: block;
  font-size: 2rem;
  font-weight: 700;
}
.PricingPage_frequency {
  display: block;
  font-size: 0.9rem;
  color: inherit;
  opacity: 0.8;
}
.PricingPage_features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.PricingPage_features li {
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}
.PricingPage_features li::before {
  content: '\2713';
  color: #48bb78;
  position: absolute;
  left: 0;
}
.PricingPage_sectionTitle {
  font-size: 1.875rem;
  font-weight: 700;
  text-align: center;
  margin: 2rem 0;
}
.PricingPage_callToAction {
  text-align: center;
  margin-top: 3rem;
}
.PricingPage_callToAction p {
  margin-bottom: 1rem;
  font-size: 1.125rem;
}
.PricingPage_btnPrimary {
  background: #805ad5;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  text-decoration: none;
  display: inline-block;
  transition: background 0.3s;
}
.PricingPage_btnPrimary:hover {
  background: #6b46c1;
}
.PricingPage_taxNotice {
  text-align: center;
  margin: 2rem 0;
  padding: 0.75rem;
  background: #edf2f7;
  border-radius: 0.5rem;
  font-size: 0.95rem;
  color: #4a5568;
}
.PricingPage_setupCard {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  width: 300px;
  cursor: pointer;
}
.PricingPage_setupHeader {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f7fafc;
  padding: 1.5rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  min-height: 80px;
}
.PricingPage_setupHeader h2 {
  margin: 0;
  font-weight: 600;
  font-size: 1.1rem;
}
.PricingPage_setupBody {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}
.PricingPage_setupFooter {
  flex: 1;
  background: #f7fafc;
  padding: 1.5rem;
  text-align: center;
  border-top: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 80px;
}
.PricingPage_setupLabel {
  display: block;
  margin-bottom: 0.5rem;
  color: #4a5568;
  font-size: 0.9rem;
}
.PricingPage_setupPrice {
  display: block;
  font-size: 1.75rem;
  font-weight: 700;
  color: #805ad5;
}
@media (max-width: 768px) {
  .PricingPage_setupOptions {
    flex-direction: column;
    align-items: center;
  }
}

/* RegisterPage.module.css */
.RegisterPage_page {
  background-color: #f8fafc;
  min-height: 100vh;
}
.RegisterPage_section {
  max-width: 1000px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.RegisterPage_title {
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  color: #2d3748;
}
.RegisterPage_sectionIcon {
  height: 24px;
  width: auto;
  vertical-align: middle;
  margin-right: 0.5rem;
}
.RegisterPage_progressBar {
  margin: 2rem 0 3rem;
}
.RegisterPage_progressSteps {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.RegisterPage_progressSteps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 2px;
  background: #e2e8f0;
  z-index: 1;
}
.RegisterPage_progressStep {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  position: relative;
  z-index: 2;
}
.RegisterPage_progressStep.active {
  border-color: #805ad5;
  color: #805ad5;
  box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.2);
}
.RegisterPage_progressStep.completed {
  background: #805ad5;
  border-color: #805ad5;
  color: white;
}
.RegisterPage_progressStep.skipped {
  background: #e2e8f0;
  color: #a0aec0;
}
.RegisterPage_formContainer {
  background: #fff;
  border-radius: 0.5rem;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
}
.RegisterPage_optionsContainer {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}
.RegisterPage_optionCard {
  flex: 1;
  padding: 1.5rem;
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.RegisterPage_optionCard:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.RegisterPage_optionCard.selected {
  border-color: #805ad5;
  box-shadow: 0 0 0 2px rgba(128, 90, 213, 0.2);
}
.RegisterPage_optionCard h3 {
  margin-top: 0;
  color: #2d3748;
}
.RegisterPage_optionCard ul {
  list-style: none;
  padding-left: 0;
}
.RegisterPage_optionCard li {
  margin: 0.75rem 0;
  position: relative;
  padding-left: 1.5rem;
}
.RegisterPage_optionCard li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: #48bb78;
}
.RegisterPage_formGroupFull select,
.RegisterPage_formRow div select {
  height: 40px;
  line-height: 1.1;
  width: 105%;
}
.RegisterPage_formGroup {
  margin-bottom: 1.5rem;
}
.RegisterPage_formRow {
  display: flex;
  gap: 2rem;
  width: 97%;
  margin-bottom: 1.5rem;
}
.RegisterPage_formGroupLarge {
  flex: 0.8;
}
.RegisterPage_formGroupSmall {
  flex: 0.2;
}
.RegisterPage_formGroupMedium {
  flex: 0.3;
}
.RegisterPage_formGroup label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #4a5568;
}
.RegisterPage_formGroup input,
.RegisterPage_formGroup select,
.RegisterPage_formGroup textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  font-size: 1rem;
}
.RegisterPage_formGroup input:focus,
.RegisterPage_formGroup select:focus,
.RegisterPage_formGroup textarea:focus {
  border-color: #805ad5;
  box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.2);
  outline: none;
}
.RegisterPage_formGroupFull {
  width: 97%;
  margin-bottom: 1.5rem;
}
.RegisterPage_formGroupFull label,
.RegisterPage_formRow div label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #4a5568;
}
.RegisterPage_formGroupFull input,
.RegisterPage_formRow div input,
.RegisterPage_formGroupFull select,
.RegisterPage_formRow div select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  font-size: 1rem;
  height: auto;
}
.RegisterPage_formGroupFull input:focus,
.RegisterPage_formRow div input:focus,
.RegisterPage_formGroupFull select:focus,
.RegisterPage_formRow div select:focus {
  border-color: #805ad5;
  box-shadow: 0 0 0 3px rgba(128, 90, 213, 0.2);
  outline: none;
}
.RegisterPage_formGroupFull textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  resize: vertical;
}
.RegisterPage_formGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.RegisterPage_radioGroup {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}
.RegisterPage_radioGroup label {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.RegisterPage_radioGroup input {
  margin-right: 0.5rem;
  width: auto;
}
.RegisterPage_tarifGrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}
.RegisterPage_tarifCard {
  border: 2px solid #e2e8f0;
  border-radius: 0.5rem;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.RegisterPage_tarifCard:hover {
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}
.RegisterPage_tarifCard.selected {
  border-color: #805ad5;
  box-shadow: 0 0 0 2px rgba(128, 90, 213, 0.2);
}
.RegisterPage_tarifCard h3 {
  margin-top: 0;
  color: #2d3748;
}
.RegisterPage_price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #805ad5;
  margin-top: 1rem;
}
.RegisterPage_cycle {
  display: block;
  font-size: 0.875rem;
  font-weight: normal;
  color: #718096;
}
.RegisterPage_costSummary {
  background: #f7fafc;
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.RegisterPage_costRow {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e2e8f0;
}
.RegisterPage_costTotal {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 600;
  margin-top: 0.5rem;
}
.RegisterPage_summarySections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.RegisterPage_summarySection {
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
  border-radius: 0.5rem;
  background: #f7fafc;
}
.RegisterPage_summarySection h3 {
  margin-top: 0;
  margin-bottom: 1rem;
  color: #2d3748;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 0.5rem;
}
.RegisterPage_taxNote {
  font-style: italic;
  color: #718096;
  font-size: 0.9rem;
}
.RegisterPage_consentGroup {
  margin: 0.75rem 0;
}
.RegisterPage_consentGroup label {
  align-items: flex-start;
  font-weight: 400;
  line-height: 1.5;
  cursor: pointer;
}
.RegisterPage_consentGroup input {
  margin-top: 0.25rem;
  flex-shrink: 0;
  margin-right: 0.5rem;
}
.RegisterPage_consentGroup a {
  color: #805ad5;
  text-decoration: none;
  display: inline;
}
.RegisterPage_orderNote {
  font-style: italic;
  margin-top: 1rem;
  padding: 1rem;
  background-color: #ebf8ff;
  border-radius: 0.5rem;
  color: #2c5282;
}
.RegisterPage_buttonGroup {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
}
.RegisterPage_btnPrimary {
  background: #805ad5;
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}
.RegisterPage_btnPrimary:hover {
  background: #6b46c1;
}
.RegisterPage_btnPrimary:disabled {
  background: #cbd5e0;
  cursor: not-allowed;
}
.RegisterPage_btnSecondary {
  background: #fff;
  color: #4a5568;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 9999px;
  border: 1px solid #cbd5e0;
  cursor: pointer;
  transition: all 0.3s;
}
.RegisterPage_btnSecondary:hover {
  background: #f7fafc;
  color: #2d3748;
}
.RegisterPage_dataTable {
  display: grid;
  grid-template-columns: max-content 1fr;
  gap: 0.5rem 1.5rem;
  margin-bottom: 1rem;
}
.RegisterPage_dataLabel {
  text-align: left;
  font-weight: 600;
  width: 170px;
}
.RegisterPage_dataValue {
  text-align: left;
}
.RegisterPage_addressIndent {
  grid-column: 2;
  padding-left: 0;
}
.RegisterPage_dataRow {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}
@media (max-width: 768px) {
  .RegisterPage_optionsContainer {
    flex-direction: column;
  }
  .RegisterPage_formGrid {
    grid-template-columns: 1fr;
  }
  .RegisterPage_progressStep {
    width: 30px;
    height: 30px;
    font-size: 0.875rem;
  }
  .RegisterPage_dataTable {
    grid-template-columns: 1fr !important;
  }
  .RegisterPage_dataLabel {
    width: 100%;
    padding-bottom: 0;
    font-weight: 600;
    margin-bottom: 0.1rem;
  }
  .RegisterPage_dataValue {
    width: 100%;
    margin-bottom: 0.7rem;
    padding-left: 0;
  }
  .RegisterPage_dataRow {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    margin-bottom: 0.7rem;
    padding-left: 0;
  }
}
select {
  height: 47px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%234A5568' d='M6 8.825L1.175 4 2.05 3.125 6 7.075 9.95 3.125 10.825 4z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 12px;
  padding-right: 2rem;
}

