/* CSS Document */
/* ========================================
   PETERS-PARTNER PERSONALBERATUNG
   Hauptstylesheet
   ======================================== */

:root {
    --primary-color: #005A58;
    --secondary-color: #F2F2F2;
    --text-dark: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gray-light: #e8e8e8;
    --border-radius: 8px;
    --shadow: 0 4px 12px 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: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

/* ========================================
   HEADER & NAVIGATION
   ======================================== */

header {
    background-color: var(--gray-light);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    max-width: 200px;
    flex-shrink: 0;
    margin-right: 40px;
}

.logo img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: flex-end;
}

.nav-menu li {
    padding: 0;
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 0.95em;
    letter-spacing: 0.3px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    opacity: 0.7;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 12px;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: calc(100% - 24px);
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 5px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* HAMBURGER ANIMATION - ACTIVE STATE */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    nav {
        height: auto;
        flex-wrap: wrap;
        padding: 15px 20px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 80px;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: var(--gray-light);
        gap: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding: 0;
        align-items: flex-start;
        padding-left: 20px;
    }

    .nav-menu.active {
        max-height: 400px;
        padding: 20px 20px;
        padding-left: 20px;
    }

    .nav-menu li {
        width: 100%;
        padding: 10px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    }

    .nav-menu a {
        display: block;
        padding: 0;
    }

    .logo {
        max-width: 180px;
    }
}
/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.testimonial-card {
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.testimonial-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.testimonial-info h3 {
    margin: 0 0 5px 0;
    font-size: 1.1em;
    color: var(--text-dark);
}

.testimonial-position {
    margin: 0;
    font-size: 0.9em;
    color: var(--text-light);
}

.testimonial-stars {
    color: #ffc107;
    font-size: 1.1em;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    line-height: 1.8;
    margin: 0;
    font-size: 0.95em;
}
/*
.testimonial-text::before {
    content: '"';
    font-size: 2em;
    color: var(--primary-color);
    opacity: 0.3;
    line-height: 0;
    margin-right: 5px;
}
*/

.testimonials-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--secondary-color);
    text-align: center;
}

.stat h3 {
    font-size: 2.5em;
    color: var(--primary-color);
    margin: 0 0 10px 0;
}

.stat p {
    margin: 0;
    color: var(--text-light);
    font-weight: 500;
}

/* ========================================
   MAIN CONTENT & CONTAINER
   ======================================== */

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* EINHEITLICHE EINRÜCKUNG FÜR ALLE ABSCHNITTE */
section {
    padding: 0 20px;
    margin-bottom: 30px;
}

/*.section-box {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
    transition: var(--transition);
}*/

