* {
    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;
}

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

.site-header {
    background-color: #1a1a2e;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo a {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    flex-wrap: wrap;
    align-items: center;
}

.main-nav ul li a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav ul li a:hover {
    color: #3498db;
}

.ad-disclosure {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #ffffff;
}

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

.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-content a {
    color: #3498db;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

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

.hero-text-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-text-content p {
    font-size: 1.15rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.cta-primary {
    display: inline-block;
    background-color: #ffffff;
    color: #667eea;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.intro-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    text-align: center;
}

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.intro-section p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #555;
}

.services-split {
    padding: 80px 20px;
}

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

.services-header h2 {
    font-size: 2.8rem;
    color: #1a1a2e;
}

.service-row {
    display: flex;
    align-items: center;
    margin-bottom: 80px;
    gap: 60px;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-content-left p,
.service-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.service-image-right,
.service-image-left {
    flex: 1;
    background-color: #e8eaf6;
    border-radius: 10px;
    overflow: hidden;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 25px 0;
}

.select-service-btn {
    background-color: #3498db;
    color: #ffffff;
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
}

.link-secondary {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    border-bottom: 2px solid #3498db;
    transition: all 0.3s ease;
}

.link-secondary:hover {
    color: #2980b9;
    border-bottom-color: #2980b9;
}

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

.form-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1a2e;
}

.form-section > div > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

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

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

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

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

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

.btn-submit {
    background-color: #27ae60;
    color: #ffffff;
    padding: 15px 50px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

.disclaimer-section {
    padding: 60px 20px;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #856404;
    text-align: center;
}

.site-footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 60px 20px 20px;
}

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

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #ffffff;
}

.footer-col p {
    line-height: 1.8;
    color: #bdc3c7;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

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

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

.page-hero p {
    font-size: 1.3rem;
}

.content-split {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 80px 20px;
}

.content-left-wide {
    flex: 1.2;
}

.content-left-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.content-left-wide p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.content-right-image {
    flex: 0.8;
    background-color: #e8eaf6;
    border-radius: 10px;
    overflow: hidden;
}

.content-right-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #1a1a2e;
}

.principles-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.principle-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

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

.process-section h2 {
    font-size: 2.5rem;
    margin-bottom: 60px;
    text-align: center;
    color: #1a1a2e;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    min-width: 80px;
}

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

.step-item p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

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

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.values-section p {
    font-size: 1.1rem;
    line-height: 1.9;
    margin-bottom: 20px;
    color: #555;
}

.services-detailed {
    padding: 80px 20px;
}

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
    background-color: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
}

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

.service-card-image {
    flex: 0.8;
    background-color: #e8eaf6;
}

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

.service-card-content {
    flex: 1.2;
    padding: 40px;
}

.service-card-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #1a1a2e;
}

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

.service-price-box {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin: 30px 0;
}

.price-label {
    font-size: 0.95rem;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
}

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

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
}

.contact-content {
    padding: 80px 20px;
}

.impressum-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #1a1a2e;
}

.impressum-section h3 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.impressum-section h4 {
    font-size: 1.3rem;
    margin-top: 25px;
    margin-bottom: 10px;
    color: #34495e;
}

.impressum-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #555;
}

.impressum-section a {
    color: #3498db;
    text-decoration: none;
}

.impressum-section a:hover {
    text-decoration: underline;
}

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

.legal-content h2 {
    font-size: 2.3rem;
    margin-bottom: 25px;
    margin-top: 50px;
    color: #1a1a2e;
}

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

.legal-content h3 {
    font-size: 1.7rem;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

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

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

.legal-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #555;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 120px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #555;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

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

    .main-nav ul {
        gap: 15px;
        font-size: 0.9rem;
    }

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

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

    .step-item {
        flex-direction: column;
        text-align: center;
    }

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

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