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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
}

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 26px;
    font-weight: 700;
    color: #1a5f7a;
    letter-spacing: -0.5px;
}

.ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 4px 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-weight: 500;
}

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

.nav-menu a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #1a5f7a;
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

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

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 95, 122, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-text p {
    font-size: 22px;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.6;
}

.intro-block {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a5f7a;
    font-weight: 700;
    line-height: 1.3;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.visual-break {
    background-color: #ffffff;
}

.split-visual {
    display: flex;
    min-height: 500px;
}

.split-visual.reverse {
    flex-direction: row-reverse;
}

.visual-left,
.visual-right {
    flex: 1;
    background-color: #ecf0f1;
}

.visual-left img,
.visual-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-content {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.text-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a5f7a;
    font-weight: 700;
}

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

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

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a5f7a;
    font-weight: 700;
}

.section-header-center p {
    font-size: 19px;
    color: #7f8c8d;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-image-wrap {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h4 {
    font-size: 24px;
    margin: 25px 25px 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    margin: 0 25px 20px;
    color: #4a5568;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 0 25px 20px;
}

.btn-service {
    display: block;
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px 24px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #145266;
}

.trust-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a5f7a;
    font-weight: 700;
}

.trust-section p {
    font-size: 18px;
    margin-bottom: 45px;
    color: #4a5568;
}

.stats-row {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item {
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #7f8c8d;
    font-weight: 500;
}

.cta-section {
    padding: 80px 20px;
    background-color: #1a5f7a;
}

.cta-box {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-box h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.cta-box p {
    font-size: 19px;
    margin-bottom: 35px;
    color: rgba(255, 255, 255, 0.9);
}

.btn-primary-large {
    display: inline-block;
    padding: 18px 40px;
    background-color: #ffffff;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    align-items: center;
    justify-content: center;
}

.modal.hidden {
    display: none;
}

.modal:not(.hidden) {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: 300;
    color: #7f8c8d;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-modal:hover {
    color: #2c3e50;
}

.modal-content h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.form-group {
    margin-bottom: 20px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dfe4ea;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5f7a;
}

.btn-submit {
    width: 100%;
    padding: 14px 24px;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #145266;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: #7f8c8d;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #5dade2;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a5f7a 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 800;
}

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

.about-intro {
    padding: 90px 20px;
    background-color: #ffffff;
}

.about-intro h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a5f7a;
    font-weight: 700;
}

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

.team-visual {
    background-color: #f8f9fa;
}

.values-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.values-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a5f7a;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    padding: 40px 35px;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5f7a;
}

.value-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.mission-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.mission-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a5f7a;
    font-weight: 700;
}

.mission-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.8;
}

.mission-image-wrap {
    margin-top: 50px;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.mission-image-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.approach-section {
    padding: 100px 20px;
    background-color: #ffffff;
}

.approach-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a5f7a;
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.step-item {
    flex: 1 1 calc(33.333% - 20px);
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #e8ecef;
    margin-bottom: 15px;
}

.step-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.step-item p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px 20px;
    background-color: #ffffff;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-card.reverse .service-detail-content {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-text {
    flex: 1;
}

.service-detail-text h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a5f7a;
    font-weight: 700;
}

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

.service-detail-text h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.service-detail-text ul {
    margin-bottom: 25px;
    padding-left: 25px;
}

.service-detail-text ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 30px;
}

.price-display {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
}

.process-section {
    padding: 90px 20px;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a5f7a;
    font-weight: 700;
}

.process-section > p {
    font-size: 18px;
    margin-bottom: 50px;
    color: #4a5568;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.timeline-marker {
    width: 50px;
    height: 50px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-content h4 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.timeline-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 34px;
    margin-bottom: 35px;
    color: #1a5f7a;
    font-weight: 700;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 400px;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.impressum-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.impressum-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
    color: #1a5f7a;
    font-weight: 700;
}

.impressum-section h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 700;
}

.impressum-section h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.impressum-section p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.legal-content h2 {
    font-size: 34px;
    margin-top: 50px;
    margin-bottom: 25px;
    color: #1a5f7a;
    font-weight: 700;
}

.legal-content h2:first-child {
    margin-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #4a5568;
    line-height: 1.7;
}

.update-date {
    margin-top: 60px;
    font-style: italic;
    color: #7f8c8d;
}

.thanks-section {
    padding: 100px 20px;
    background-color: #f8f9fa;
    min-height: 500px;
}

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

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

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 35px;
    color: #27ae60;
    font-weight: 600;
}

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

.service-reference {
    font-weight: 700;
    color: #1a5f7a;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #ecf0f1;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #dfe4ea;
}

.next-steps {
    padding: 90px 20px;
    background-color: #ffffff;
}

.next-steps h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #1a5f7a;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.step-box {
    flex: 1 1 calc(25% - 19px);
    padding: 30px 25px;
    background-color: #f8f9fa;
    border-radius: 6px;
    text-align: center;
}

.step-num {
    font-size: 38px;
    font-weight: 800;
    color: #1a5f7a;
    margin-bottom: 15px;
}

.step-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

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

@media (max-width: 992px) {
    .navbar {
        flex-direction: column;
        gap: 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .hero-text h1 {
        font-size: 42px;
    }

    .split-visual {
        flex-direction: column;
    }

    .split-visual.reverse {
        flex-direction: column;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 30px;
    }

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

    .step-item {
        flex: 1 1 100%;
    }

    .service-detail-content {
        flex-direction: column;
    }

    .service-detail-card.reverse .service-detail-content {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

    .step-box {
        flex: 1 1 calc(50% - 12.5px);
    }

    .footer-grid {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .hero-text h1 {
        font-size: 32px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .step-box {
        flex: 1 1 100%;
    }

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }
}