.hero-image {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========================================
   TYPOGRAPHY
   ======================================== */

h1 {
    font-size: 2.8em;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h2 {
    font-size: 2em;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

h3 {
    font-size: 1.5em;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 15px;
    color: var(--text-dark);
}

p {
    font-size: 1.05em;
    line-height: 1.6;
    margin-bottom: 15px;
    color: var(--text-light);
}

.accent-text {
    color: var(--primary-color);
    font-weight: 600;
}

/* ========================================
   SECTIONS & BOXES
   ======================================== */

.section-intro {
    text-align: center;
    margin-bottom: 40px;
}

.section-intro h2 {
    margin-top: 0;
}

.section-intro p {
    font-size: 1.2em;
}

.section-box {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    margin-bottom: 40px;
    transition: var(--transition);
    margin-left: -20px;    /* Rückt nach links */
    margin-right: -20px;   /* und rechts aus */
    padding-left: 50px;    /* Aber mit extra Padding innen */
}

.section-box:hover {
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}
/* NEUE ZEILEN HINZUFÜGEN: */
.section-box ul {
    padding-left: 0;
}

.section-box li {
    padding-left: 30px;
}

.section-box h3 {
    margin-top: 0;
    color: var(--text-dark);
}

.section-box h3 .accent-text {
    display: block;
    font-size: 1.1em;
    margin-bottom: 10px;
}

/* ========================================
   LISTS
   ======================================== */

ul {
    list-style: none;
    padding: 0;
}

main li {
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
    line-height: 1.6;
    color: var(--text-light);
}

main li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

a:hover {
    text-decoration: underline;
    opacity: 0.8;
}

/* ========================================
   CTA BUTTON
   ======================================== */

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    cursor: pointer;
    font-size: 1.05em;
    margin-top: 20px;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

/* ========================================
   SLIDESHOW
   ======================================== */

.slideshow-container {
    position: relative;
    max-width: 100%;
    margin: 40px 0;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.slide {
    display: none;
    width: 100%;
    position: relative;
}

.slide.active {
    display: block;
    animation: fadeIn 0.5s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.slide img {
    width: 100%;
    height: auto;
    display: block;
    min-height: 300px;
    object-fit: cover;
}

.slide-caption {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 90, 88, 0.95);
    color: var(--white);
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1em;
}

.slide-counter {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(0, 0, 0, 0.6);
    color: var(--white);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.slide-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    font-size: 1.5em;
    transition: var(--transition);
    border-radius: 4px;
}

.slide-nav:hover {
    background-color: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.slide-prev {
    left: 15px;
}

.slide-next {
    right: 15px;
}

.slide-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    background-color: var(--white);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.dot:hover {
    background-color: #bbb;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* ========================================
   FOOTER - NEUE 4-SPALTEN GESTALTUNG
   CSS Ergänzung - In styles.css einfügen
   ======================================== */

footer {
    background-color: var(--gray-light);
    color: var(--text-dark);
    margin-top: 60px;
    padding: 50px 20px 0;
}

.footer-main-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-column h3 {
    color: var(--text-dark);
    font-size: 1.1em;
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

/* LOGO COLUMN */
.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    max-width: 200px;
    height: auto;
}

.footer-logo img {
    max-width: 100%;
    height: auto;
}

/* CONTACT COLUMN */
.footer-contact-section a,
.footer-contact-section p {
    color: var(--text-dark);
    text-decoration: none;
    margin-bottom: 12px;
    line-height: 1.6;
    font-size: 0.95em;
}

.footer-contact-section a {
    font-weight: 600;
    color: var(--text-dark);
}

.footer-contact-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-contact-section p {
    margin: 0 0 12px 0;
}

/* ADDRESS COLUMN */
.footer-address-section p {
    color: var(--text-dark);
    margin: 0 0 8px 0;
    line-height: 1.8;
    font-size: 0.95em;
}

/* SOCIAL COLUMN */
.footer-social-section {
    display: flex;
    flex-direction: column;
}

.social-links a {
    display: inline-block;
    margin-right: 15px;
    text-decoration: none;
}

.social-links img {
    max-width: 30px;
    height: auto;
}/* FOOTER BOTTOM */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.footer-bottom-content a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9em;
}

.footer-bottom-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-bottom-content span {
    color: var(--text-dark);
}

.footer-copyright {
    color: var(--text-dark);
    font-size: 0.85em;
    margin-bottom: 10px;
}

.footer-credit {
    color: var(--text-dark);
    font-size: 0.8em;
}

.footer-credit a {
    color: var(--text-dark);
    text-decoration: none;
}

.footer-credit a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
    .footer-main-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .footer-main-container {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
        padding-bottom: 20px;
    }

    .footer-bottom-content {
        gap: 15px;
        justify-content: center;
    }

    .footer-bottom-content a {
        font-size: 0.85em;
    }

    .social-links {
        margin-top: 15px;
    }
    .footer-logo {
        max-width: 150px;    /* von 120px auf 150px */
        height: auto;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        max-width: 120px;    /* auf sehr kleinen Geräten */
        height: auto;
    }
}
/* ========================================
   REFERENZ-KUNDEN / PARTNER LOGOS
   ======================================== */

.logos-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    align-items: center;
    justify-items: center;
    margin: 50px 0;
    padding: 40px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: var(--white);
    border-radius: var(--border-radius);
    transition: var(--transition);
    width: 100%;
    height: 140px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.logo-item:hover {
    box-shadow: var(--shadow);
    transform: scale(1.05);
}


#referenzen .logo-item img {
    max-width: 85%;
    max-height: 90px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}

#referenzen .logo-item:hover img {
    opacity: 1;
    filter: brightness(0.95);
}

/* RESPONSIVE TABLET */
@media (max-width: 1024px) {
    .logos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .logo-item {
        height: 130px;
    }

    .logo-item img {
        max-height: 80px;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 768px) {
    .logos-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 30px 20px;
    }

    .logo-item {
        height: 120px;
        padding: 15px;
    }

    .logo-item img {
        max-height: 70px;
    }
}

@media (max-width: 480px) {
    .logos-container {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 20px;
    }

    .logo-item {
        height: 100px;
        padding: 10px;
    }

    .logo-item img {
        max-height: 60px;
    }
}
/* ========================================
   PERSÖNLICHKEITS-DIAGNOSTIK SEITE
   CSS Ergänzung - Anfügen in styles.css
   ======================================== */

.diagnostik-hero {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.diagnostik-hero img {
    width: 100%;
    height: auto;
    display: block;
}
.diagnostik-intro {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.diagnostik-intro img {
    width: 100%;
    height: auto;
    display: block;
}
.diagnostik-intro-text {
    flex: 1;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.benefit-card {
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
}

.benefit-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.benefit-card h3 {
    color: var(--primary-color);
    margin-top: 0;
}

.download-links {
    display: flex;
    gap: 20px;
    margin: 20px 0;
    flex-wrap: wrap;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.download-btn:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.pricing-box {
    background-color: var(--secondary-color);
    border-left: 5px solid var(--primary-color);
    padding: 25px;
    margin: 20px 0;
    border-radius: var(--border-radius);
}

.pricing-title {
    font-size: 1.2em;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 15px;
    line-height: 1.8;
}

.pricing-price {
    font-size: 1.8em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
}

.booking-btn {
    display: inline-block;
    margin-top: 15px;
}

.video-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: 40px 0;
    border-radius: var(--border-radius);
}
.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius);
}

.certification-box {
    background-color: var(--secondary-color);
    padding: 30px;
    border-radius: var(--border-radius);
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin-top: 40px;
}

.certification-image {
    flex-shrink: 0;
    width: 400px;
}

.certification-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
}

.certification-text h2 {
    margin-top: 0;
    color: var(--text-dark);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .diagnostik-intro {
        flex-direction: column;
        gap: 20px;
    }

    .diagnostik-intro img {
        max-width: 100%;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .download-links {
        flex-direction: column;
    }

    .download-btn {
        width: 100%;
        justify-content: center;
    }

    .certification-box {
        flex-direction: column;
    }

    .certification-image {
        width: 100%;
    }
}
/* ========================================
   ANGEBOTE - MODERNE GESTALTUNG
   CSS Ergänzung - In styles.css einfügen
   ======================================== */

#angebote .section-box {
    background-color: transparent;
    border: none;
    padding: 0;
    margin-bottom: 0;
}

#angebote h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2em;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.pricing-box {
    background: linear-gradient(135deg, #fff 0%, #f9f9f9 100%);
    border: 2px solid var(--secondary-color);
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: var(--transition);
    overflow: hidden;
}

.pricing-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #00bfa5);
}

.pricing-box:hover {
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(0, 90, 88, 0.15);
    transform: translateY(-8px);
}

.pricing-box.featured {
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 90, 88, 0.2);
    position: relative;
    z-index: 10;
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-color), #00bfa5);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8em;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.pricing-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--text-dark);
    margin: 15px 0 20px 0;
    line-height: 1.3;
}

