/* Reset and Base Styles - Updated 2025-09-30 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'PT Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid #e5e7eb;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #374151;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #597ea5;
}

.nav-cta {
    display: flex;
    align-items: center;
}

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

.hamburger span {
    width: 25px;
    height: 2px;
    background: #374151;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(rgba(248, 250, 252, 0.8), rgba(226, 232, 240, 0.8)), url('praxis-banner.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #2d3748;
    padding-top: 120px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 20px;
    text-align: left;
    margin-left: auto;
    margin-right: 0;
}

.hero-content-centered {
    width: 100%;
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    margin: 0 auto;
}

.hero-badge {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: #597ea5;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.1;
    color: #2d3748;
    text-align: center;
    max-width: 100%;
}

.hero h2 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #718096;
    line-height: 1.4;
    text-align: center;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #718096;
    line-height: 1.6;
    max-width: 600px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.btn-primary {
    background: #597ea5;
    color: #fff;
    border-color: #597ea5;
}

.btn-primary:hover {
    background: #4a6b8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(89, 126, 165, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #597ea5;
    border-color: #597ea5;
}

.btn-secondary:hover {
    background: #597ea5;
    color: #fff;
    transform: translateY(-2px);
}

/* Doctolib Button Styling */
.doctolib-btn {
    background: #597ea5;
    border-color: #597ea5;
    position: relative;
    overflow: hidden;
}

.doctolib-btn:hover {
    background: #4a6b8a;
    border-color: #4a6b8a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(89, 126, 165, 0.3);
}

.doctolib-btn i {
    margin-right: 8px;
    font-size: 0.9rem;
}

.doctolib-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.doctolib-btn:hover::before {
    left: 100%;
}

.hero-video {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
}

.video-container {
    width: 500px;
    height: 400px;
    background: #f8fafc;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid #e2e8f0;
}

.therapy-image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.therapy-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border: 2px dashed #cbd5e0;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #718096;
    text-align: center;
    transition: all 0.3s ease;
}

.image-placeholder:hover {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e0 100%);
    border-color: #597ea5;
    color: #597ea5;
}

.image-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.image-placeholder span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 20px;
    text-align: center;
}

.image-overlay span {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #fff;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

/* Services Section Header Alignment */
.services .section-header {
    text-align: center;
    margin-left: 0;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #597ea5;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.section-header h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: #2d3748;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(89, 126, 165, 0.15);
    border-color: #597ea5;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #597ea5, #4a6b8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service Cards with Images */
.service-card {
    padding: 0;
    overflow: hidden;
    position: relative;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-photo {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
    background: #fff;
}

.service-card .service-icon {
    margin-bottom: 1rem;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 0;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #597ea5;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.about h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2d3748;
}

.about p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature i {
    color: #10b981;
    font-size: 1.2rem;
}

.feature span {
    font-size: 0.95rem;
    color: #718096;
}

.about-video {
    display: flex;
    justify-content: center;
}

/* Philosophy Section */
.philosophy {
    padding: 100px 0;
    background: #f8fafc;
}

.philosophy-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.philosophy-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.step {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(89, 126, 165, 0.15);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #597ea5, #4a6b8a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.step-icon i {
    font-size: 2rem;
    color: #fff;
}

.step h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.step p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
}

.philosophy-quote {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    text-align: center;
}

.philosophy-quote blockquote {
    margin: 0;
}

.philosophy-quote p {
    font-size: 1.2rem;
    font-style: italic;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.philosophy-quote cite {
    color: #597ea5;
    font-weight: 600;
    font-size: 0.9rem;
}

/* Additional Services Section */
.additional-services {
    padding: 100px 0;
    background: #fff;
}

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

.additional-service-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.additional-service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(89, 126, 165, 0.15);
    border-color: #597ea5;
}

.additional-service-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2d3748;
}

.additional-service-card p {
    color: #718096;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.additional-service-card ul {
    list-style: none;
    text-align: left;
}

.additional-service-card ul li {
    color: #718096;
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.9rem;
}

.additional-service-card ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Ensure buttons are aligned at the bottom of cards */
.additional-service-card .btn {
    margin-top: auto;
    margin-bottom: 0;
}

/* Team Recruitment Section */
.recruitment {
    padding: 100px 0;
    background: #f8fafc;
}

.recruitment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.recruitment-text h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #597ea5;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.recruitment-text h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2d3748;
}

.recruitment-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.recruitment-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.benefit i {
    color: #10b981;
    font-size: 1.2rem;
}

.benefit span {
    font-size: 0.95rem;
    color: #718096;
}

.recruitment-image {
    display: flex;
    justify-content: center;
}

.image-container {
    width: 300px;
    height: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(89, 126, 165, 0.3);
}

