/* Reset und Basis-Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}

body {
    font-family: 'Raleway', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f2f9ff;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Allgemeine Section Styles */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #004799;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #CA1385;
    margin: 15px auto 0;
}

/* Loading Indicator */
.loading {
    text-align: center;
    padding: 50px;
    font-size: 1.2rem;
    color: #666;
}

/* Hero Section */
.hero-section {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    display: none;
}

.hero-section .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    color: #004799;
    margin-bottom: 15px;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.6rem;
    color: #CA1385;
    margin-bottom: 30px;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: #CA1385;
    border-radius: 3px;
}

.hero-phone {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    background-color: #fff;
    padding: 18px 25px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-phone:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.phone-icon {
    font-size: 2rem;
    margin-right: 20px;
}

.phone-text {
    display: flex;
    flex-direction: column;
}

.phone-label {
    font-weight: 600;
    color: #333;
    font-size: 1.1rem;
}

.phone-number {
    font-size: 1.4rem;
    font-weight: 700;
    color: #004799;
    letter-spacing: 0.5px;
}

.hero-highlight {
    margin-bottom: 35px;
    padding: 25px;
    background-color: rgba(202, 19, 133, 0.08);
    border-radius: 16px;
    border-left: 4px solid #CA1385;
    box-shadow: 0 5px 15px rgba(202, 19, 133, 0.05);
}

.highlight-text {
    font-size: 1.4rem;
    font-weight: 700;
    color: #CA1385;
    margin-bottom: 12px;
}

.highlight-description {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 35px;
}

.hero-button {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    font-size: 1.05rem;
    letter-spacing: 0.3px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero-button.primary {
    background-color: #004799;
    color: white;
}

.hero-button.primary:hover {
    background-color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 71, 153, 0.3);
}

.hero-button.secondary {
    background-color: white;
    color: #004799;
    border: 2px solid #004799;
}

.hero-button.secondary:hover {
    background-color: #f0f0f0;
    border-color: #003366;
    color: #003366;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.5s ease;
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Features Section */
.features-section {
    padding: 80px 0;
    background: #f2f9ff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon img {
    width: 60px;
    height: 60px;
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #004799;
    margin-bottom: 15px;
}

.feature-text {
    color: #666;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: #f2f9ff;
}

.testimonials-slider {
    display: flex;
    overflow-x: hidden;
    position: relative;
}

.testimonial-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    margin: 0 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 100%;
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    color: #555;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-avatar {
    margin-right: 15px;
}

.author-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.author-name {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.author-title {
    font-size: 0.9rem;
    color: #666;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}

.testimonial-prev,
.testimonial-next {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #004799;
    cursor: pointer;
    padding: 0 15px;
}

.testimonial-dots {
    display: flex;
    margin: 0 20px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.dot.active {
    background-color: #004799;
}

/* Courses Section */
.courses-section {
    padding: 80px 0;
    background: #f2f9ff;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-image {
    height: 180px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 20px;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #004799;
    margin-bottom: 10px;
}

.course-text {
    color: #666;
    margin-bottom: 20px;
}

.course-button {
    display: inline-block;
    padding: 8px 15px;
    background-color: #004799;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.course-button:hover {
    background-color: #003366;
}

.courses-cta {
    text-align: center;
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #CA1385;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #a0106d;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #f2f9ff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    text-align: left;
    margin-bottom: 30px;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: #004799;
    margin-bottom: 20px;
}

.contact-text {
    color: #666;
    margin-bottom: 30px;
}

.contact-details {
    align-items: flex-start;
}

.contact-item {
    justify-content: flex-start;
}

.contact-icon {
    margin-right: 15px;
}

.contact-icon img {
    width: 30px;
    height: 30px;
}

.contact-label {
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
}

.contact-value {
    color: #666;
    margin-bottom: 5px;
}

.contact-note {
    font-size: 0.9rem;
    color: #888;
}

.contact-form-container {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: 'Raleway', sans-serif;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
}

.checkbox-group input {
    margin-right: 10px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: #004799;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.submit-button {
    padding: 12px 20px;
    background-color: #004799;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #003366;
}

/* Footer Section */
.footer-section {
    background-color: #004799;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-column {
    margin-bottom: 20px;
}

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo img {
    max-height: 45px;
    width: auto;
}

.footer-description {
    color: #ccc;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link img {
    width: 24px;
    height: 24px;
    transition: opacity 0.3s ease;
}

.social-link:hover img {
    opacity: 0.8;
}

.footer-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #fff;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.copyright {
    color: #ccc;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-subtitle::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-phone {
        justify-content: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-highlight {
        border-left: none;
        border-top: 4px solid #CA1385;
    }
}

@media (max-width: 576px) {
    .features-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-button {
        width: 100%;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

/* PLZ-Suche Section */
.plz-search-section {
    padding: 80px 0;
}

.plz-search-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.plz-search-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.search-box {
    width: 100%;
}

.search-box-inner {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(202, 19, 133, 0.1);
}

.search-box-header {
    text-align: center;
    margin-bottom: 30px;
}

.plz-logo {
    height: 60px;
    margin-bottom: 20px;
}

.search-box-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #004799;
    line-height: 1.3;
    margin-bottom: 20px;
}

.search-form {
    margin-bottom: 30px;
}

.input-group {
    display: flex;
    gap: 15px;
}

.input-wrapper {
    flex: 1;
    position: relative;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #CA1385;
    font-size: 18px;
}

.plz-input {
    width: 100%;
    padding: 18px 20px 18px 50px;
    border: 2px solid rgba(202, 19, 133, 0.1);
    border-radius: 16px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    background-color: white;
}

.plz-input:focus {
    border-color: #CA1385;
    outline: none;
    box-shadow: 0 4px 15px rgba(202, 19, 133, 0.1);
}

.search-button {
    padding: 18px 35px;
    background: #CA1385;
    color: white;
    border: none;
    border-radius: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(202, 19, 133, 0.2);
}

.search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(202, 19, 133, 0.25);
    background: #004799;
}

.search-button:active {
    transform: translateY(0);
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid rgba(202, 19, 133, 0.1);
}

.contact-info p {
    color: #666;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.phone-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    color: #004799;
    text-decoration: none;
    padding: 15px;
    border-radius: 16px;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    background: rgba(202, 19, 133, 0.03);
}

.phone-number:hover {
    background: rgba(202, 19, 133, 0.06);
    transform: translateY(-2px);
}

.phone-number i {
    font-size: 1.2rem;
    color: #CA1385;
}

.phone-number small {
    font-size: 0.9rem;
    color: #666;
}

.opening-hours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.95rem !important;
    color: #666 !important;
}

.opening-hours i {
    color: #CA1385;
}

.search-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(202, 19, 133, 0.1);
}

.step-item:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 40px rgba(202, 19, 133, 0.1);
    border-color: rgba(202, 19, 133, 0.2);
}