.pricing-description {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 0.95em;
}

.pricing-features {
    background-color: rgba(0, 90, 88, 0.03);
    padding: 20px;
    border-radius: 10px;
    margin: 25px 0;
    border-left: 3px solid var(--primary-color);
}

.pricing-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    font-size: 0.9em;
}

.pricing-features li:last-child {
    margin-bottom: 0;
}

.pricing-features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.pricing-price {
    font-size: 2.2em;
    font-weight: 700;
    color: var(--primary-color);
    margin: 25px 0 10px 0;
}

.pricing-currency {
    font-size: 0.5em;
    vertical-align: super;
}

.pricing-period {
    color: var(--text-light);
    font-size: 0.3em;
    margin-bottom: 25px;
    font-weight: 500;
}

.booking-btn {
    display: block;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--primary-color), #00bfa5);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1em;
    font-weight: 700;
    text-decoration: none;
    text-align: center;
    transition: var(--transition);
    margin-top: 20px;
    cursor: pointer;
}

.booking-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 90, 88, 0.3);
}

.booking-btn:active {
    transform: translateY(0);
}

.pricing-box.featured .booking-btn {
    background: linear-gradient(135deg, var(--primary-color), #00bfa5);
    padding: 16px 20px;
    font-size: 1.05em;
}

.pricing-comparison {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--secondary-color);
    color: var(--text-light);
    font-size: 0.9em;
}

