/* Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-gray-dark: #2c2c2c;
  --color-gray-medium: #4a4a4a;
  --color-gray-light: #6b6b6b;
  --color-gray-lighter: #e0e0e0;
  --color-orange: #ff6b35;
  --color-orange-dark: #e55a2b;
  --color-orange-light: #ff8c5a;
  --color-white: #ffffff;
  --color-bg-light: #f5f5f5;
  --transition: all 0.3s ease;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--color-gray-dark);
  background-color: var(--color-white);
  overflow-x: hidden;
  hyphens: auto;
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.header {
  background-color: var(--color-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo h1 {
  color: var(--color-orange);
  font-size: 1.5rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  text-decoration: none;
  color: var(--color-gray-dark);
  font-weight: 500;
  transition: var(--transition);
}

.nav-link:hover {
  color: var(--color-orange);
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  gap: 5px;
}

.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background-color: var(--color-gray-dark);
  transition: var(--transition);
}

/* Hero Section */
.hero {
  background: linear-gradient(
      135deg,
      rgba(44, 44, 44, 0.3) 0%,
      rgba(74, 74, 74, 0.3) 100%
    ),
    url("../image/hero1.avif") center/cover no-repeat;
  color: var(--color-white);
  padding: 50px 0;
  text-align: center;
  animation: fadeInUp 0.8s ease;
  position: relative;
}

.hero-title {
  font-size: 3rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-gray-lighter);
}

.hero-highlight {
  font-size: 1.8rem;
  color: var(--color-orange);
  font-weight: 700;
  margin: 2rem 0;
}

.hero-cta {
  margin-top: 2rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background-color: var(--color-orange);
  color: var(--color-white);
}

.btn-primary:hover {
  background-color: var(--color-orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-large {
  padding: 15px 40px;
  font-size: 1.1rem;
}

/* Section Styles */
section {
  padding: 80px 0;
  animation: fadeIn 0.6s ease;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 1rem;
  color: var(--color-gray-dark);
  font-weight: 700;
}

.section-description {
  text-align: center;
  font-size: 1.1rem;
  color: var(--color-gray-light);
  max-width: 800px;
  margin: 0 auto 3rem;
}

/* Platform Section */
.platform-section {
  background-color: var(--color-bg-light);
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.platform-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: var(--transition);
}

.platform-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.platform-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 1.5rem;
}

.platform-card h3 {
  color: var(--color-gray-dark);
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.platform-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.feature-item h4 {
  color: var(--color-orange);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

/* Registration Section */
.registration-section {
  text-align: center;
  margin-top: 3rem;
}

.btn-register {
  font-size: 1.1rem;
  padding: 15px 40px;
}

/* Registration Modal */
.register-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.register-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}

.register-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(5px);
}

.register-modal-content {
  position: relative;
  background-color: var(--color-white);
  border-radius: 15px;
  padding: 2.5rem;
  max-width: 500px;
  width: 90%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.register-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  color: var(--color-gray-light);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.register-modal-close:hover {
  background-color: var(--color-bg-light);
  color: var(--color-gray-dark);
}

.register-modal-content h2 {
  color: var(--color-gray-dark);
  margin-bottom: 0.5rem;
  font-size: 2rem;
}

.register-subtitle {
  color: var(--color-gray-light);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.register-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  color: #757575;
}

.form-group label {
  color: var(--color-gray-dark);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
  padding: 12px 15px;
  border: 2px solid var(--color-gray-lighter);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
  width: 100%;
}

.form-group input[type="text"]:focus,
.form-group input[type="email"]:focus,
.form-group input[type="tel"]:focus,
.form-group input[type="password"]:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.75rem;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 0.25rem;
  width: 18px;
  height: 18px;
  cursor: pointer;
  flex-shrink: 0;
}

.checkbox-group label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 0.9rem;
  line-height: 1.5;
}

.checkbox-group label a {
  color: var(--color-orange);
  text-decoration: underline;
}

.checkbox-group label a:hover {
  color: var(--color-orange-dark);
}

.btn-submit {
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
  margin-top: 0.5rem;
}

/* Einstieg Section */
.einstieg-section {
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-orange-dark) 100%
  );
  color: var(--color-white);
}

.einstieg-section .section-title {
  color: var(--color-white);
}

.einstieg-description {
  text-align: center;
  font-size: 1.1rem;
  max-width: 800px;
  margin: 0 auto 3rem;
  color: rgba(255, 255, 255, 0.95);
}

