/* Index Page Styles */
:root {
    --primary-color: #1e3c96;
    --primary-dark: #152a6a;
    --secondary-color: #CA1385;
    --text-dark: #2d3748;
    --text-light: #4a5568;
    --white: #f2f9ff;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --focus-ring: 0 0 0 3px rgba(30, 60, 150, 0.4);
}

/* Hero Section Styles */
.hero-section {
    position: relative;
    padding: 150px 0 80px 0;
    overflow: hidden;
    background: var(--white);
}

.hero-background {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('../images/index-hero.png') no-repeat center right;
    background-size: cover;
}

.hero-content {
    width: 55%;
    padding-right: 80px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 0.8s ease-out;
}

.main-content-group {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.main-content-group:hover {
    transform: translateY(-5px);
}

.main-title {
    font-size: 4em;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.main-title .line {
    display: block;
}

.main-title .top-line {
    white-space: nowrap;
}

.main-title span {
    display: block;
}

.subtitle {
    font-size: 1.2em;
    color: var(--primary-dark);
    margin-bottom: 20px;
    line-height: 1.4;
    font-style: italic;
    font-weight: 500;
}

.description {
    color: var(--text-dark);
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 600px;
}

.nav-section {
    margin-top: 30px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    overflow: hidden;
}

.nav-tabs {
    display: flex;
    background-color: #f8f9fb;
    border-bottom: 1px solid #e0e0e0;
}

.nav-tab {
    all: unset;
    cursor: pointer;
    padding: 15px 25px;
    font-size: 1em;
    font-weight: 600;
    color: var(--text-light);
    background-color: transparent;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    text-align: center;
    flex: 1;
}

.nav-tab.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    background: transparent;
}

.nav-tab:not(.active):hover {
    color: var(--primary-color);
    background-color: rgba(30, 60, 150, 0.05);
}

.search-form {
    background: none;
    box-shadow: none;
    border-radius: 0;
    padding: 30px;
}

.search-form h3 {
    font-size: 1.3em;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
    text-align: center;
}

.search-input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 0.9em;
    background-color: #f8f9fa;
}

.hero-call-info {
    margin-top: 35px;
    text-align: center;
}

.hero-call-info p {
    margin-bottom: 5px;
    font-size: 0.9em;
    color: var(--text-light);
}

.hero-phone-link {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 3px;
}

.hero-phone-link i {
    font-size: 0.9em;
}

.hero-call-info span {
    font-size: 0.8em;
    color: var(--text-light);
}

.online-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.online-features li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1em;
    color: var(--text-dark);
}

.online-features i {
    color: var(--primary-color);
    margin-right: 12px;
    font-size: 1.3em;
}

.online-call-info {
    text-align: center;
    margin-bottom: 25px;
}

.online-call-info p {
    margin-bottom: 8px;
    color: var(--primary-color);
    font-size: 0.95em;
    font-weight: 600;
}

.online-call-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    gap: 8px;
}

.online-call-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.test-button {
    display: block;
    width: 100%;
    padding: 14px;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.05em;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
}

.test-button:hover {
    background: rgba(30, 60, 150, 0.05);
    color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.tab-content {
    display: none;
    padding: 30px;
    animation: fadeIn 0.5s ease-in-out;
}

.tab-content.active {
    display: block;
}

#search-results {
    min-height: 10px;
    margin-top: 5px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Leistungen Section Styles */
.leistungen-section {
    padding: 80px 0;
    background-color: #f2f9ff;
}

.leistungen-header {
    text-align: center;
    margin-bottom: 50px;
}

.leistungen-section .section-title {
    font-size: 2.5em;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.leistungen-section .section-subtitle {
    font-size: 1.2em;
    color: var(--text-light);
    font-style: italic;
}

.leistungen-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.leistung-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-align: center;
    transition: transform 0.3s ease;
}

.leistung-card:hover {
    transform: translateY(-5px);
}

.leistung-card .icon-wrapper {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.leistung-card .icon-wrapper i {
    font-size: 24px;
    color: white;
}

.leistung-text h3 {
    font-size: 1.3em;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: 600;
}

.leistung-text p {
    color: var(--text-light);
    font-size: 1em;
    line-height: 1.4;
}

/* Partners Section Styles */
.partners-section {
    padding: 4rem 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    display: none;
}

.partners-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    position: relative;
}

.partners-section .section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #CA1385 100%);
}