.pricing-comparison a {
    color: var(--primary-color);
    font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    #angebote h2 {
        font-size: 1.8em;
        margin-bottom: 30px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .pricing-box {
        padding: 30px 20px;
    }

    .pricing-badge {
        top: -10px;
        right: 15px;
        padding: 5px 12px;
        font-size: 0.75em;
    }

    .pricing-title {
        font-size: 1.15em;
    }

    .pricing-price {
        font-size: 1.8em;
    }

    .booking-btn {
        padding: 12px 20px;
        font-size: 0.95em;
    }
}
/* ========================================
   CONSULTING & COACHING SEITE
   CSS Ergänzung - In styles.css einfügen
   ======================================== */

.coaching-intro {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.coaching-intro img {
    width: 100%;
    height: auto;
    display: block;
}

.coaching-header {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.coaching-contact {
    font-size: 1.1em;
    font-weight: 600;
    color: var(--primary-color);
}

.section-content {
    margin-bottom: 50px;
}

.section-content > img {
    width: 100%;
    max-width: 600px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 25px 0;
    display: block;
}

.section-with-image {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    margin: 30px 0;
}

.section-with-image img {
    flex-shrink: 0;
    width: 100%;
    max-width: 400px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.section-with-image-content {
    flex: 1;
}

.highlight-text {
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05em;
}

.quote-text {
    font-style: italic;
    color: var(--text-light);
    padding: 20px;
    border-left: 4px solid var(--primary-color);
    margin: 20px 0;
    background-color: rgba(0, 90, 88, 0.03);
    border-radius: 4px;
}

.coaching-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.coaching-card {
    background-color: var(--white);
    border: 2px solid var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 25px;
    transition: var(--transition);
}

.coaching-card:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow);
    transform: translateY(-3px);
}

.coaching-card h3 {
    color: var(--primary-color);
    margin-top: 0;
    font-size: 1.15em;
}

.coaching-card p {
    margin-bottom: 0;
    font-size: 0.95em;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .section-with-image {
        flex-direction: column;
        gap: 20px;
    }

    .section-with-image img {
        max-width: 100%;
    }

    .section-content > img {
        max-width: 100%;
    }

    .coaching-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .quote-text {
        padding: 15px;
        margin: 15px 0;
    }
}
/* ========================================
   MINDSET AKADEMIE SEITE
   CSS Ergänzung - In styles.css einfügen
   ======================================== */

.mindset-hero {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.mindset-hero img {
    width: 100%;
    height: auto;
    display: block;
}

.mindset-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin: 50px 0;
}

.mindset-section {
    text-align: center;
}

.mindset-section img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.mindset-section a img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 90, 88, 0.2);
}

.mindset-flyer-link {
    display: inline-block;
    margin: 20px 0;
}

.mindset-flyer-link img {
    cursor: pointer;
    transition: var(--transition);
}

.mindset-flyer-link:hover img {
    transform: scale(1.05);
}

.mindset-contact-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin: 50px 0;
    padding: 40px;
    background-color: var(--secondary-color);
    border-radius: var(--border-radius);
}

.mindset-contact-info {
    flex: 1;
}

.mindset-contact-info h3 {
    margin-top: 0;
    font-size: 1.15em;
    line-height: 1.8;
}

.mindset-contact-info p {
    margin: 0;
    line-height: 1.8;
}

.mindset-contact-info a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.mindset-contact-info a:hover {
    text-decoration: underline;
}

.mindset-contact-cta {
    flex-shrink: 0;
    max-width: 300px;
}

.mindset-contact-cta img {
    width: 100%;
    height: auto;
    cursor: pointer;
    transition: var(--transition);
    border-radius: var(--border-radius);
}

.mindset-contact-cta img:hover {
    transform: scale(1.05);
}
.mindset-contact-info li {
    margin-bottom: 15px;
    padding-left: 0;
    font-size: 1.05em;
    line-height: 1.8;
}

