/* Global Styles */
:root {
    --primary-color: #00387B;
    --primary-light: #3d6baa;
    --primary-dark: #002550;
    --secondary-color: #FF5A5F; /* Das ist Rot */
    --success-color: #2ecc71;   /* Das ist "Matchheads Grün" */
    --light-color: #FFFFFF;
    --light-gray: #F5F5F5;
    --medium-gray: #E0E0E0;
    --dark-gray: #757575;
    --text-color: #212121;
    --border-radius: 8px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--light-gray);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: var(--light-color);
    border: none;
    margin: 8px;
    border-radius: var(--border-radius);
    cursor: pointer;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--box-shadow);
}

.btn:hover {
    background-color: var(--primary-light);
    color: var(--light-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #ff767a;
}

.btn-green {
    background-color: var(--success-color);
}

.btn-green:hover {
    background-color: #27ae60; /* Ein etwas dunkleres Grün für den Hover-Effekt */
}

/* Header Styles */
.main-header {
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 28px;  /* Increased from 24px */
    font-weight: 700;
    color: var(--primary-color);
}

.logo img {
    height: 50px;  /* Increased from 40px */
    margin-right: 15px;  /* Increased from 10px */
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    font-weight: 600;
    font-size: 16px;
}

.mobile-menu-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 40px;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 500px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.slide-content h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 32px;
}

.slide-content p {
    color: var(--text-color);
    margin-bottom: 20px;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
}

.slider-nav button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.5);
    margin: 0 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.slider-nav button.active {
    background-color: var(--light-color);
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.cta-buttons .btn {
    min-width: 250px;
    padding: 20px;
    font-size: 18px;
}

.feature-box {
    display: flex;
    align-items: center;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    margin-bottom: 60px;
}

.feature-content {
    flex: 1;
    padding: 40px;
}

.feature-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 28px;
}

.feature-content p {
    margin-bottom: 20px;
}

.feature-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
}

/* Form Styles */
.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-row .form-group {
    flex: 1;
}

/* About Page Styles */
.about-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 32px;
}