.partners-carousel {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
    width: 100%;
}


.partners-carousel::before,
.partners-carousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 200px;
    z-index: 2;
    pointer-events: none;
}

.partners-carousel::before {
    left: 0;
    background: linear-gradient(to right, #f2f9ff, transparent);
}

.partners-carousel::after {
    right: 0;
    background: linear-gradient(to left, #f2f9ff, transparent);
}

.partners-track {
    display: flex;
    width: 200%;
    animation: scroll 30s linear infinite;
}

.partner-group {
    display: flex;
    flex: 0 0 50%;
    justify-content: space-around;
}

.partners-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 0 1rem;
}

.partner-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    min-width: 200px;
    transition: transform 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-5px);
}

.partner-logo {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Förderbereiche Section Styles */
.förderbereiche-section {
    background: #f2f9ff;
    padding: 80px 0;
}

.förderbereiche-header {
    text-align: center;
    margin-bottom: 50px;
}

.förderbereiche-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.förderbereich-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.förderbereich-card:hover {
    transform: translateY(-5px);
}

.förderbereich-card .icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.förderbereich-card .icon-wrapper i {
    font-size: 24px;
    color: white;
}

.förderbereich-content h3 {
    font-size: 1.3em;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.förderbereich-content p {
    color: var(--text-light);
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

.förderbereich-button {
    display: inline-block;
    padding: 10px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.förderbereich-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* Fördervorteile Section Styles */
.fördervorteile-section {
    background: #f7faff;
    padding: 100px 0 80px 0;
}

.fördervorteile-section .section-title {
    font-size: 2.6rem;
    font-weight: 800;
    color: #1e3c96;
    margin-bottom: 60px;
    letter-spacing: -1px;
    text-align: center;
}

.fördervorteile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.vorteil-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30,60,150,0.08);
    padding: 38px 28px 32px 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 320px;
    transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
    border: 1.5px solid #f2f2f2;
    justify-content: flex-start;
}

.vorteil-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 16px 40px rgba(202,19,133,0.13);
    border-color: #CA1385;
}

.vorteil-icon {
    font-size: 2.5rem;
    color: #CA1385;
    margin-bottom: 18px;
    margin-top: 8px;
}

.vorteil-title {
    font-size: 1.25rem;
    color: #1e3c96;
    font-weight: 700;
    margin-bottom: 16px;
    text-align: center;
}

.vorteil-text {
    color: #4a5568;
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 10px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* LRS Section Styles */
.lrs-section {
    background: #f2f9ff;
    position: relative;
    padding: 4rem 0;
}

.lrs-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.lrs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.lrs-image-area {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.lrs-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.lrs-magenta-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #f2f9ff;
    opacity: 0.8;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.lrs-blue-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #f2f9ff;
    opacity: 0.9;
    top: -10px;
    left: 50%;
    transform: translateX(-45%);
}

.lrs-crescent {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #f2f9ff;
    opacity: 0.95;
    top: -30px;
    left: 50%;
    transform: translateX(-40%);
}

.lrs-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.lrs-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.lrs-image-content {
    margin-top: 2rem;
    text-align: center;
}

.lrs-image-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.lrs-image-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.lrs-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.lrs-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.lrs-step-number {
    background: #CA1385;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: bold;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(202,19,133,0.10);
}

.lrs-step-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.lrs-step-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Vertrauens Section Styles */
.vertrauens-section {
    background: #f2f9ff;
    position: relative;
    padding: 4rem 0;
}

.vertrauens-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vertrauens-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vertrauens-image-area {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.vertrauens-background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.vertrauens-magenta-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #f2f9ff;
    opacity: 0.9;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.vertrauens-blue-half-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: #f2f9ff;
    opacity: 0.95;
    top: -10px;
    left: 50%;
    transform: translateX(-45%);
}

.vertrauens-magenta-quarter-circle {
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: #f2f9ff;
    opacity: 0.85;
    top: -30px;
    left: 50%;
    transform: translateX(-40%);
}

.vertrauens-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto;
    background: white;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.vertrauens-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
}

.vertrauens-content {
    padding-right: 2rem;
}

.vertrauens-content h2 {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.vertrauens-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.vertrauens-highlight-text {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin: 1.5rem 0;
}

.vertrauens-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #CA1385);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    margin-top: 1rem;
    transition: transform 0.3s ease;
}

.vertrauens-button:hover {
    transform: translateY(-2px);
}

/* Auszeichnungen Section Styles */
.auszeichnungen-section {
    padding: 150px 0;
    background: #f2f9ff;
    position: relative;
    overflow: hidden;
}

.auszeichnungen-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.auszeichnungen-title {
    color: var(--primary-color);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 40px;
    line-height: 1.2;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.auszeichnungen-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: #CA1385;
    border-radius: 3px;
}

.auszeichnungen-text {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.auszeichnungen-text em {
    font-style: italic;
    color: var(--primary-color);
    font-weight: 500;
}

.auszeichnungen-danke-text {
    color: #CA1385;
    font-size: 1.4rem;
    margin: 40px 0;
    font-weight: 600;
    text-align: center;
}

.auszeichnungen-publikationen-title {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 600;
    text-align: left;
    padding-left: 20px;
    position: relative;
}

.auszeichnungen-publikationen-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #CA1385;
    border-radius: 2px;
}

.auszeichnungen-siegel-container {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.auszeichnungen-siegel-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    min-height: 150px;
}

.auszeichnungen-siegel-wrapper:hover {
    transform: translateY(-5px);
}

.auszeichnungen-siegel-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    max-height: 150px;
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 120px 0;
    background: #f2f9ff;
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 71, 153, 0.1), transparent);
}

