/* Base Styles */
:root {
    --primary-color: #385172;
    --secondary-color: #EA6256;
    --accent-color: #e67e22;
    --light-color: #f8f9fa;
    --dark-color: #343a40;
    --text-color: #333;
    --text-light: #6c757d;
    --border-color: #dee2e6;
    --shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--secondary-color);
}

ul {
    list-style: none;
}

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

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn:disabled {
    background-color: var(--text-light);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-outline {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: white;
}

.btn-text {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 500;
    transition: var(--transition);
}

.btn-text:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
}

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

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.alt-bg {
    background-color: var(--light-color);
}


.logo-img {
    height: 170px;
    display: block;
    margin-top: -60px;
    margin-bottom: -80px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
}

.logo h1 {
    font-size: 1.8rem;
    margin-bottom: 0;
}

.logo span {
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--secondary-color);
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px;
    transition: var(--transition);
}

/* Page Header */
.page-header {
    background-color: var(--primary-color);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1073&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Services Preview Section */
.services-preview {
    padding: 6rem 0;
}

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

.service-card {
    background-color: white;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.service-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1560518883-ce09059eeffa?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=1073&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* About Preview Section */
.about-preview {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1rem;
}

.about-list {
    margin-bottom: 2rem;
}

.about-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.about-list i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
}

.testimonial-slide.active {
    display: block;
}

.testimonial-content {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
}

.quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.testimonial-btn {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-btn:hover {
    color: var(--secondary-color);
}

.testimonial-dots {
    display: flex;
    margin: 0 1rem;
}
.white-line {
  border: none;
  height: 1px;
  background-color: white;
  margin: 0.1px 0; /* optional: Abstand oben und unten */
}
.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background-color: var(--secondary-color);
}

/* Contact Preview Section */
.contact-preview {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.contact-preview-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-preview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-preview-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Service Detail Section */
.service-detail {
    padding: 6rem 0;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.service-detail-content.reverse {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-detail-content.reverse .service-detail-text {
    direction: ltr;
}

.service-detail-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.service-detail-text .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.service-detail-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.service-detail-text h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
}

.service-list {
    margin-bottom: 2rem;
}

.service-list li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
}

.service-list i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.cta-box {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.cta-box p {
    margin-bottom: 1rem;
}

/* About Story Section */
.about-story {
    padding: 6rem 0;
}

.about-story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-story-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

/* About Difference Section */
.about-difference {
    padding: 6rem 0;
    background-color: var(--light-color);
}

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

.difference-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.difference-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.difference-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.difference-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* About Values Section */
.about-values {
    padding: 6rem 0;
}

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

.value-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    background-color: var(--secondary-color);
    color: white;
    transform: translateY(-5px);
}

.value-card .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.value-card:hover .icon {
    color: white;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

/* About Regions Section */
.about-regions {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.regions-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.regions-map {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.region-item {
    margin-bottom: 2rem;
}

.region-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.region-item h3 i {
    color: var(--secondary-color);
    margin-right: 0.8rem;
}

/* About Clients Section */
.about-clients {
    padding: 6rem 0;
}

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

.client-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: var(--transition);
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.client-card .icon {
    font-size: 3rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.client-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Contact Info Section */
.contact-info {
    padding: 6rem 0 3rem;
}

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

.contact-info-card {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-card .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 0 6rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form-container,
.calendly-container {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-form-container h2,
.calendly-container h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-form {
    margin-top: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.3rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

/* Map Section */
.map-section {
    padding: 6rem 0;
    background-color: var(--light-color);
}

.map-container {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Calculator Section */
.calculator-section {
    padding: 6rem 0;
}

.calculator-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.calculator-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.calculator-wizard {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.wizard-step {
    display: none;
    padding: 3rem;
    animation: fadeIn 0.5s ease forwards;
}

.wizard-step.active {
    display: block;
}

.wizard-step h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

.wizard-option {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.wizard-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.wizard-option.selected {
    border-color: var(--secondary-color);
    background-color: rgba(52, 152, 219, 0.1);
}

.wizard-option .icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.wizard-option h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.wizard-option p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.wizard-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.wizard-nav button:first-child {
    margin-right: auto;
}

.wizard-nav button:last-child {
    margin-left: auto;
}

.custom-option {
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.custom-option label {
    margin-right: 1rem;
    margin-bottom: 0;
    white-space: nowrap;
}

.custom-option input {
    width: 100px;
    margin-right: 0.5rem;
}

.result-box {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.result-box h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.result-details {
    margin-bottom: 2rem;
}

.result-detail {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--border-color);
}

.detail-label {
    font-weight: 500;
}

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

.result-item {
    text-align: left;
}

.result-label {
    display: block;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

.financing-chart-container {
    height: 300px;
    margin: 2rem 0;
}

.result-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.result-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}


.accordion {
    margin-bottom: 2rem;
}

.accordion-btn {
    background-color: #f7f7f7;
    color: #333;
    cursor: pointer;
    padding: 1rem;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: background-color 0.3s ease;
    font-weight: 600;
    font-size: 1rem;
    border-bottom: 1px solid #ddd;
}

.accordion-btn.active, .accordion-btn:hover {
    background-color: #e1eaff;
}

.accordion-content {
    padding: 0 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}

.accordion-content p {
    margin: 1rem 0;
    line-height: 1.6;
}


/* Footer */
footer {
    background-color: var(--primary-color);
    color: white;
    padding: 4rem 0 2rem;
}

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

.footer-logo h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.footer-logo span {
    color: var(--secondary-color);
}

.footer-contact h3,
.footer-links h3,
.footer-social h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-contact h3::after,
.footer-links h3::after,
.footer-social h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--secondary-color);
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.8rem;
    color: var(--secondary-color);
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links a {
    color: white;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons 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: white;
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-links {
    display: flex;
}

.legal-links li {
    margin-left: 1.5rem;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.legal-links a:hover {
    color: white;
}

/* Animations */
.animate-fade-in {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.6s ease forwards;
}

.delay-1 {
    animation-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
}

.delay-3 {
    animation-delay: 0.6s;
}

.delay-4 {
    animation-delay: 0.8s;
}

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

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

/* Füge diese CSS-Regeln zu deiner styles.css hinzu, um sicherzustellen, dass die Testimonials korrekt angezeigt werden */

/* Testimonials Section */
.testimonials {
    padding: 6rem 0;
  }
  
  .testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
  }
  
  .testimonial-slide {
    display: none;
    animation: fadeIn 0.5s ease forwards;
  }
  
  .testimonial-slide.active {
    display: block;
  }
  
  .testimonial-content {
    background-color: white;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    text-align: center;
  }
  
  .quote-icon {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
  }
  
  .testimonial-content p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 2rem;
  }
  
  .testimonial-author h4 {
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
  }
  
  .testimonial-author p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
  }
  
  .testimonial-btn {
    background-color: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
  }
  
  .testimonial-btn:hover {
    color: var(--secondary-color);
  }
  
  .testimonial-dots {
    display: flex;
    margin: 0 1rem;
  }
  
  .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
  }
  
  .dot.active {
    background-color: var(--secondary-color);
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
  


/* Verhindert Textüberlauf */
.wizard-option h4,
.wizard-option p,
.service-card h3,
.difference-card h3,
.value-card h3,
.client-card h3,
.region-item h3,
.contact-info-card h3 {
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

/* Stellt sicher, dass alle Container Text korrekt umbrechen */
p, h1, h2, h3, h4, h5, h6, span, a, li {
    max-width: 100%;
    overflow-wrap: break-word;
    word-wrap: break-word;
}
/* Responsive Design */
@media screen and (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .service-detail-content,
    .service-detail-content.reverse,
    .about-content,
    .about-story-content,
    .regions-content,
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .service-detail-content.reverse {
        direction: ltr;
    }
    
    .service-detail-image,
    .about-image,
    .about-story-image,
    .regions-map {
        max-width: 600px;
        margin: 0 auto 2rem;
    }
}

@media screen and (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: white;
        height: calc(100vh - 70px);
        width: 250px;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        transform: translateX(100%);
        transition: transform 0.5s ease;
        box-shadow: -5px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .nav-links li {
        margin: 1.5rem 0;
    }
    
    .burger {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title,
    .page-header h1,
    .service-detail-text h2,
    .about-story-text h2,
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-links {
        margin-top: 1rem;
        justify-content: center;
    }
    
    .legal-links li:first-child {
        margin-left: 0;
    }
    
    .wizard-options {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
    
    .values-grid,
    .difference-grid {
        grid-template-columns: 1fr;
    }
    
    .wizard-step {
        padding: 2rem 1.5rem;
    }
    
    .wizard-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .wizard-nav button {
        width: 100%;
    }
    
    .result-actions {
        flex-direction: column;
    }
    
    .result-actions .btn {
        width: 100%;
        margin-bottom: 1rem;
    }
}