.step-icon {
    min-width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #CA1385;
    border-radius: 16px;
    color: white;
    font-size: 24px;
    box-shadow: 0 8px 20px rgba(202, 19, 133, 0.2);
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #004799;
    margin-bottom: 12px;
}

.step-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #666;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .plz-search-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .search-box {
        order: -1;
    }
    
    .search-box-inner {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .plz-search-section {
        padding: 60px 0;
    }
    
    .search-box-title {
        font-size: 1.6rem;
    }
    
    .search-box-inner {
        padding: 30px 20px;
    }
    
    .input-group {
        flex-direction: column;
    }
    
    .search-button {
        width: 100%;
        justify-content: center;
    }
    
    .step-item {
        padding: 25px;
    }
    
    .step-icon {
        min-width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-item:hover {
        transform: translateY(-5px);
    }
}

/* Leistungen Section */
.leistungen-section {
    padding: 150px 0;
}

.leistungen-header {
    text-align: center;
    margin-bottom: 60px;
}

.leistungen-section .section-title {
    color: #004799;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.leistungen-section .section-subtitle {
    color: #CA1385;
    font-size: 1.5rem;
    font-weight: 600;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.leistung-card {
    background: white;
    border-radius: 20px;
    padding: 40px 25px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 71, 153, 0.1);
    box-shadow: 0 10px 30px rgba(0, 71, 153, 0.05);
}

.leistung-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 71, 153, 0.1);
    border-color: rgba(202, 19, 133, 0.2);
}

