/* Reset und Grundlagen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #f4a261;
    --accent-color: #e76f51;
    --text-dark: #1a252f;
    --text-light: #5a6c7d;
    --background-light: #f8f9fa;
    --background-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --gradient-primary: linear-gradient(135deg, #2c5aa0 0%, #3d6bb3 100%);
    --gradient-secondary: linear-gradient(135deg, #f4a261 0%, #e76f51 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--background-white);
}

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

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

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

/* Buttons */
.btn-primary, .btn-secondary, .btn-cta {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.btn-cta {
    background: var(--gradient-secondary);
    color: white;
}

.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--background-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-buttons button {
    padding: 8px 20px;
    font-size: 0.9rem;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 999;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.8) 0%, rgba(44, 90, 160, 0.6) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: var(--secondary-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Sections */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 1rem;
}

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

.section-img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

/* Services Section */
.services {
    background: var(--background-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--accent-color);
}

/* Content Sections */
.content-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.content-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Hypnose Section */
.hypnose-services {
    margin-bottom: 60px;
}

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

.hypnose-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.hypnose-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hypnose-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.hypnose-card ul {
    list-style: none;
    margin-top: 15px;
}

.hypnose-card li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.hypnose-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Executive Program */
.executive-program {
    background: var(--gradient-primary);
    color: white;
    padding: 60px 40px;
    border-radius: 20px;
    margin-top: 60px;
}

.program-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: center;
}

.program-text h3 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.program-text h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.program-benefits h5 {
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.program-benefits ul {
    list-style: none;
}

.program-benefits li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.program-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.program-price {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    margin-top: 20px;
    text-align: center;
    font-size: 1.2rem;
}

/* Achtsamkeit Section */
.achtsamkeit {
    background: var(--background-light);
}

.mindfulness-pillars {
    margin-bottom: 60px;
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pillar-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pillar-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.program-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    position: relative;
}

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

.program-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.program-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
    margin-top: 10px;
}

.program-details {
    margin-top: 20px;
}

.program-details ul {
    list-style: none;
    margin-bottom: 15px;
}

.program-details li {
    padding: 3px 0;
    position: relative;
    padding-left: 15px;
    font-size: 0.9rem;
}

.program-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.program-price {
    background: var(--background-light);
    padding: 10px 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    color: var(--primary-color);
}

/* Kurse Section */
.courses-grid {
    display: grid;
    gap: 60px;
}

.course-category h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.course-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.course-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.course-card h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.course-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.duration {
    background: var(--background-light);
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    color: var(--text-light);
}

.price {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.course-schedule {
    margin-top: 60px;
}

.schedule-table {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    font-weight: 600;
}

.schedule-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
    transition: background 0.3s ease;
}

.schedule-row:hover {
    background: var(--background-light);
}

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

/* Ausbildungen Section */
.ausbildungen {
    background: var(--background-light);
}

.training-programs {
    display: grid;
    gap: 40px;
}

.training-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.training-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.training-header h3 {
    color: var(--primary-color);
    margin-bottom: 0;
}

.training-badge {
    background: var(--gradient-secondary);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 500;
}

.training-modules {
    margin: 30px 0;
}

.training-modules h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.training-modules ul {
    list-style: none;
}

.training-modules li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.training-modules li::before {
    content: '📚';
    position: absolute;
    left: 0;
}

.training-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.detail-item {
    background: var(--background-light);
    padding: 15px;
    border-radius: 10px;
}

/* Business Section */
.business-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.business-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

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

.business-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.business-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.business-formats {
    margin-top: 20px;
}

.format-item {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
}

.format-item:last-child {
    border-bottom: none;
}

.business-image {
    text-align: center;
    margin-bottom: 60px;
}

.business-pricing {
    background: var(--background-light);
    padding: 40px;
    border-radius: 20px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.pricing-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.pricing-card h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.pricing-card ul {
    list-style: none;
}

.pricing-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
}