.recruitment-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Beckenbodentherapie Section */
.beckenboden-section {
    padding: 100px 0;
    background: #fff;
}

.beckenboden-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.beckenboden-image {
    display: flex;
    justify-content: center;
}

.beckenboden-photo {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(89, 126, 165, 0.3);
    object-fit: cover;
}

.beckenboden-text h2 {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: #597ea5;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.beckenboden-text h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #2d3748;
}

.beckenboden-text p {
    font-size: 1.1rem;
    color: #718096;
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 100px 0;
    background: #fff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-member {
    background: #fff;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(89, 126, 165, 0.15);
}

.member-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 4px solid #597ea5;
    box-shadow: 0 4px 15px rgba(89, 126, 165, 0.3);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.team-member h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.team-member p {
    color: #718096;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.member-specialties span {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-cta {
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8fafc;
}

.contact-content {
    margin-top: 3rem;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    /* Force cache refresh */
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    color: #597ea5;
    font-size: 1.5rem;
    margin-top: 0.2rem;
    width: 20px;
}

.contact-item h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2d3748;
}

.contact-item p {
    color: #718096;
    line-height: 1.5;
    font-size: 0.95rem;
}

.contact-cta {
    background: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #f1f5f9;
    text-align: center;
}

.contact-cta .btn {
    font-size: 1.1rem;
    padding: 18px 40px;
    min-height: 60px;
    margin-bottom: 1.5rem;
}

.doctolib-cta {
    text-align: center;
}

.doctolib-cta .doctolib-button-image {
    max-width: 180px;
    height: auto;
}

.email-fallback {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    border-left: 4px solid #597ea5;
}

.email-fallback p {
    margin: 0.5rem 0;
    color: #4a5568;
}

.email-fallback strong {
    color: #597ea5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
    background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #597ea5;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: #1e293b;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-family: 'Exo 2', sans-serif;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-section p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: #597ea5;
}

.footer-doctolib {
    margin-top: 1rem;
}

.footer-doctolib .doctolib-btn {
    font-size: 0.85rem;
    padding: 12px 20px;
}

/* Doctolib Image Button */
.doctolib-image-btn {
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
}

.doctolib-image-btn:hover {
    transform: translateY(-2px);
    filter: brightness(1.1);
}

.doctolib-button-image {
    max-width: 200px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.doctolib-button-image:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Navigation Doctolib Button */
.nav-cta .doctolib-button-image {
    max-width: 120px;
    height: auto;
}

/* Hero Doctolib Button */
.hero-buttons .doctolib-button-image {
    max-width: 180px;
    height: auto;
}

/* About Section Doctolib Button */
.about .doctolib-button-image {
    max-width: 160px;
    height: auto;
}

/* Team Section Doctolib Button */
.team-cta .doctolib-button-image {
    max-width: 160px;
    height: auto;
}

/* Doctolib Brand Button */
.doctolib-brand-btn {
    display: inline-block;
    background: #597ea5;
    color: #fff;
    text-decoration: none;
    padding: 16px 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(89, 126, 165, 0.2);
    border: 2px solid #597ea5;
}

.doctolib-brand-btn:hover {
    background: #4a6b8a;
    border-color: #4a6b8a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(89, 126, 165, 0.3);
    color: #fff;
    text-decoration: none;
}

.doctolib-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.doctolib-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 4px;
    letter-spacing: 0.5px;
}

.doctolib-brand {
    font-size: 1.1rem;
    font-weight: 700;
    font-family: 'Exo 2', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}


.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 1rem;
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 120px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        gap: 1rem;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 140px 20px 50px;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero h2 {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-video {
        margin-top: 2rem;
    }
    
    .video-container {
        width: 100%;
        max-width: 400px;
        height: 300px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-steps {
        grid-template-columns: 1fr;
    }
    
    .recruitment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .beckenboden-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .beckenboden-text h3 {
        font-size: 2rem;
    }
    
    .recruitment-benefits {
        grid-template-columns: 1fr;
    }
    
    .additional-services-grid {
        grid-template-columns: 1fr;
    }
    
    .services .section-header {
        text-align: center;
        margin-left: 0;
    }
    
    .section-header h3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 1.5rem;
    }
}