.icon-wrapper {
    width: 90px;
    height: 90px;
    background: #fff !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    transition: all 0.3s ease;
    position: relative;
    box-shadow: 0 10px 20px rgba(0, 71, 153, 0.15);
}

.leistung-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #CA1385 0%, #004799 100%);
}

.icon-wrapper i {
    font-size: 35px;
    color: white;
    transition: all 0.3s ease;
}

.leistung-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.leistung-text {
    max-width: 250px;
    margin: 0 auto;
}

.leistung-text h3 {
    color: #004799;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 2.6em;
    display: flex;
    align-items: center;
    justify-content: center;
}

.leistung-text p {
    color: #666;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Anpassungen für Leistungen */
@media (max-width: 1200px) {
    .leistungen-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .leistung-card {
        padding: 30px 20px;
    }
}

@media (max-width: 992px) {
    .leistungen-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .leistungen-section {
        padding: 80px 0;
    }
    
    .leistungen-section .section-title {
        font-size: 2.2rem;
    }
    
    .leistungen-section .section-subtitle {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .leistungen-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .leistungen-section {
        padding: 60px 0;
    }
    
    .icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .icon-wrapper i {
        font-size: 28px;
    }
    
    .leistung-text h3 {
        font-size: 1.2rem;
        min-height: auto;
    }
}

/* Partner Section */
.partner-section {
    padding: 80px 0;
    background: #f2f9ff;
}

.partner-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.partner-slider {
    padding: 20px 0 50px;
}

.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 71, 153, 0.1);
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 71, 153, 0.1);
}

.partner-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Swiper Pagination Anpassungen */
.partner-section .swiper-pagination {
    bottom: 0;
}

.partner-section .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #ddd;
    opacity: 1;
}

.partner-section .swiper-pagination-bullet-active {
    background: #CA1385;
}

/* Responsive Anpassungen */
@media (max-width: 768px) {
    .partner-section {
        padding: 60px 0;
    }
    
    .partner-logo {
        height: 80px;
        padding: 15px;
    }
}

/* Fördervorteile Section */
.fördervorteile-section {
    padding: 150px 0;
    background-color: #f2f9ff;
    position: relative;
    overflow: hidden;
}

.background-circle {
    position: absolute;
    width: 600px;
    height: 600px;
    background: #004799;
    border-radius: 50%;
    opacity: 0.03;
    left: -200px;
    top: 50%;
    transform: translateY(-50%);
}

.fördervorteile-section .container {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.fördervorteile-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.vorteil-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0, 71, 153, 0.05);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid rgba(0, 71, 153, 0.05);
}

.vorteil-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 71, 153, 0.1);
    border-color: rgba(202, 19, 133, 0.1);
}