.mindset-contact-info li::before {
    display: none !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .mindset-contact-section {
        flex-direction: column;
        gap: 30px;
        padding: 30px 20px;
    }

    .mindset-contact-cta {
        max-width: 100%;
    }

    .mindset-content {
        gap: 30px;
        margin: 30px 0;
    }
}
/* ========================================
   ÜBER UNS SEITE
   CSS Ergänzung - In styles.css einfügen
   ======================================== */

.team-intro {
    margin-bottom: 60px;
    padding: 30px 20px;
}

.team-intro h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

.team-intro p {
    font-size: 1.05em;
    line-height: 1.8;
    color: var(--text-light);
}

.profile-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
    padding: 50px;
    margin-bottom: 20px;
    border-radius: var(--border-radius);
    background-color: var(--white);
}

.profile-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.profile-left h2 {
    font-size: 1.8em;
    color: var(--text-dark);
    margin: 0 0 10px 0;
    font-weight: 700;
}

.profile-left h3 {
    font-size: 1.1em;
    color: var(--primary-color);
    margin: 0 0 20px 0;
    font-weight: 600;
}

.profile-left strong {
    font-size: 1em;
    color: var(--text-dark);
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}

.profile-left ul {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
}

.profile-left li {
    padding-left: 30px;
    margin-bottom: 10px;
    position: relative;
    font-size: 0.95em;
    color: var(--text-light);
    line-height: 1.6;
}

.profile-left li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2em;
}


.profile-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.profile-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

.kennenlernen-btn {
    width: 100%;
    max-width: 280px;
    margin: 10px 0;
}

.kennenlernen-btn .cta-button {
    display: block;
    text-align: center;
    padding: 14px 20px;
    font-size: 1em;
}

.profile-contact {
    width: 100%;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    border-left: none;
    text-align: center;
}

.profile-contact p {
    margin: 0 0 10px 0;
    font-size: 0.95em;
    line-height: 1.6;
}

.profile-contact p:last-child {
    margin-bottom: 0;
}

.profile-contact a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.profile-contact a:hover {
    text-decoration: underline;
    color: var(--text-dark);
}/* RESPONSIVE */
@media (max-width: 1024px) {
    .profile-section {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 40px;
    }

    .profile-right {
        align-items: center;
    }

    .profile-image {
        max-width: 250px;
    }

    .kennenlernen-btn {
        max-width: 250px;
    }
}

@media (max-width: 768px) {
    .profile-section {
        grid-template-columns: 1fr;
        gap: 25px;
        padding: 25px;
        margin-bottom: 30px;
    }

    .team-intro {
        padding: 20px;
        margin-bottom: 40px;
    }

    .team-intro h1 {
        font-size: 1.8em;
    }

    .profile-left h2 {
        font-size: 1.5em;
    }

    .profile-left h3 {
        font-size: 1em;
    }

    .profile-image {
        max-width: 100%;
    }

    .kennenlernen-btn {
        max-width: 100%;
    }

    .profile-contact {
        padding: 15px;
    }

    .contact-item a {
        font-size: 0.9em;
    }
}
/* CONSULTING & COACHING - RESPONSIVE BILDER */

section#vertriebsconsulting img,
section#changemanagement img,
section#leadership img,
section#businesscoaching img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    margin: 25px 0;
}

.section-with-image {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    flex-wrap: wrap;
}

.section-with-image img {
    width: 100%;
    max-width: 400px;
    flex: 1;
    min-width: 0;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.section-with-image > div {
    flex: 1;
    min-width: 280px;
}

/* RESPONSIVE TABLET */
@media (max-width: 768px) {
    .section-with-image {
        flex-direction: column;
        gap: 20px;
    }

    .section-with-image img {
        max-width: 100%;
        width: 100%;
    }

    .section-with-image > div {
        width: 100%;
    }

    section#vertriebsconsulting img,
    section#changemanagement img,
    section#leadership img,
    section#businesscoaching img {
        margin: 20px 0;
    }
}

/* RESPONSIVE MOBILE */
@media (max-width: 480px) {
    .section-with-image {
        gap: 15px;
    }

    section#vertriebsconsulting img,
    section#changemanagement img,
    section#leadership img,
    section#businesscoaching img {
        margin: 15px 0;
        max-width: 100%;
    }
}