.einstieg-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.step {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 10px;
  backdrop-filter: blur(10px);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--color-white);
  color: var(--color-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.einstieg-cta {
  text-align: center;
}

.einstieg-cta .btn-primary {
  background-color: var(--color-white);
  color: var(--color-orange);
  cursor: pointer;
}

.einstieg-cta .btn-primary:hover {
  background-color: var(--color-gray-lighter);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Vorteile Section */
.vorteile-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.vorteile-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-left: 4px solid var(--color-orange);
  transition: var(--transition);
}

.vorteile-card:hover {
  transform: translateX(5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.vorteile-card h3 {
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Trends Section */
.trends-section {
  background: linear-gradient(
      135deg,
      rgba(245, 245, 245, 0.4) 0%,
      rgba(245, 245, 245, 0.35) 100%
    ),
    url("../image/fon3.jpg") center/cover no-repeat;
  background-color: var(--color-bg-light);
  position: relative;
}

.trends-section .section-title {
  color: var(--color-white);
}

.trends-content {
  max-width: 900px;
  margin: 0 auto;
}

.trend-article {
  background: var(--color-white);
  padding: 2.5rem;
  border-radius: 10px;
  margin-bottom: 2rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.trend-article h3 {
  color: var(--color-gray-dark);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.trend-date {
  color: var(--color-orange);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.trend-article p {
  margin-bottom: 1rem;
  line-height: 1.8;
}

/* Modern Platforms Section */
.modern-platforms-section {
  background-color: var(--color-white);
}

.platforms-overview {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.platform-overview-item {
  padding: 2rem;
  background: var(--color-bg-light);
  border-radius: 10px;
  border-top: 3px solid var(--color-orange);
}

.platform-overview-item h3 {
  color: var(--color-gray-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

/* Investment Calculator */
.investment-calculator {
  margin-top: 4rem;
  padding: 3rem;
  background: var(--color-bg-light);
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.calculator-title {
  text-align: center;
  color: var(--color-gray-dark);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.calculator-description {
  text-align: center;
  color: var(--color-gray-light);
  margin-bottom: 2rem;
  font-size: 1rem;
}

.calculator-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.calculator-input-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.calculator-input-group label {
  color: var(--color-gray-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.calculator-input-group input {
  padding: 12px 15px;
  border: 2px solid var(--color-gray-lighter);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
  font-family: inherit;
}

.calculator-input-group input:focus {
  outline: none;
  border-color: var(--color-orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.calculator-btn {
  margin-top: 0.5rem;
  width: 100%;
  padding: 15px;
  font-size: 1.1rem;
}

.calculator-results {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.calculator-results h4 {
  color: var(--color-gray-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--color-gray-lighter);
}

.result-item:last-of-type {
  border-bottom: none;
}

.result-item.result-total {
  margin-top: 1rem;
  padding-top: 1.5rem;
  border-top: 2px solid var(--color-orange);
  border-bottom: none;
}

.result-label {
  color: var(--color-gray-dark);
  font-weight: 600;
  font-size: 1rem;
}

.result-value {
  color: var(--color-orange);
  font-weight: 700;
  font-size: 1.2rem;
}

.result-item.result-total .result-value {
  font-size: 1.5rem;
}

.calculator-disclaimer {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--color-gray-lighter);
}

.calculator-disclaimer p {
  color: var(--color-gray-light);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Vertrauen Section */
.vertrauen-section {
  background: linear-gradient(
      135deg,
      rgba(44, 44, 44, 0.35) 0%,
      rgba(74, 74, 74, 0.35) 100%
    ),
    url("../image/fon2.avif") center/cover no-repeat;
  color: var(--color-white);
  position: relative;
}

.vertrauen-section .section-title {
  color: var(--color-white);
}

.vertrauen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
  gap: 2rem;
}

.vertrauen-item {
  background: rgba(255, 255, 255, 0.1);
  padding: 20px;
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.vertrauen-item h3 {
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.vertrauen-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
}

/* Kontakt Section */
.kontakt-section {
  background-color: var(--color-white);
}

.kontakt-content {
  margin-bottom: 3rem;
}

.kontakt-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

.kontakt-item {
  text-align: center;
  padding: 2rem;
  background: var(--color-bg-light);
  border-radius: 10px;
  transition: var(--transition);
}

.kontakt-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.kontakt-item h3 {
  color: var(--color-orange);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.kontakt-item p {
  color: var(--color-gray-dark);
  margin: 0;
  line-height: 1.8;
}

.kontakt-item a, .contact  {
  color: var(--color-gray-dark);
  text-decoration: none;
  transition: var(--transition);

}

.kontakt-item a:hover, .contact:hover {
  color: var(--color-orange);
}

.contact-map {
  margin-top: 3rem;
}

.contact-map h2 {
  text-align: center;
  color: var(--color-gray-dark);
  margin-bottom: 2rem;
  font-size: 2rem;
}

.map-container {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  animation: fadeIn 0.6s ease;
}

.map-container iframe {
  width: 100%;
  height: 450px;
  border: 0;
  display: block;
}

/* Investment Plans Table Section */
.investment-plans-section {
  background: linear-gradient(
      135deg,
      rgba(245, 245, 245, 0.5) 0%,
      rgba(245, 245, 245, 0.45) 100%
    ),
    url("../image/fon4.webp") center/cover no-repeat;
  background-color: var(--color-bg-light);
  position: relative;
}

.investment-plans-section .section-description {
  color: var(--color-gray-dark);
}

.table-container {
  overflow-x: auto;
  margin-top: 2rem;
}

.investment-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  overflow: hidden;
}

.investment-table thead {
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-orange-dark) 100%
  );
  color: var(--color-white);
}

.investment-table th {
  padding: 1.2rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
}

.investment-table td {
  padding: 1.2rem;
  border-bottom: 1px solid var(--color-gray-lighter);
  color: var(--color-gray-dark);
}

.investment-table tbody tr {
  transition: var(--transition);
}

.investment-table tbody tr:hover {
  background-color: var(--color-bg-light);
}

.investment-table tbody tr:last-child td {
  border-bottom: none;
}

/* Investment Cards Mobile */
.investment-cards-mobile {
  display: none;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.investment-card {
  background: var(--color-white);
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: var(--transition);
}

.investment-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.card-header {
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-orange-dark) 100%
  );
  color: var(--color-white);
  padding: 1.2rem;
  text-align: center;
}

.card-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-white);
}

.card-body {
  padding: 1.5rem;
}

.card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--color-gray-lighter);
}

.card-row:last-child {
  border-bottom: none;
}

.card-label {
  font-weight: 600;
  color: var(--color-gray-dark);
  font-size: 0.95rem;
}

.card-value {
  color: var(--color-gray-light);
  text-align: right;
  font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
  background-color: var(--color-bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-card {
  background: var(--color-white);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
  margin-bottom: 1rem;
}

.testimonial-rating .star {
  color: var(--color-orange);
  font-size: 1.2rem;
  margin-right: 0.2rem;
}

.testimonial-text {
  color: var(--color-gray-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.testimonial-author strong {
  color: var(--color-gray-dark);
  font-size: 1rem;
}

.testimonial-author span {
  color: var(--color-gray-light);
  font-size: 0.9rem;
}

/* Statistics Section */
.statistics-section {
  background: linear-gradient(
    135deg,
    var(--color-gray-dark) 0%,
    var(--color-gray-medium) 100%
  );
  color: var(--color-white);
}

.statistics-section .section-title {
  color: var(--color-white);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.statistic-item {
  text-align: center;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: var(--transition);
}

.statistic-item:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.15);
}

.statistic-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-orange);
  margin-bottom: 0.5rem;
}

.statistic-label {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
}

/* Articles Section */
.articles-section {
  background: linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.45) 0%,
      rgba(255, 255, 255, 0.4) 100%
    ),
    url("../image/fon5.webp") center/cover no-repeat;
  background-color: var(--color-white);
  position: relative;
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.article-card {
  background: var(--color-bg-light);
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: var(--transition);
  border-left: 4px solid var(--color-orange);
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.article-date {
  color: var(--color-orange);
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.article-card h3 {
  color: var(--color-gray-dark);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.article-card p {
  color: var(--color-gray-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-link {
  color: var(--color-orange);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.article-link:hover {
  color: var(--color-orange-dark);
}

/* FAQ Section */
.faq-section {
  background: linear-gradient(
      135deg,
      rgba(245, 245, 245, 0.4) 0%,
      rgba(245, 245, 245, 0.35) 100%
    ),
    url("../image/hero1.avif") center/cover no-repeat;
  background-color: var(--color-bg-light);
  position: relative;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--color-gray-dark);
  transition: var(--transition);
}

.faq-question:hover {
  background-color: var(--color-bg-light);
}

.faq-icon {
  font-size: 1.5rem;
  color: var(--color-orange);
  transition: var(--transition);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  color: var(--color-gray-light);
  line-height: 1.8;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--color-orange) 0%,
    var(--color-orange-dark) 100%
  );
  color: var(--color-white);
  text-align: center;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: rgba(255, 255, 255, 0.95);
}

.cta-content .btn-primary {
  background-color: var(--color-white);
  color: var(--color-orange);
}

.cta-content .btn-primary:hover {
  background-color: var(--color-gray-lighter);
}

/* Footer */
.footer {
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--color-orange);
  margin-bottom: 1rem;
}

.footer-section h4 {
  color: var(--color-white);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section ul li {
  margin-bottom: 0.5rem;
}

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section a:hover {
  color: var(--color-orange);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-gray-dark);
  color: var(--color-white);
  padding: 1.5rem;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.cookie-content p {
  flex: 1;
  margin: 0;
}

.cookie-content a {
  color: var(--color-orange);
  text-decoration: underline;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
}

.btn-cookie {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition);
}

#accept-cookies {
  background-color: var(--color-orange);
  color: var(--color-white);
}

#accept-cookies:hover {
  background-color: var(--color-orange-dark);
}

#decline-cookies {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}

#decline-cookies:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */

@media (max-width: 890px) {
  .mobile-menu-toggle {
    display: flex;
    z-index: 1000000;
    position: relative;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--color-white);
    flex-direction: column;
    padding: 2rem;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0;
  }

  .nav-menu li {
    margin-bottom: 1rem;
  }

  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
    top: -5px;
    position: relative;
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
  }
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-highlight {
    font-size: 1.4rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    justify-content: center;
  }

  .btn-cookie {
    flex: 1;
  }

  .platform-image {
    height: 180px;
  }

  .register-modal-content {
    padding: 2rem 1.5rem;
    max-width: 95%;
  }

  .register-modal-content h2 {
    font-size: 1.5rem;
  }

  .register-subtitle {
    font-size: 0.85rem;
  }

  .kontakt-info {
    grid-template-columns: 1fr;
  }

  .map-container iframe {
    height: 300px;
  }

  .contact-map h2 {
    font-size: 1.5rem;
  }

  .table-container {
    display: none;
  }

  .investment-cards-mobile {
    display: grid;
  }

  .investment-table {
    font-size: 0.9rem;
  }

  .investment-table th,
  .investment-table td {
    padding: 0.8rem;
  }

  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 1.5rem;
  }

  .statistic-item {
    padding: 1.2rem;
    min-height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  .statistic-number {
    font-size: 1.8rem;
    margin-bottom: 0.3rem;
  }

  .statistic-label {
    font-size: 0.9rem;
    line-height: 1.3;
  }

  .testimonials-grid,
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .investment-calculator {
    padding: 1.5rem 1rem;
    margin-top: 2rem;
  }

  .calculator-title {
    font-size: 1.3rem;
    margin-bottom: 0.3rem;
  }

  .calculator-description {
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .calculator-container {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .calculator-results {
    order: -1;
    padding: 1.5rem;
  }

  .calculator-results h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .calculator-form {
    gap: 1rem;
  }

  .calculator-input-group {
    gap: 0.4rem;
  }

  .calculator-input-group label {
    font-size: 0.9rem;
  }

  .calculator-input-group input {
    padding: 10px 12px;
    font-size: 0.95rem;
  }

  .calculator-btn {
    padding: 12px;
    font-size: 1rem;
    margin-top: 0.3rem;
  }

  .result-item {
    padding: 0.8rem 0;
    flex-wrap: wrap;
  }

  .result-label {
    font-size: 0.9rem;
    width: 100%;
    margin-bottom: 0.3rem;
  }

  .result-value {
    font-size: 1.1rem;
    width: 100%;
  }

  .result-item.result-total .result-value {
    font-size: 1.3rem;
  }

  .calculator-disclaimer {
    margin-top: 1rem;
    padding-top: 1rem;
  }

  .calculator-disclaimer p {
    font-size: 0.75rem;
    line-height: 1.5;
  }
}
.logo {
  display: flex;
  align-items: center;
}

@media (max-width: 520px) {
  .btn-main-page {
    display: none;
  }
}
.iti{
  width: 100%;
}