.vorteil-content {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vorteil-title {
    color: #CA1385;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.vorteil-text {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.vorteil-text:last-child {
    margin-bottom: 0;
}

.vorteil-text strong {
    color: #004799;
    font-weight: 600;
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .fördervorteile-grid {
        gap: 20px;
    }
    
    .vorteil-card {
        padding: 30px 25px;
    }
    
    .vorteil-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 992px) {
    .fördervorteile-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .background-circle {
        width: 400px;
        height: 400px;
        left: -150px;
    }
}

@media (max-width: 576px) {
    .fördervorteile-section {
        padding: 60px 0;
    }
    
    .fördervorteile-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .vorteil-card {
        padding: 25px 20px;
    }
    
    .vorteil-title {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }
    
    .vorteil-text {
        font-size: 1rem;
    }
    
    .background-circle {
        width: 300px;
        height: 300px;
        left: -100px;
    }
}

/* Förderbereiche Section */
.förderbereiche-section {
    padding: 150px 0;
    background: #f2f9ff;
}

.förderbereiche-header {
    text-align: center;
    margin-bottom: 60px;
}

.förderbereiche-section .section-subtitle {
    font-size: 1.4rem;
    color: #666;
    margin-top: 15px;
}

.förderbereiche-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.förderbereich-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 71, 153, 0.05);
    border: 1px solid rgba(0, 71, 153, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.förderbereich-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 71, 153, 0.1);
    border-color: rgba(0, 71, 153, 0.2);
}

.förderbereich-card .icon-wrapper {
    width: 80px;
    height: 80px;
    background: #fff !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.förderbereich-card:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.förderbereich-card .icon-wrapper i {
    font-size: 32px;
    color: white;
    transition: all 0.3s ease;
}

.förderbereich-card:hover .icon-wrapper i {
    transform: scale(1.1);
}

.förderbereich-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.förderbereich-content h3 {
    color: #004799;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.3;
}

.förderbereich-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 25px;
    flex-grow: 1;
}

.förderbereich-button {
    display: inline-block;
    padding: 12px 25px;
    background: #004799;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 71, 153, 0.2);
}

.förderbereich-button:hover {
    background: #003366;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 71, 153, 0.3);
}

/* Responsive Anpassungen */
@media (max-width: 1200px) {
    .förderbereiche-grid {
        gap: 20px;
        padding: 0 20px;
    }
    
    .förderbereich-card {
        padding: 30px 25px;
    }
}

@media (max-width: 992px) {
    .förderbereiche-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .förderbereiche-section {
        padding: 80px 0;
    }
    
    .förderbereiche-section .section-title {
        font-size: 2.2rem;
    }
    
    .förderbereiche-section .section-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .förderbereiche-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .förderbereiche-section {
        padding: 60px 0;
    }
    
    .förderbereich-card {
        padding: 25px 20px;
    }
    
    .förderbereich-content h3 {
        font-size: 1.3rem;
    }
    
    .förderbereich-content p {
        font-size: 1rem;
    }
}

/* LRS Section */
.lrs-section {
    padding: 150px 0;
    background: #f2f9ff;
    position: relative;
    overflow: hidden;
}

.lrs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Linker Bereich: Bild mit Design */
.lrs-image-area {
    position: relative;
    padding: 40px;
}

.lrs-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.magenta-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #CA1385;
    border-radius: 50%;
    opacity: 0.08;
    top: -100px;
    left: -100px;
    filter: blur(20px);
}

.blue-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #004799;
    border-radius: 50%;
    opacity: 0.08;
    bottom: -50px;
    right: -50px;
    filter: blur(20px);
}

.crescent {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #004799;
    border-radius: 50%;
    opacity: 0.05;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    filter: blur(15px);
}

.lrs-image {
    position: relative;
    z-index: 2;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.lrs-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.lrs-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.lrs-image:hover img {
    transform: scale(1.05);
}

.lrs-image-content {
    position: relative;
    z-index: 2;
    margin-top: 30px;
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 71, 153, 0.1);
}

.lrs-image-content h2 {
    color: #CA1385;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.lrs-image-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: #CA1385;
    border-radius: 3px;
}

.lrs-image-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Rechter Bereich: 3 nummerierte Schritte */
.lrs-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.lrs-step {
    display: flex;
    gap: 25px;
    align-items: flex-start;
    background: white;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 71, 153, 0.1);
    transition: all 0.3s ease;
}

.lrs-step:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(202, 19, 133, 0.2);
}

.step-number {
    width: 50px;
    height: 50px;
    background: #004799;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 71, 153, 0.2);
    transition: all 0.3s ease;
}

.lrs-step:hover .step-number {
    transform: scale(1.1);
    background: #CA1385;
}