.modern-testimonials-header {
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-title {
    color: #CA1385;
    font-size: 2.3rem;
    font-weight: 800;
    margin-bottom: 0;
    letter-spacing: -1px;
}

.modern-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 38px;
    justify-content: center;
    align-items: stretch;
}

.modern-testimonial-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30,60,150,0.10);
    padding: 38px 32px 32px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow 0.25s, transform 0.25s;
    min-height: 340px;
    text-align: center;
}

.modern-testimonial-card:hover {
    box-shadow: 0 16px 40px rgba(202,19,133,0.13);
    transform: translateY(-8px) scale(1.03);
}

.testimonial-author-img {
    font-size: 2.8rem;
    color: #CA1385;
    margin-bottom: 8px;
}

.testimonial-author {
    font-size: 1.08em;
    font-weight: 700;
    color: #1e3c96;
    margin-bottom: 10px;
    text-align: center;
    width: 100%;
    display: block;
}

.modern-testimonial-quote {
    background: #f7faff;
    border-radius: 12px;
    padding: 18px 18px 14px 18px;
    color: #CA1385;
    font-size: 1.18em;
    font-weight: 600;
    margin-bottom: 18px;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    justify-content: center;
}

.modern-testimonial-quote i {
    font-size: 1.3em;
    margin-right: 6px;
    color: #CA1385;
}

.testimonial-text {
    color: #4a5568;
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 22px;
}

.modern-testimonial-rating {
    text-align: center;
    margin-top: auto;
}

.modern-testimonial-rating .testimonial-star {
    color: #FFD600;
    font-size: 1.4rem;
    margin: 0 3px;
    text-shadow: 0 2px 4px rgba(202,19,133,0.08);
    opacity: 0.95;
    transition: transform 0.3s ease;
}

.modern-testimonial-rating .testimonial-star:hover {
    transform: scale(1.18);
}

/* Contact Section Styles */
.contact-section {
    padding: 80px 0;
    background: #f2f9ff;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    align-items: start;
}

.contact-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.contact-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--secondary-color, var(--primary-color));
    border-radius: 2px;
}

.contact-subtitle {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.contact-text {
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-info {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30,60,150,0.08);
    padding: 40px 35px 35px 35px;
    margin-bottom: 30px;
    max-width: 480px;
}

.contact-details {
    gap: 36px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 22px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f2f2f2;
}

.contact-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-icon {
    width: 54px;
    height: 54px;
    background: #f8e6f1;
    color: #CA1385;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(202,19,133,0.08);
}

.contact-icon i {
    font-size: 2rem;
    color: #CA1385;
}

.contact-label {
    font-size: 1.08em;
    font-weight: 700;
    margin-bottom: 2px;
}

.contact-value {
    font-size: 1.08em;
    color: #1e3c96;
    font-weight: 500;
    margin-bottom: 2px;
}

.contact-note {
    font-size: 0.95em;
    color: #888;
}

.contact-form-container {
    background-color: var(--white);
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 0.9em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid var(--gray-300);
    border-radius: 8px;
    font-family: inherit;
    font-size: 1em;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: var(--focus-ring);
    background-color: var(--white);
}

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%234a5568' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px 16px;
}