.about-image {
    flex: 1;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.team-section {
    margin-top: 60px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    text-align: center;
}

.team-member-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.team-member-info {
    padding: 20px;
}

.team-member-info h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-member-info p {
    color: var(--dark-gray);
    font-style: italic;
}

/* Footer Styles */
.main-footer {
    background-color: var(--primary-color);
    color: var(--light-color);
    padding: 60px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 20px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: var(--light-color);
}

.footer-section ul li a:hover {
    color: var(--medium-gray);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icons a {
    color: var(--light-color);
    font-size: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 20px;
}

.legal-links a {
    color: var(--light-color);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        width: 100%;
        margin-top: 20px;
        display: none;
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 10px 0;
        margin-left: 0;
    }

    .mobile-menu-toggle {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero-slider {
        height: 400px;
    }

    .slide-content {
        left: 20px;
        bottom: 20px;
        max-width: calc(100% - 40px);
    }

    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .feature-box {
        flex-direction: column;
    }

    .feature-image {
        width: 100%;
        min-height: 300px;
    }

    .about-section {
        flex-direction: column;
    }

    .about-image {
        width: 100%;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .logo {
        font-size: 24px;
    }
    .logo img {
        height: 40px;
    }

}

@media (min-width: 992px) {
    .logo {
        font-size: 32px;
    }
    .logo img {
        height: 60px;
    }
}


/* Account Menu Styles */
.account-menu {
    position: relative;
    margin-left: 20px;
}

.account-toggle {
    background: none;
    border: none;
    color: var(--primary-color);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    transition: all 0.3s ease;
}


/* Mobile Styles */
@media (max-width: 768px) {
    .header-content {
        flex-wrap: wrap;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        display: none;
    }
    
    .main-nav.active {
        display: block;
    }
    
    .account-menu {
        margin-left: auto;
    }
    
    }

/* Add this to your existing CSS */
.account-links {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 20px;
}

.account-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.account-links a:hover {
    color: var(--primary-light);
}

.account-links a i {
    font-size: 18px;
}

/* Mobile styles */
@media (max-width: 768px) {
    .account-links {
        margin-left: auto;
        gap: 15px;
    }
    
    .account-links a span {
        display: none;
    }
    
    .account-links a i {
        font-size: 20px;
    }
}

/* Style for all buttons */
.btn {
    padding: 10px 20px;      /* Inner spacing (top/bottom, left/right) */
    margin: 8px;             /* Outer spacing (creates gap between buttons) */
    border: none;            /* Remove default border */
    border-radius: 4px;      /* Slightly rounded corners */
    cursor: pointer;         /* Changes cursor to pointer on hover */
    transition: all 0.3s;    /* Smooth hover effect */
}

/* Danger button (red) */
.btn-danger {
    background: #dc3545;     /* Red color */
    color: white;            /* White text */
}

/* Hover effect */
.btn:hover {
    opacity: 0.9;            /* Slight fade on hover */
    transform: scale(1.02);  /* Tiny zoom effect */
}

/* Account Page Styles */
.page-title {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 2.5rem;
}

/*
* All styles for the account page (account.php) have been moved
* directly into the account.php file in a <style> block.
* This prevents conflicts with global styles.
*/

/* News Section Styles */
/* ...everything from this line down stays the same... */

/* News Section Styles */
.news-section {
    padding: 60px 0;
}

.section-title.text-center {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
    border-bottom: none;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.news-card {
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.news-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.news-card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card-date {
    font-size: 0.85rem;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.news-card-title {
    color: var(--primary-dark);
    font-size: 1.25rem;
    margin-bottom: 15px;
    flex-grow: 1;
}

.news-card-link {
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    margin-top: auto;
    align-self: flex-start;
}

.news-card-link:hover {
    color: var(--primary-dark);
}

/* ============================================== */
/* === STILE FÜR UNTERNEHMEN-SEITE (NEU) === */
/* ============================================== */

/* Prozess-Schritte (matches student steps-section) */
.steps-section {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.steps-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
    font-size: 28px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    counter-reset: step-counter;
}

.step-item {
    position: relative;
    padding: 25px;
    background-color: white;
    border-radius: var(--border-radius);
    border: 2px solid var(--primary-color);
}

.step-number {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 20px;
}

.step-icon {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.step-content h3 {
    color: var(--primary-dark);
    margin-bottom: 10px;
    font-size: 20px;
}

/* Statistik-Sektion */
.statistics-section {
    display: flex;
    justify-content: space-around;
    text-align: center;
    padding: 40px 20px;
    background-color: var(--light-color);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.statistic-item {
    flex: 1;
    padding: 20px 10px;
}

.pictogram {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1;
}

.statistic-item h3 {
    font-size: 32px;
    color: var(--primary-dark);
    margin-bottom: 5px;
}

/* Vorteile-Sektion */
.advantages-section {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.advantages-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    font-size: 28px;
}

.advantages-section ul {
    list-style: none;
    padding-left: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.advantages-section ul li {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    border-left: 5px solid var(--primary-color);
    font-size: 16px;
    line-height: 1.6;
}

/* Pricing Section - ÜBERARBEITETES DESIGN */
.pricing-section {
    background-color: var(--light-color);
    padding: 60px 40px; /* Mehr vertikaler Abstand */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.pricing-section h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 50px; /* Mehr Abstand */
    font-size: 32px; /* Größere Überschrift */
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch; 
}

/* Standard-Preiskarte (Talent Connect) */
.pricing-card {
    background-color: var(--light-color); /* Heller Hintergrund */
    border: 1px solid var(--medium-gray);
    border-radius: var(--border-radius);
    padding: 35px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.pricing-card h3 {
    color: var(--primary-color);
    font-size: 26px; /* Größer */
    margin-bottom: 10px;
}

.tagline {
    font-style: italic;
    color: var(--dark-gray);
    margin-bottom: 25px;
    min-height: 40px; 
}

.price-tag {
    font-size: 2.8rem; /* Größer */
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 5px;
    line-height: 1.2;
}
.price-tag span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--dark-gray);
}

.pricing-card h4 {
    color: var(--primary-dark);
    font-size: 1.2rem;
    margin-top: 30px;
    margin-bottom: 15px;
    border-bottom: 2px solid var(--medium-gray);
    padding-bottom: 8px;
}

.features-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    /* flex-grow: 1; ENTFERNT - DAS HAT DIE LÜCKE VERURSACHT */
}

.features-list li {
    position: relative;
    padding-left: 30px; /* Mehr Platz für das Häkchen */
    margin-bottom: 12px;
    font-size: 1rem;
    line-height: 1.5;
}

.features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--success-color); /* GRÜN für Häkchen */
    font-weight: bold;
    font-size: 1.3rem;
}

.extras-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 20px;
    /* flex-grow: 1; ENTFERNT - DAS HAT DIE LÜCKE VERURSACHT */
}
.extras-list li {
    font-size: 0.95rem;
    color: #333;
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
}
.extras-list li::before {
    content: '+';
    position: absolute;
    left: 4px;
    top: 0;
    color: var(--success-color); /* GRÜN für Plus */
    font-weight: bold;
    font-size: 1.2rem;
}

.price-tiers {
    list-style: none;
    padding: 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    border: 1px solid var(--medium-gray);
}
.price-tiers li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed var(--medium-gray);
}
.price-tiers li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.price-tiers li:first-child {
    padding-top: 0;
}
.price-tiers span {
    font-weight: 600;
    color: var(--primary-dark);
}

.slogan {
    font-weight: 600; /* Etwas leichter als 700, aber stärker als normal */
    color: var(--primary-dark);
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--medium-gray);
    margin-bottom: 25px; /* Platz für den Button */
    
    /* FINALE HERVORHEBUNG */
    font-size: 1.15rem; /* Größer als der Fließtext */
    line-height: 1.5;
    font-family: 'Helvetica', 'Arial', sans-serif; /* Klare Schriftart */
    font-style: italic; /* Kursiv wie gewünscht */
}

/* Der neue Button-Stil in den Karten */
.pricing-card .btn {
    margin-top: auto; /* Schiebt den Button nach unten */
    background-color: var(--primary-color);
    color: var(--light-color);
    text-align: center;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.pricing-card .btn:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


/* Hervorgehobene Preiskarte (Partner Alliance) */
.pricing-card.featured {
    background-color: var(--primary-color); /* BLAUER Hintergrund */
    border-color: var(--primary-color);
    transform: scale(1.03);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Alle Textfarben auf der blauen Karte anpassen */
.pricing-card.featured h3,
.pricing-card.featured .tagline,
.pricing-card.featured .price-tag,
.pricing-card.featured .price-tag span,
.pricing-card.featured h4,
.pricing-card.featured .slogan,
.pricing-card.featured .features-list li,
.pricing-card.featured .extras-list li {
    color: var(--light-color); /* Weißer Text */
}

/* Hellerer Text für Details auf blauer Karte */
.pricing-card.featured .tagline,
.pricing-card.featured .price-tag span,
.pricing-card.featured .extras-list li {
    color: var(--medium-gray);
}

.pricing-card.featured h4 {
    border-bottom-color: var(--primary-light); /* Hellblaue Trennlinie */
}

/* Häkchen bleiben grün (guter Kontrast zu Blau) */
.pricing-card.featured .features-list li::before,
.pricing-card.featured .extras-list li::before {
    color: var(--success-color);
}

/* Preis-Staffelung auf blauer Karte anpassen */
.pricing-card.featured .price-tiers {
    background: var(--primary-dark); /* Dunkelblauer Kasten */
    border: none;
}
.pricing-card.featured .price-tiers li {
    border-bottom-color: var(--primary-light);
}
.pricing-card.featured .price-tiers span {
    color: var(--light-color); /* Weißer Text */
}

.pricing-card.featured .slogan {
    border-top-color: var(--primary-light);
    color: var(--light-color); /* Stellt sicher, dass der Slogan auf blauem Grund weiß ist */
    font-style: italic; /* Stellt sicher, dass beide Slogans kursiv sind */
    font-family: 'Helvetica', 'Arial', sans-serif; /* Einheitliche Schriftart */
    font-size: 1.15rem; /* Einheitliche Größe */
}

/* Button-Anpassung für die blaue, hervorgehobene Karte */
.pricing-card.featured .btn {
    background-color: var(--secondary-color); /* ROTER Button */
    color: var(--light-color);
}

.pricing-card.featured .btn:hover {
    background-color: #ff767a; /* Helleres Rot beim Hover */
    transform: translateY(-2px);
}


/* Kontakt-Sektion */
.contact-person-section {
    background-color: var(--light-color); /* Matches other sections */
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
    text-align: center; /* Center align content */
}

.contact-person-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
    font-size: 28px;
}

.contact-person-content {
    display: flex;
    flex-direction: column; /* Stack image and details vertically on small screens */
    align-items: center;
    gap: 30px;
}

.contact-person-image img {
    width: 180px; /* Adjust as needed */
    height: 180px; /* Adjust as needed */
    border-radius: 50%; /* Circular image */
    object-fit: cover; /* Ensure image covers the area */
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.contact-person-details {
    text-align: center; /* Center text within details */
}

.contact-person-details h3 {
    color: var(--primary-dark);
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-person-details p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 5px;
    color: #555; /* Slightly lighter text color for details */
}

.contact-person-details p i {
    margin-right: 8px;
    color: var(--primary-color); /* Icon color */
}

/* CTA Container */
.cta-container {
    text-align: center;
    background-color: var(--light-color);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 40px;
}

.cta-container p {
    font-size: 18px;
    margin-bottom: 20px;
}


/* Responsive Anpassungen für diese Sektionen */
@media (max-width: 768px) {
    .statistics-section {
        flex-direction: column;
        gap: 30px;
    }
    .steps-section {
        padding: 30px 20px;
    }
    .steps-grid {
        gap: 40px; /* Increased gap for better spacing */
    }
    .step-item {
        margin-top: 20px; /* Ensure number doesn't overlap too much */
    }
    .advantages-section ul {
        grid-template-columns: 1fr;
    }
    .contact-person-content {
        /* Already column, so this is fine */
    }
    
    .pricing-grid {
        grid-template-columns: 1fr; /* Stapelt die Karten auf Mobilgeräten */
    }
    .pricing-card.featured {
        transform: scale(1); /* Deaktiviert den Zoom auf Mobilgeräten */
        order: -1; /* Zeigt die Premium-Karte oben an */
    }
    .tagline {
        min-height: auto; /* Höhe zurücksetzen */
    }
    .pricing-section {
        padding: 40px 20px; /* Weniger horizontales Padding */
    }
}

@media (min-width: 769px) { /* Adjustments for larger screens */
    .contact-person-content {
        flex-direction: row; /* Side-by-side layout */
        text-align: left; /* Align text to left for details */
    }
    .contact-person-details {
        text-align: left; /* Align text to left for details */
    }
}

/* Partners Section Styles - Updated to match Site Design */
.partners-section {
    padding: 50px 40px;
    background-color: var(--light-color);
    margin-bottom: 60px; /* Konsistenter Abstand zu anderen Sektionen */
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow); /* MatchHeads Standard-Schatten */
    text-align: center;
}

.partners-section h2 {
    color: var(--primary-color);
    font-size: 28px;
    margin-bottom: 40px;
    font-weight: 700;
}

.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px 60px; /* Vertikaler Abstand 40px, Horizontaler 60px */
}

.partner-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px; /* Klickbereich etwas vergrößern */
    transition: transform 0.3s ease;
}

.partner-logo img {
    max-width: 170px; 
    max-height: 75px; 
    width: auto;
    height: auto;
    object-fit: contain;
    /* MatchHeads Stil: Dezent im Normalzustand, Farbig bei Fokus */
    filter: grayscale(100%) opacity(0.6); 
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275); /* Weicherer, hochwertigerer Übergang */
}

.partner-logo:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.08); /* Sanfter Zoom */
}

/* Responsiv: Abstände auf Mobile verringern */
@media (max-width: 768px) {
    .partners-section {
        padding: 40px 20px;
    }
    .partners-grid {
        gap: 30px;
    }
    .partner-logo img {
        max-width: 140px;
    }
}