.step-content h3 {
    color: #CA1385;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.lrs-step:hover .step-content h3 {
    color: #004799;
}

.step-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .lrs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .lrs-image-area {
        padding: 20px;
    }
    
    .magenta-circle {
        width: 300px;
        height: 300px;
    }
    
    .blue-circle {
        width: 200px;
        height: 200px;
    }
    
    .lrs-image-content h2 {
        font-size: 2rem;
    }
    
    .lrs-step:hover {
        transform: translateY(-5px);
    }
}

@media (max-width: 576px) {
    .lrs-section {
        padding: 60px 0;
    }
    
    .lrs-step {
        gap: 15px;
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .step-content h3 {
        font-size: 1.3rem;
    }
    
    .step-content p {
        font-size: 1rem;
    }
}

/* Vertrauens Section */
.vertrauens-section {
    padding: 150px 0;
    background: #f2f9ff;
    position: relative;
    overflow: hidden;
}

.vertrauens-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Linker Bereich: Bild mit Design */
.vertrauens-image-area {
    position: relative;
    padding: 40px;
}

.vertrauens-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vertrauens-image-area .magenta-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: #CA1385;
    border-radius: 50%;
    opacity: 0.08;
    top: -100px;
    left: -100px;
    filter: blur(20px);
}

.vertrauens-image-area .blue-half-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    background: #004799;
    border-radius: 50%;
    opacity: 0.08;
    bottom: -50px;
    right: -50px;
    clip-path: polygon(0 0, 100% 0, 100% 50%, 0 50%);
    filter: blur(20px);
}

.vertrauens-image-area .magenta-quarter-circle {
    position: absolute;
    width: 200px;
    height: 200px;
    background: #CA1385;
    border-radius: 50%;
    opacity: 0.08;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
    filter: blur(15px);
}

.vertrauens-image {
    position: relative;
    z-index: 2;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 1;
    transition: all 0.5s ease;
}

.vertrauens-image:hover {
    transform: scale(1.02) rotate(2deg);
}

.vertrauens-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vertrauens-image:hover img {
    transform: scale(1.1);
}

/* Rechter Bereich: Textblock */
.vertrauens-content {
    max-width: 600px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 71, 153, 0.1);
}

.vertrauens-content h2 {
    color: #004799;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    line-height: 1.2;
    position: relative;
    display: inline-block;
}

.vertrauens-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: #CA1385;
    border-radius: 2px;
}

.vertrauens-content p {
    color: #666;
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 25px;
    font-family: 'Raleway', sans-serif;
}

.vertrauens-content .highlight-text {
    color: #004799;
    font-size: 1.3rem;
    line-height: 1.5;
    margin: 30px 0;
    font-weight: 600;
    padding: 20px;
    background: rgba(0, 71, 153, 0.03);
    border-radius: 12px;
    border-left: 4px solid #004799;
}

.vertrauens-button {
    display: inline-block;
    padding: 16px 35px;
    background: #004799;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 71, 153, 0.2);
    margin-top: 10px;
}

.vertrauens-button:hover {
    background: #003366;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 71, 153, 0.3);
}