.pricing-card li::before {
    content: '€';
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Über mich Section */
.ueber-mich {
    background: var(--background-light);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-text h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text h4 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-images {
    display: grid;
    gap: 20px;
}

.about-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.practice-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.practice-img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.qualifications {
    margin-bottom: 60px;
}

.qualifications h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

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

.qual-category {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.qual-category h4 {
    color: var(--primary-color);
    margin-bottom: 20px;
    text-align: center;
}

.qual-category ul {
    list-style: none;
}

.qual-category li {
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.qual-category li::before {
    content: '🎓';
    position: absolute;
    left: 0;
}

.approach h3 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

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

.approach-item {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
}

.approach-item h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Kontakt Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 15px;
    line-height: 1.6;
}

.contact-item strong {
    color: var(--text-dark);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.contact-form h3 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.checkbox-group input {
    width: auto;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h4 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-img {
    height: 30px;
    width: auto;
    filter: brightness(0) invert(1);
}

.footer-logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
}

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

.footer-section li {
    padding: 5px 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 20px 0;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-title {
        font-size: 2.5rem;
    }

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

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .content-section {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .program-content {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .schedule-header,
    .schedule-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .schedule-header {
        display: none;
    }

    .schedule-row {
        padding: 15px;
        border: 1px solid var(--border-color);
        margin-bottom: 10px;
        border-radius: 8px;
    }

    .training-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .training-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

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

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 20px;
    }

    section {
        padding: 60px 0;
    }

    .executive-program {
        padding: 40px 20px;
    }

    .contact-form {
        padding: 30px 20px;
    }
}

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

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .navbar,
    .cookie-banner,
    .hero-buttons,
    .contact-form {
        display: none;
    }
    
    .hero {
        height: auto;
        padding: 40px 0;
    }
    
    section {
        padding: 20px 0;
    }
}

/* Neue Button-Styles für Weitere Infos */
.program-action, .business-action {
    margin-top: 20px;
    text-align: center;
}

.program-action .btn-secondary, .business-action .btn-secondary {
    display: inline-block;
    padding: 12px 24px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.program-action .btn-secondary:hover, .business-action .btn-secondary:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(231, 111, 81, 0.3);
}

/* Reiki-spezifische Styles */
.reiki-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 120px 0 80px;
    margin-top: 80px;
}

.reiki-hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reiki-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .reiki-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .reiki-hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}


/* MBSR Course Styles */
.course-card.featured {
    border: 3px solid var(--accent-color);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.course-card.featured::before {
    content: "EMPFOHLEN";
    position: absolute;
    top: 15px;
    right: -30px;
    background: var(--accent-color);
    color: white;
    padding: 5px 40px;
    font-size: 0.8rem;
    font-weight: bold;
    transform: rotate(45deg);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.course-features span {
    background: var(--primary-color);
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Orange background text contrast improvements */
.sound-hero h1,
.sound-hero .hero-subtitle,
.sound-contact h2,
.sound-contact p {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
    color: white;
}

.sound-hero .btn-primary,
.sound-hero .btn-secondary,
.sound-contact .btn-primary,
.sound-contact .btn-secondary {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
}

/* Improve readability on gradient backgrounds */
.hero-title,
.hero-subtitle,
.hero-buttons .btn-primary,
.hero-buttons .btn-secondary {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.hero-subtitle {
    color: rgba(255,255,255,0.95);
}

/* Additional contrast for orange/gold sections */
.trial-offer h3,
.trial-offer p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.4);
}

.contact-info {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

/* Christmas Special Offer Styles */
.program-card.special-offer {
    border: 3px solid #d4af37;
    background: linear-gradient(135deg, #fff 0%, #fffbf0 100%);
    position: relative;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.christmas-offer {
    background: linear-gradient(135deg, #c41e3a, #228b22);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.program-price.special-price {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 20px;
    border-radius: 10px;
    border: 2px solid #d4af37;
}

.old-price {
    display: block;
    text-decoration: line-through;
    color: #6c757d;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.new-price {
    display: block;
    color: #c41e3a;
    font-size: 1.4rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.offer-validity {
    background: #fff3cd;
    color: #856404;
    padding: 5px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid #ffeaa7;
}

/* Improved contrast for blue backgrounds */
.program-card {
    background: white;
    color: #333;
}

.program-badge {
    background: var(--primary-color);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
}

.program-price {
    background: var(--primary-color);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
}

/* Qigong button contrast improvements */
.btn-primary, .btn-secondary {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
    font-weight: 600;
}

/* Blue background text improvements */
.achtsamkeit .program-card h4,
.achtsamkeit .program-card p,
.achtsamkeit .program-card li {
    color: #2c3e50;
    text-shadow: none;
}

.achtsamkeit .program-details ul li {
    color: #495057;
}

/* Qigong therapy section improvements */
.qigong-therapy .therapy-content h3,
.qigong-therapy .therapy-content p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

/* Klangschalen therapy button improvements */
.sound-therapy .btn-primary,
.sound-therapy .btn-secondary,
.sound-massage .btn-primary,
.sound-massage .btn-secondary {
    background: var(--primary-color);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
    border: 2px solid transparent;
}

.sound-therapy .btn-secondary,
.sound-massage .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

/* Schedule table improvements */
.schedule-row {
    background: white;
    color: #333;
}

.schedule-header {
    background: var(--primary-color);
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
}

/* Contact section improvements */
.contact-item strong {
    color: var(--primary-color);
    font-weight: 600;
}

/* Executive Program Special Offer Styles */
.executive-program.special-offer {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    border: 3px solid #d4af37;
    border-radius: 15px;
    padding: 30px;
    margin: 30px 0;
    position: relative;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.executive-program.special-offer .christmas-offer {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #c41e3a, #228b22);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.executive-program.special-offer h3,
.executive-program.special-offer h4,
.executive-program.special-offer h5 {
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
}

.executive-program.special-offer p.improved-contrast {
    color: rgba(255,255,255,0.95);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 500;
    line-height: 1.6;
}

.executive-program.special-offer .program-benefits ul li {
    color: rgba(255,255,255,0.9);
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.executive-program.special-offer .program-price.special-price {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 25px;
    border-radius: 15px;
    border: 3px solid #d4af37;
    margin: 20px 0;
    text-shadow: none;
}

.executive-program.special-offer .price-details {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
    font-style: italic;
}

.executive-program.special-offer .btn-secondary {
    background: #d4af37;
    color: white;
    border: 2px solid #d4af37;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    font-weight: 600;
    padding: 12px 25px;
    transition: all 0.3s ease;
}

.executive-program.special-offer .btn-secondary:hover {
    background: white;
    color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.4);
}

/* Qigong page contrast improvements */
.qigong-contact .improved-contrast-title {
    color: white;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    font-weight: 700;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.qigong-contact .improved-contrast-text {
    color: rgba(255,255,255,0.95);
    text-shadow: 2px 2px 4px rgba(0,0,0,0.7);
    font-weight: 500;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* Additional qigong contact section improvements */
.qigong-contact {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1e3a5f 100%);
}

.qigong-contact .contact-info p {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.6);
}

.qigong-contact .trial-offer h3 {
    text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}

.qigong-contact .trial-offer p {
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}