/* Impressum Styles - Exakt wie andere Sektionen */
.impressum {
    padding: 120px 0 80px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.impressum .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.impressum .section-header h2 {
    font-size: 2.5rem;
    color: #597ea5;
    margin-bottom: 1rem;
}

.impressum .section-header h3 {
    font-size: 1.2rem;
    color: #6b7280;
    font-weight: 400;
}

.impressum-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.impressum-info h3 {
    color: #597ea5;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #597ea5;
    padding-bottom: 0.5rem;
}

.impressum-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.impressum-info p:last-child {
    margin-bottom: 0;
}

/* Responsive Impressum */
@media (max-width: 768px) {
    .impressum {
        padding: 100px 0 60px 0;
    }
    
    .impressum-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .impressum .section-header h2 {
        font-size: 2rem;
    }
    
    .impressum-info h3 {
        font-size: 1.5rem;
    }
}

/* Blog Styles */
.blog-hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, #597ea5 0%, #4a6b8a 100%);
    text-align: center;
    color: #fff;
}

.blog-hero-content h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.blog-hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.blog-section {
    padding: 80px 0;
    background: #f8fafc;
}

.blog-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.blog-intro h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.blog-intro p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 700px;
    margin: 0 auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.blog-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f1f5f9;
}

.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(89, 126, 165, 0.15);
}

.blog-image {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.blog-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card:hover .blog-photo {
    transform: scale(1.05);
}

.blog-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #597ea5;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.blog-content {
    padding: 2rem;
}

.blog-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    color: #718096;
    font-size: 0.9rem;
}

.blog-meta i {
    margin-right: 0.5rem;
}

.blog-content h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.blog-content p {
    color: #718096;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-link {
    color: #597ea5;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: gap 0.3s ease;
}

.blog-link:hover {
    gap: 0.8rem;
}

.blog-cta {
    background: #fff;
    padding: 3rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.blog-cta h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.blog-cta p {
    color: #718096;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

/* Blog Post Styles */
.blog-post-hero {
    padding: 180px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.blog-post-header {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.blog-breadcrumb {
    margin-bottom: 2rem;
    color: #718096;
    font-size: 0.95rem;
}

.blog-breadcrumb a {
    color: #597ea5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-breadcrumb a:hover {
    color: #4a6b8a;
}

.blog-post-header h1 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: #2d3748;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.blog-post-meta {
    display: flex;
    gap: 2rem;
    justify-content: center;
    color: #718096;
    font-size: 0.95rem;
}

.blog-post-meta i {
    margin-right: 0.5rem;
}

.blog-post-content {
    padding: 60px 0;
    background: #fff;
}

.blog-post-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-featured-image {
    margin-bottom: 3rem;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.blog-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 1.05rem;
}

.blog-text .lead {
    font-size: 1.25rem;
    color: #2d3748;
    font-weight: 500;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.blog-text h2 {
    font-family: 'Exo 2', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2d3748;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.blog-text h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.blog-text h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #597ea5;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.blog-text p {
    margin-bottom: 1.5rem;
}

.blog-text ul,
.blog-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-text li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.blog-text strong {
    color: #2d3748;
    font-weight: 600;
}

.blog-highlight {
    background: linear-gradient(135deg, #597ea5 0%, #4a6b8a 100%);
    color: #fff;
    padding: 2.5rem;
    border-radius: 15px;
    margin: 3rem 0;
    text-align: center;
}

.blog-highlight h3 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 1rem;
}

.blog-highlight p {
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.blog-highlight .btn {
    background: #fff;
    color: #597ea5;
    border-color: #fff;
}

.blog-highlight .btn:hover {
    background: #f8fafc;
    transform: translateY(-2px);
}

.faq-item {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #597ea5;
}

.faq-item h4 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 1rem;
}

.faq-item p {
    margin-bottom: 0;
}

.blog-author {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.blog-author h3 {
    color: #2d3748;
    margin-top: 0;
    margin-bottom: 1rem;
}

.blog-related {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid #e2e8f0;
}

.blog-related h3 {
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.related-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-post-link {
    color: #597ea5;
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.related-post-link:hover {
    background: #e2e8f0;
    gap: 1.2rem;
}

/* Blog Sidebar */
.blog-sidebar {
    position: sticky;
    top: 140px;
    align-self: start;
}

.sidebar-card {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
}

.sidebar-card h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 1rem;
}

.sidebar-card p {
    color: #718096;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.sidebar-services {
    list-style: none;
    padding: 0;
}

.sidebar-services li {
    margin-bottom: 0.8rem;
}

.sidebar-services a {
    color: #597ea5;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-services a:hover {
    color: #4a6b8a;
}

.sidebar-contact p {
    margin-bottom: 1rem;
    color: #4a5568;
}

.sidebar-contact i {
    color: #597ea5;
    margin-right: 0.5rem;
}

/* Blog Responsive */
@media (max-width: 968px) {
    .blog-post-wrapper {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .blog-post-header h1 {
        font-size: 2rem;
    }
    
    .blog-post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .blog-text h2 {
        font-size: 1.6rem;
    }
    
    .blog-text h3 {
        font-size: 1.3rem;
    }
}