/* Responsive Anpassungen */
@media (max-width: 992px) {
    .vertrauens-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .vertrauens-image-area {
        padding: 20px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .vertrauens-content {
        max-width: 100%;
    }
    
    .vertrauens-content h2 {
        font-size: 2.2rem;
        text-align: center;
        display: block;
    }
    
    .vertrauens-content h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 576px) {
    .vertrauens-section {
        padding: 60px 0;
    }
    
    .vertrauens-content {
        padding: 30px 20px;
    }
    
    .vertrauens-content h2 {
        font-size: 1.8rem;
    }
    
    .vertrauens-content p {
        font-size: 1.1rem;
    }
    
    .vertrauens-content .highlight-text {
        font-size: 1.2rem;
        padding: 15px;
    }
    
    .vertrauens-button {
        width: 100%;
        text-align: center;
        padding: 15px 25px;
    }
}

/* Hide CTA button on mobile */
@media (max-width: 767px) {
  .cta-button {
    display: none !important;
  }
}

/* Icon Farben */
.feature-icon i,
.step-icon i,
.icon-wrapper i,
.phone-icon i,
.contact-icon i,
.social-link i,
.dropdown-toggle::after,
.hero-phone-link i,
.online-features i {
    color: #CA1385 !important;
}

/* Überschriften unter Icons */
.feature-title,
.step-content h3,
.leistung-text h3,
.förderbereich-content h3,
.vorteil-title,
.lrs-image-content h2,
.vertrauens-content h2 {
    color: #004799 !important;
}

.icon-wrapper,
.feature-icon,
.förderbereich-card .icon-wrapper {
    background: #fff !important;
}

h1, h2, h3, h4, h5, h6 {
  color: #004799;
}

/* Back-to-Top Button */
#backToTopBtn {
  display: flex;
  position: fixed;
  bottom: 40px;
  right: 40px;
  z-index: 9999;
  background: #CA1385;
  color: #fff;
  border: none;
  outline: none;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  cursor: pointer;
  font-size: 2rem;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, box-shadow 0.3s, transform 0.2s;
  display: flex;
  opacity: 0.95;
  animation: fadeInUpBtn 0.4s;
}
#backToTopBtn:focus {
  outline: 3px solid #004799;
  outline-offset: 2px;
}
#backToTopBtn:hover {
  background: #004799;
  transform: translateY(-6px) scale(1.08);
  box-shadow: 0 12px 36px rgba(0,0,0,0.22);
}
.back-to-top-icon {
  width: 55px;
  height: 55px;
  display: block;
}
@media (max-width: 600px) {
  #backToTopBtn {
    width: 48px;
    height: 48px;
    bottom: 18px;
    right: 18px;
    font-size: 1.8rem;
  }
  .back-to-top-icon {
    width: 42px;
    height: 42px;
  }
}
@keyframes fadeInUpBtn {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 0.95; transform: translateY(0); }
}

.partners-carousel {
    background: #f2f9ff !important;
}

.footer-company .social-link i {
  color: #fff !important;
}

.social-link i {
  color: #fff !important;
}

main img:first-of-type {
  width: 420px;
  height: 280px;
  object-fit: cover;
  border-radius: 30px;
  display: block;
  margin: 0 auto;
}

.but-form-section {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: 60px 0 40px 0;
  background: #f2f9ff;
}

.but-form-container {
  width: 100%;
  max-width: 650px;
  margin: 0 auto;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(30,60,150,0.10);
  padding: 32px 18px;
  display: flex;
  justify-content: center;
}

.but-iframe {
  width: 100%;
  max-width: 600px;
  min-height: 700px;
  height: 850px;
  border: none;
  border-radius: 10px;
  background: transparent;
}

@media (max-width: 900px) {
  .but-form-container {
    max-width: 100%;
    padding: 16px 2px;
  }
  .but-iframe {
    min-height: 600px;
    height: 700px;
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .but-form-section {
    padding: 30px 0 20px 0;
  }
  .but-form-container {
    padding: 6px 0;
  }
  .but-iframe {
    min-height: 480px;
    height: 520px;
  }
}

.lrs-info-box {
  background: #f7faff;
  border-left: 5px solid #CA1385;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(30,60,150,0.07);
  padding: 22px 28px 22px 22px;
  margin: 32px auto 0 auto;
  max-width: 600px;
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 1.13em;
  color: #1e3c96;
}
.lrs-info-box i {
  color: #CA1385;
  font-size: 1.7em;
  flex-shrink: 0;
}
@media (max-width: 700px) {
  .lrs-info-box {
    padding: 16px 10px 16px 10px;
    font-size: 1em;
    max-width: 98%;
    gap: 10px;
  }
  .lrs-info-box i {
    font-size: 1.3em;
  }
} 