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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.ad-disclosure {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 0.85rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 35px;
    z-index: 999;
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2980b9;
}

.main-nav {
    display: flex;
    gap: 25px;
}

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #2980b9;
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: #34495e;
}

.hero-section {
    display: flex;
    min-height: 500px;
    background-color: #f8f9fa;
}

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px 40px;
}

.hero-text {
    max-width: 600px;
}

.hero-text h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-button {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2980b9;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #1f6391;
    transform: translateY(-2px);
}

.cta-button.secondary {
    background-color: #95a5a6;
}

.cta-button.secondary:hover {
    background-color: #7f8c8d;
}

.cta-button.large {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.cta-button.urgent {
    background-color: #e74c3c;
}

.cta-button.urgent:hover {
    background-color: #c0392b;
}

.intro-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.intro-card {
    padding: 40px;
    border-radius: 12px;
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.intro-card p {
    font-size: 1.1rem;
    color: #555;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 50px;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    width: calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

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

.service-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-content p {
    color: #555;
    margin-bottom: 20px;
    flex: 1;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.service-select-btn {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.service-select-btn:hover {
    background-color: #2980b9;
}

.form-section {
    padding: 80px 20px;
    background-color: #ecf0f1;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.form-intro h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-intro p {
    color: #555;
    font-size: 1.05rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-button {
    padding: 16px 32px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-button:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.trust-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.trust-card {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    width: calc(33.333% - 20px);
    min-width: 250px;
    text-align: center;
}

.trust-card h3 {
    font-size: 1.4rem;
    color: #2980b9;
    margin-bottom: 15px;
}

.trust-card p {
    color: #555;
}

.disclaimer-section {
    padding: 50px 20px;
    background-color: #ecf0f1;
}

.disclaimer-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px;
    background-color: #fff3cd;
    border-left: 5px solid #f39c12;
    border-radius: 6px;
}

.disclaimer-content h3 {
    color: #d68910;
    margin-bottom: 15px;
}

.disclaimer-content p {
    color: #6c5b00;
    font-size: 0.95rem;
    line-height: 1.7;
}

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

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

.footer-column {
    flex: 1;
    min-width: 200px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column h4 {
    color: #3498db;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

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

.footer-column a:hover {
    color: #3498db;
}

.footer-column p {
    color: #bdc3c7;
    font-size: 0.95rem;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    padding: 20px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    color: #ecf0f1;
    flex: 1;
    min-width: 250px;
}

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

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

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

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.cookie-reject:hover {
    background-color: #636e72;
}

.page-hero {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    padding: 80px 20px;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
}

.about-content {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.about-layout {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-main {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.content-card {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.content-card h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.content-card p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.image-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
}

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

.features-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item h3 {
    font-size: 1.3rem;
    color: #2980b9;
    margin-bottom: 10px;
}

.feature-item p {
    color: #555;
}

.sidebar-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.sidebar-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.sidebar-card p {
    color: #555;
    margin-bottom: 15px;
}

.stat-item {
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ecf0f1;
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2980b9;
}

.stat-label {
    color: #7f8c8d;
    font-size: 0.95rem;
}

.cta-card {
    background: linear-gradient(135deg, #2980b9 0%, #3498db 100%);
    color: #ffffff;
}

.cta-card h3 {
    color: #ffffff;
}

.cta-card p {
    color: #ecf0f1;
}

.cta-card .cta-button {
    background-color: #ffffff;
    color: #2980b9;
    display: block;
    text-align: center;
}

.cta-card .cta-button:hover {
    background-color: #ecf0f1;
}

.services-detail-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

.service-detail-content {
    flex: 1;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    color: #2980b9;
    margin: 25px 0 15px;
}

.service-detail-content p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.service-detail-content ul {
    margin: 15px 0 25px 20px;
    color: #555;
}

.service-detail-content ul li {
    margin-bottom: 10px;
}

.price-tag {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-image {
    flex: 1;
    min-height: 400px;
    position: relative;
}

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

.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

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

.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.contact-section {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.contact-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.contact-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 280px;
}

.contact-card h2 {
    font-size: 1.5rem;
    color: #2980b9;
    margin-bottom: 20px;
}

.contact-card p {
    color: #555;
    margin-bottom: 10px;
    line-height: 1.8;
}

.info-note {
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 15px;
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #ecf0f1;
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-row span:first-child {
    font-weight: 600;
    color: #2c3e50;
}

.hours-row span:last-child {
    color: #555;
}

.impressum-card {
    background-color: #ecf0f1;
}

.contact-map-area {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.map-placeholder {
    padding: 60px 40px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-text {
    max-width: 600px;
}

.map-text h3 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.map-text p {
    color: #555;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

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

.thanks-section {
    padding: 80px 20px;
    min-height: 60vh;
    background-color: #f8f9fa;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.selected-service-info {
    font-size: 1.1rem;
    color: #27ae60;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.step-item {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

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

.step-item h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 15px;
}

.step-item p {
    color: #555;
}

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

.legal-page {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2980b9;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-top: 25px;
    margin-bottom: 15px;
}

.legal-content p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 15px 0 25px 30px;
    color: #555;
}

.legal-content ul li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #1f6391;
}

.last-updated {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 30px;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookies-table thead {
    background-color: #ecf0f1;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dfe6e9;
}

.cookies-table th {
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #555;
}

@media (max-width: 992px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #ffffff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .main-nav.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-section {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 2.2rem;
    }

    .service-card {
        width: calc(50% - 15px);
    }

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

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

    .trust-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .service-card,
    .trust-card {
        width: 100%;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }

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

    .legal-content {
        padding: 30px 20px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}