.checkbox-group {
    display: flex;
    flex-direction: row;
    align-items: start;
    gap: 12px;
    margin-top: 5px;
}

.checkbox-group input {
    margin-right: 0;
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 3px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.85em;
    color: var(--text-light);
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--primary-dark);
}

.submit-button {
    padding: 16px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05em;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-top: 10px;
}

.submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
}

.embedded-form-wrapper {
    width: 100%;
    height: 900px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.embedded-form {
    width: 100%;
    height: 100%;
    min-height: 900px;
    border: none;
    background: transparent;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .main-title {
        font-size: 3.5em;
    }
    
    .auszeichnungen-siegel-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .hero-content {
        width: 60%;
    }

    .hero-background {
        width: 40%;
    }

    .main-title {
        font-size: 3em;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .contact-form-container {
        max-width: 100%;
        margin: 0;
        padding: 40px;
    }

    .auszeichnungen-title {
        font-size: 2.5rem;
    }
    
    .auszeichnungen-siegel-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-header h2 {
        font-size: 2.4rem;
    }
    
    .testimonial-quote {
        font-size: 1.3rem;
    }
    
    .testimonials-grid {
        gap: 30px;
    }

    .lrs-grid,
    .vertrauens-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .embedded-form-wrapper {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 120px 0 60px 0;
    }

    .hero-content {
        width: 100%;
        padding-right: 0;
        margin-bottom: 30px;
        background-color: rgba(255, 255, 255, 0.8);
        border-radius: 16px;
        padding: 25px;
    }

    .hero-background {
        display: none;
    }

    .main-content-group {
        padding: 20px;
    }

    .main-title {
        font-size: 2.5em;
    }

    .subtitle {
        font-size: 1em;
    }

    .description {
        font-size: 0.9em;
    }

    .nav-tabs {
        flex-wrap: wrap;
    }

    .nav-tab {
        padding: 8px 15px;
        font-size: 0.9em;
        flex: 1 1 auto;
        text-align: center;
    }

    .search-form {
        padding: 20px;
    }

    .partner-logo {
        max-height: 60px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .testimonial-card {
        padding: 35px;
    }
    
    .testimonials-section {
        padding: 80px 0;
    }

    .auszeichnungen-section {
        padding: 80px 0;
    }

    .auszeichnungen-title {
        font-size: 2.2rem;
    }

    .auszeichnungen-text {
        font-size: 1.1rem;
    }

    .auszeichnungen-danke-text {
        font-size: 1.3rem;
    }

    .auszeichnungen-siegel-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-section {
        padding: 60px 0;
    }

    .contact-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .contact-container {
        gap: 40px;
    }

    .contact-form-container {
        padding: 30px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    
    .submit-button {
        width: 100%;
        padding: 15px;
    }

    .embedded-form-wrapper {
        height: 450px;
    }

    .partners-track {
        animation-duration: 20s;
    }
    
    .partner-item {
        min-width: 150px;
        height: 100px;
    }
    
    .partners-wrapper {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .main-title {
        font-size: 2em;
    }

    .hero-background {
        height: 200px;
    }

    .container {
        padding: 0 15px;
    }

    .testimonials-section {
        padding: 60px 0;
    }
    
    .testimonials-header h2 {
        font-size: 2rem;
    }
    
    .testimonial-quote {
        font-size: 1.2rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-author {
        font-size: 1rem;
    }
    
    .testimonial-star {
        font-size: 1.1rem;
    }

    .auszeichnungen-section {
        padding: 60px 0;
    }

    .auszeichnungen-title {
        font-size: 2rem;
    }

    .auszeichnungen-text {
        font-size: 1rem;
    }

    .auszeichnungen-danke-text {
        font-size: 1.2rem;
    }

    .auszeichnungen-siegel-container {
        grid-template-columns: 1fr;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-section .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .contact-container {
        gap: 30px;
    }

    .contact-form-container {
        padding: 30px 15px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 15px;
        font-size: 0.95em;
    }
    
    .submit-button {
        width: 100%;
        padding: 15px;
    }

    .embedded-form-wrapper {
        height: 400px;
    }
}

@media (max-width: 480px) {
    .auszeichnungen-siegel-container {
        grid-template-columns: 1fr;
    }
}

.contact-info {
    text-align: left;
}

.contact-details {
    align-items: flex-start;
}

.contact-item {
    justify-content: flex-start;
}

.lrs-modern-grid {
    display: flex;
    gap: 48px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
}

.lrs-modern-image-card {
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 8px 32px rgba(30,60,150,0.10);
    padding: 36px 32px 28px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 400px;
    min-width: 320px;
    margin-bottom: 24px;
    flex: 1 1 380px;
    min-height: 440px;
    justify-content: flex-start;
}

.lrs-modern-image {
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 18px;
    box-shadow: 0 4px 18px rgba(202,19,133,0.10);
}

.lrs-modern-image-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1e3c96;
    margin-bottom: 10px;
    text-align: center;
}

.lrs-modern-image-desc {
    color: #4a5568;
    font-size: 1.05em;
    text-align: center;
}

.lrs-modern-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
    justify-content: center;
    flex: 2 1 600px;
}

.lrs-modern-step-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 8px 32px rgba(30,60,150,0.08);
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 30px;
    min-width: 300px;
    min-height: 120px;
    transition: box-shadow 0.2s, transform 0.2s;
    flex: 1 1 0;
}

.lrs-modern-step-card:hover {
    box-shadow: 0 16px 40px rgba(202,19,133,0.13);
    transform: translateY(-4px) scale(1.03);
}

.lrs-modern-step-icon {
    background: #CA1385;
    color: #fff;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 2px 8px rgba(202,19,133,0.10);
    flex-shrink: 0;
}

.lrs-modern-step-title {
    font-size: 1.18rem;
    font-weight: 700;
    color: #1e3c96;
    margin-bottom: 6px;
}

.lrs-modern-step-desc {
    color: #4a5568;
    font-size: 1.02em;
}

@media (max-width: 900px) {
    .lrs-modern-grid {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }
    .lrs-modern-image-card, .lrs-modern-steps {
        max-width: 100%;
        min-width: 0;
        min-height: unset;
    }
    .lrs-modern-step-card {
        min-width: 0;
        min-height: 100px;
    }
}

.modern-vertrauen {
    text-align: center;
    max-width: 540px;
    margin: 0 auto;
}

.vertrauens-title {
    font-size: 2.4rem;
    font-weight: 800;
    color: #CA1385;
    margin-bottom: 18px;
    letter-spacing: -1px;
    line-height: 1.2;
}

.vertrauens-desc {
    color: #4a5568;
    font-size: 1.13em;
    margin-bottom: 28px;
    line-height: 1.7;
}

.vertrauens-highlight-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 18px rgba(30,60,150,0.10);
    color: #1e3c96;
    font-size: 1.13em;
    font-weight: 600;
    margin: 0 auto 32px auto;
    padding: 22px 24px 18px 24px;
    display: inline-block;
    max-width: 95%;
}

.modern-vertrauen-btn {
    display: inline-block;
    padding: 16px 38px;
    font-size: 1.1em;
    font-weight: 700;
    border-radius: 30px;
    background: #CA1385;
    color: #fff;
    border: none;
    box-shadow: 0 4px 18px rgba(202,19,133,0.10);
    transition: background 0.2s, transform 0.2s;
    margin-top: 8px;
    text-decoration: none;
}

.modern-vertrauen-btn:hover {
    background: #a80e6a;
    transform: translateY(-2px) scale(1.04);
    color: #fff;
}

.vertrauens-section .section-title::after,
.vertrauens-title::after {
    display: none !important;
    content: none !important;
    border: none !important;
    background: none !important;
    height: 0 !important;
}

@media (max-width: 900px) {
    .modern-testimonials-grid {
        grid-template-columns: 1fr;
        grid-template-rows: none;
        gap: 24px;
    }
}

/* Footer styles */
.footer-section h3 {
  background-color: transparent !important;
  text-shadow: none !important;
  box-shadow: none !important;
} 