/* VOXIAL Webinar Landingpage - Corporate Design CSS */
/* Corporate Colors: #142128 (Azul-escuro), #f2aa00 (Amarelo-vivo), #00bef2 (Ciano), #757575 (Cinzento) */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #142128;
    background-color: #ffffff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #ffffff;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #142128;
    text-align: center;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: #142128;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #142128;
}

p {
    font-size: 1.125rem;
    margin-bottom: 1rem;
    color: #142128;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border: none;
    border-radius: 20px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
    background-color: #f2aa00;
    color: #142128;
}

.btn-primary:hover {
    background-color: #e09900;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 170, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #00bef2;
    border: 2px solid #00bef2;
}

.btn-secondary:hover {
    background-color: #00bef2;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.25rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #142128 0%, #1a2a35 100%);
    color: #ffffff;
    padding: 120px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-logo {
    margin-bottom: 2rem;
    text-align: center;
}

.hero-logo .logo {
    height: 80px;
    width: auto;
    max-width: 300px;
    /*filter: brightness(0) invert(1); /* Macht das Logo weiß */
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #e0e0e0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-bullets {
    list-style: none;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.hero-bullets li {
    font-size: 1.25rem;
    font-weight: 500;
    color: #f2aa00;
    position: relative;
    padding-left: 1.5rem;
}

.hero-bullets li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bef2;
    font-weight: bold;
}

.hero-ctas {
    margin: 3rem 0;
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-row {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-row p {
    font-size: 1rem;
    color: #b0b0b0;
    font-style: italic;
}
.trust-row.fw {
 
    font-size: 1rem;
    color: #b0b0b0;
    font-style: italic;
}
.text-left{ text-align: start;}
.text-center { text-align: center;}
.flex{display: inline-flex; gap: 1rem;}
.mx{ margin-left: auto; margin-right: auto;}

section.USPBanner {
    width: 100%;
    background-color: #142128;
    padding: 3rem;
}

.priority-callout{
  margin-top:20px;
  padding:16px 18px;
  border-radius:16px;
  border:1px solid rgba(242,170,0,.35);           /* amarelo */
  background: linear-gradient(180deg, rgba(242,170,0,.10), rgba(0,190,242,.10));
  color:#142128;                                   /* navy para texto escuro */
}
.theme-dark .priority-callout{
  color:#fff;                                      /* se fores dark */
}
.priority-callout strong{
  color:#f2aa00;
}
.priority-callout .divider{
  opacity:.6;
  margin:0 8px;
}
.btn.btn--inline{
  display:inline-block;
  margin-left:10px;
  padding:6px 10px;
  border-radius:12px;
  border:1px solid rgba(242,170,0,.5);
  background:rgba(242,170,0,.15);
  color:#142128;
  font-weight:600;
}
.theme-dark .btn.btn--inline{
  color:#1a1600;
}
.btn.btn--inline:hover{
  filter:brightness(1.05);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section:nth-child(even) {
    background-color: #f8f9fa;
}

.section-intro {
    font-size: 1.25rem;
    color: #757575;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

/* Learning List */
.learning-list {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 3rem 0;
}

.learning-list h3 {
    color: #142128;
    margin-bottom: 1.5rem;
    text-align: center;
}

.learning-list ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.learning-list li {
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #00bef2;
    font-weight: 500;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card, .cookie-card {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.card:hover {
    transform: translateY(-8px);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card h4 {
    margin-bottom: 1rem;
    color: #142128;
}

.card p {
    color: #757575;
    font-size: 1rem;
}

.card.cyan p {
    color: #fff;
    font-size: large;
}

.card.cyan {
    background: #00bef2;
    color: #fff !important;
    font-size: larger;
	font-weight: 700;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #f2aa00;
    color: #142128;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem;
}

.step h4 {
    margin-bottom: 1rem;
    color: #142128;
}

.step p {
    color: #757575;
}

/* FAQ Accordion (vereinheitlicht für Universal Toggle) */
.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 1rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.accordion-header {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #142128;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background-color: #f8f9fa;
}

.accordion-icon {
  font-size: 1.5rem;
  color: #00bef2;
  transition: transform 0.3s ease;
}

/* Universal Toggle Integration */
.toggle-content {
  display: none;
  overflow: hidden;
}

.toggle-content:not(.hidden) {
  display: block;
}

.accordion-content p {
  padding: 0 1.5rem 1.5rem;
  color: #757575;
  margin: 0;
}
.toggle-content p {
  padding: 1rem 1.5rem 1.5rem;
}

.accordion-header.active .accordion-icon,
[data-toggle][aria-expanded="true"] .accordion-icon {
  transform: rotate(45deg);
}
.toggle-content {
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.toggle-content:not(.hidden) {
  opacity: 1;
  max-height: 500px;
}


/* Form Section */
.form-section {
    background-color: #142128;
    color: #ffffff;
}

.form-section h2 {
    color: #142128;
    text-align: center;
    margin-bottom: 3rem;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #142128;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #00bef2;
    box-shadow: 0 0 0 3px rgba(0, 190, 242, 0.1);
}

.form-group input.error,
.form-group select.error {
    border-color: #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: block;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.privacy-link {
    color: #00bef2;
    text-decoration: none;
}

.privacy-link:hover {
    text-decoration: underline;
}

/* Final CTA */
.final-cta {
    text-align: center;
    background-color: #f8f9fa;
}

.final-cta p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #142128;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Privacy Policy */
.privacy-policy {
    background-color: #f8f9fa;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.cookie-policy {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.cookie-policy h4 {
    margin-bottom: 1rem;
    color: #142128;
}

.cookie-policy p {
    font-size: 0.95rem;
    color: #757575;
    margin-bottom: 0.75rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #142128;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-banner-text h3 {
    color: #ffffff;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.cookie-banner-text p {
    color: #e0e0e0;
    margin: 0;
    font-size: 1rem;
}

.cookie-banner-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-banner .btn {
    padding: 12px 24px;
    font-size: 1rem;
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.cookie-modal-content {
    background-color: #ffffff;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: #142128;
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #757575;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cookie-modal-close:hover {
    background-color: #f8f9fa;
}

.cookie-modal-body {
    padding: 2rem;
}

.cookie-category {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.cookie-category h4 {
    margin: 0;
    color: #142128;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: 0.3s;
    border-radius: 24px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: 0.3s;
    border-radius: 50%;
}
/*
.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #00bef2;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(26px);
}
/* Harmonisierung für Cookie Accordion */
.accordion-toggle[data-toggle].active .toggle-icon {
  transform: rotate(45deg);
}

.accordion-content.is-hidden,
.toggle-content.hidden {
  display: none;
}


.cookie-category p {
    color: #757575;
    font-size: 0.95rem;
    margin: 0;
}

.cookie-modal-footer {
    padding: 1rem 2rem 2rem;
    border-top: 1px solid #e0e0e0;
    text-align: right;
}

/* Footer */
.footer {
    background-color: #142128;
    color: #ffffff;
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    height: 60px;
    width: auto;
    max-width: 200px;
    filter: brightness(0) invert(1);
}

.footer-tagline {
    color: #e0e0e0;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00bef2;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: #00bef2;
    transform: translateY(-2px);
}

.social-icon {
    width: 24px;
    height: 24px;
}

.icon-bg {
    fill: transparent;
}

.icon-fg {
    fill: #ffffff;
}

.social-links a:hover .icon-fg {
    fill: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright p {
    color: #b0b0b0;
    font-size: 0.9rem;
    margin: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #b0b0b0;
    font-size: 0.9rem;
}

.footer-legal .separator {
    opacity: 0.6;
}

/* Privacy Page */
.privacy-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.page-header {
    background-color: #142128;
    padding: 1rem 0;
    margin-bottom: 2rem;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    text-decoration: none;
}

.header-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
}

.header-nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.privacy-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.privacy-header h1 {
    color: #142128;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.privacy-intro {
    color: #757575;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-details {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 2rem 0;
}

.privacy-details h2 {
    color: #142128;
    text-align: center;
    margin-bottom: 2rem;
}

.privacy-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e0e0e0;
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section h3 {
    color: #142128;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-section p {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.privacy-section ul {
    color: #757575;
    padding-left: 1.5rem;
}

.privacy-section li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.contact-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #00bef2;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #142128;
}

.contact-info strong {
    color: #142128;
}

/* Cookie Page */
.cookie-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    padding: 2rem 0;
}

.cookie-header {
    text-align: center;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.cookie-header h1 {
    color: #142128;
    font-size: 3rem;
    margin-bottom: 1rem;
}

.cookie-intro {
    color: #757575;
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
}

.cookie-container {
    margin: 2rem 0;
}

.cookie-container h2 {
    color: #142128;
    text-align: center;
    margin-bottom: 2rem;
}

.cookie-container p {
    color: #757575;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.pb1 {
    padding-bottom: 1rem;
}

.cookie-consent-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin: 2rem 0;
}

.cookie-consent-options label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 12px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-consent-options label:hover {
    background-color: #e9ecef;
}

.cookie-consent-options input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #00bef2;
}

.small {
    font-size: 0.875rem;
    color: #757575;
    font-style: italic;
}

.button-normal {
    background-color: #f2aa00;
    color: #142128;
    padding: 12px 24px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-normal:hover {
    background-color: #e09900;
    transform: translateY(-2px);
}

.button-outline-cyan {
    background-color: transparent;
    border: 1px solid #00bef2;
    color: #00bef2;
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.button-outline-cyan:hover {
    background-color: #00bef2;
    color: #ffffff;
    transform: translateY(-2px);
}

.wv-link-overlay {
    background: none;
    border: none;
    color: #00bef2;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 1rem;
}

.wv-link-overlay:hover {
    color: #0099cc;
}

.cookie-details {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
}

.cookie-details h3 {
    color: #142128;
    margin-bottom: 1.5rem;
}

.cookie-table-wrapper {
    overflow-x: auto;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #142128;
}

.accordion-toggle {
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.accordion-toggle:hover {
    background-color: #f8f9fa;
}

.toggle-cell {
    position: relative;
}

.toggle-icon {
    float: right;
    font-weight: bold;
    color: #00bef2;
    transition: transform 0.3s ease;
}

.accordion-toggle.active .toggle-icon {
    transform: rotate(45deg);
}

.accordion-content {
    display: none;
}

.accordion-content.is-hidden {
    display: none;
}

.accordion-content:not(.is-hidden) {
    display: table-row;
}

.accordion-content td {
    background-color: #f8f9fa;
    padding: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.6;
}

.accordion-content strong {
    color: #142128;
    font-weight: 600;
}

.accordion-content code {
    background-color: #e9ecef;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.85rem;
}

.accordion-content ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.accordion-content li {
    margin-bottom: 0.25rem;
}

.accordion-content a {
    color: #00bef2;
    text-decoration: none;
}

.accordion-content a:hover {
    text-decoration: underline;
}

.hidden {
    display: none !important;
}

/* Thank You Page */
.thank-you-page {
    background-color: #f8f9fa;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.thank-you-content h1 {
    color: #142128;
    margin-bottom: 1rem;
}

.success-message {
    font-size: 1.25rem;
    color: #757575;
    margin-bottom: 2rem;
}

.webinar-details {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    text-align: left;
}

.webinar-details h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #142128;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.detail-item {
    padding: 1rem;
    background-color: #ffffff;
    border-radius: 8px;
    border-left: 4px solid #00bef2;
}

.calendar-actions {
    margin: 2rem 0;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.calendar-actions h3 {
    color: #142128;
    margin-bottom: 1rem;
}

.calendar-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
    flex-wrap: wrap;
}

.calendar-link {
    color: #00bef2;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border: 1px solid #00bef2;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.calendar-link:hover {
    background-color: #00bef2;
    color: #ffffff;
}

.next-steps {
    text-align: left;
    margin: 2rem 0;
}

.next-steps h3 {
    color: #142128;
    margin-bottom: 1rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding: 0;
}

.next-steps li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 2rem;
}

.next-steps li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00bef2;
    font-weight: bold;
}

.cta-actions {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.75rem;
    }
    
    .hero {
        padding: 80px 0 60px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero-bullets {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        align-items: center;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
    }
    
    .learning-list ul {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
    }
    
    .registration-form {
        padding: 2rem;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-actions {
        width: 100%;
        justify-content: center;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .calendar-links {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .privacy-header h1 {
        font-size: 2.5rem;
    }
    
    .privacy-details {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 1.125rem;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
}
/* ========================================= */
/* UNIVERSAL TOGGLE SYSTEM (für FAQ, Cookies, Accordion, etc.) */
/* ========================================= */

.toggle-content {
  display: none;
  overflow: hidden;
  transition: all 0.3s ease;
}

.toggle-content:not(.hidden) {
  display: block;
}

[data-toggle].active,
.accordion-header.active {
  background-color: #f8f9fa;
  color: #142128;
}

[data-toggle][aria-expanded="true"] .accordion-icon,
[data-toggle].active .accordion-icon {
  transform: rotate(45deg);
}

[data-toggle] {
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Einheitliche "hidden"-Klasse für alle Komponenten */
.hidden {
  display: none !important;
}

/* Optional: Leichte Animation beim Öffnen */
.toggle-content:not(.hidden) {
  animation: toggleFade 0.25s ease-in;
}

@keyframes toggleFade {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
