* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: #4a5568;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #2d3748;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d3748;
}

.ad-notice {
    font-size: 12px;
    color: #718096;
    padding: 4px 12px;
    background-color: #edf2f7;
    border-radius: 4px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    color: #2d3748;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: #4299e1;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2d3748;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.3));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 20px;
    color: #f7fafc;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #4299e1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #3182ce;
}

.intro-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.intro-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    padding: 40px 30px;
    border-radius: 8px;
}

.intro-card .card-icon {
    margin-bottom: 20px;
}

.intro-card .card-icon img {
    width: 100%;
    height: 200px;
    border-radius: 6px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2d3748;
}

.intro-card p {
    color: #4a5568;
    line-height: 1.7;
}

.services-preview {
    padding: 100px 0;
    background-color: #ffffff;
}

.section-header-offset {
    margin-left: 60px;
    margin-bottom: 60px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a202c;
}

.section-header-offset p {
    font-size: 18px;
    color: #718096;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 350px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

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

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a202c;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 14px;
    background-color: #4299e1;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service-btn:hover {
    background-color: #3182ce;
}

.centered-cta {
    text-align: center;
    margin-top: 60px;
}

.cta-link {
    display: inline-block;
    padding: 14px 32px;
    background-color: transparent;
    color: #4299e1;
    text-decoration: none;
    border: 2px solid #4299e1;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-link:hover {
    background-color: #4299e1;
    color: #ffffff;
}

.form-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a202c;
}

.form-intro p {
    font-size: 18px;
    color: #718096;
}

.contact-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-group {
    margin-bottom: 25px;
    flex: 1;
    min-width: 200px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
}

.form-group input, .form-group select, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.service-display {
    background-color: #e6fffa;
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    display: none;
}

.service-display.active {
    display: block;
}

.service-display h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #234e52;
}

.service-display p {
    margin: 5px 0;
    color: #2c7a7b;
}

.submit-button {
    width: 100%;
    padding: 16px;
    background-color: #48bb78;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #38a169;
}

.trust-section {
    padding: 80px 0;
    background-color: #1a202c;
}

.trust-content {
    text-align: center;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    justify-content: center;
    gap: 80px;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 56px;
    font-weight: 700;
    color: #4299e1;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 18px;
    color: #cbd5e0;
}

.main-footer {
    background-color: #2d3748;
    color: #e2e8f0;
    padding: 60px 0 20px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-column p {
    line-height: 1.7;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #cbd5e0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4299e1;
}

.footer-disclaimer {
    background-color: #1a202c;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #a0aec0;
    font-size: 14px;
}

.page-header {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 0;
    background-color: #f7fafc;
}

.services-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-card {
    border-radius: 12px;
    overflow: hidden;
    padding: 50px;
}

.service-detail-image {
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-detail-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.service-meta span {
    padding: 6px 16px;
    background-color: #e6fffa;
    color: #2c7a7b;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.service-detail-content h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: #2d3748;
}

.service-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    color: #4a5568;
    line-height: 1.7;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-price-display {
    font-size: 42px;
    font-weight: 700;
    color: #2d3748;
    margin: 30px 0;
}

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.cta-box {
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-box p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.about-content {
    padding: 80px 0;
}

.about-intro {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a202c;
}

.about-text p {
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
    font-size: 17px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    height: 400px;
}

.about-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.mission-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.mission-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.mission-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.mission-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 12px;
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.mission-card p {
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    align-items: flex-start;
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #e2e8f0;
    min-width: 80px;
}

.approach-details h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #2d3748;
}

.approach-details p {
    color: #4a5568;
    line-height: 1.7;
}

.values-section {
    padding: 80px 0;
    background-color: #edf2f7;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1a202c;
}

.values-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-block {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    border-radius: 12px;
}

.value-block h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2d3748;
}

.value-block p {
    color: #4a5568;
    line-height: 1.7;
}

.team-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
    color: #1a202c;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
    color: #4a5568;
    font-size: 18px;
}

.team-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 300px;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #2d3748;
}

.member-role {
    font-size: 14px;
    color: #718096;
    margin-bottom: 15px;
    display: block;
}

.team-member p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 15px;
}

.contact-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 350px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-info p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2d3748;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.contact-image-wrapper {
    width: 100%;
    height: 300px;
    border-radius: 12px;
    overflow: hidden;
}

.contact-image-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.map-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.map-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: #1a202c;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #4a5568;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f7fafc;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
}

.thanks-message {
    font-size: 20px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e6fffa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 50px;
}

.selected-service-display h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #234e52;
}

.selected-service-display .service-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c7a7b;
    margin-bottom: 10px;
}

.selected-service-display .service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c7a7b;
}

.thanks-next {
    margin: 50px 0;
}

.thanks-next h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2d3748;
}

.next-steps {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4299e1;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step p {
    color: #4a5568;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 40px;
    background-color: #4299e1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #3182ce;
}

.btn-secondary {
    padding: 16px 40px;
    background-color: transparent;
    color: #4299e1;
    text-decoration: none;
    border: 2px solid #4299e1;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #4299e1;
    color: #ffffff;
}

.legal-section {
    padding: 80px 0;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a202c;
}

.legal-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 22px;
    margin: 30px 0 15px;
    color: #2d3748;
}

.legal-content p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul, .legal-content ol {
    margin: 20px 0 20px 30px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 10px;
}

.impressum-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 30px;
}

.impressum-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

.impressum-item p {
    margin: 0;
    color: #4a5568;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .approach-item {
        flex-direction: column;
        gap: 15px;
    }

    .approach-number {
        min-width: auto;
    }

    .about-intro {
        flex-direction: column;
    }
}