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

:root {
    --primary: #1a1a1a;
    --secondary: #8b4513;
    --accent: #d4af37;
    --light: #f5f5f0;
    --dark: #2c2c2c;
    --gray: #666;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: var(--light);
}

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

header {
    background: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    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 {
    color: var(--accent);
    font-size: 1.8rem;
    font-weight: bold;
    text-decoration: none;
}

.ad-notice {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

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

nav a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

nav a:hover {
    color: var(--accent);
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.hero-text-block {
    flex: 0 0 58%;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
    background: linear-gradient(135deg, rgba(26,26,26,0.95) 0%, rgba(44,44,44,0.9) 100%);
}

.hero-image-block {
    flex: 0 0 42%;
    position: relative;
    overflow: hidden;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.8);
}

.hero-overlay-accent {
    position: absolute;
    top: 15%;
    right: -80px;
    width: 280px;
    height: 280px;
    background: var(--accent);
    opacity: 0.12;
    transform: rotate(25deg);
}

h1 {
    font-size: 3.8rem;
    color: var(--accent);
    margin-bottom: 25px;
    line-height: 1.1;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--light);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.5;
}

.cta-primary {
    background: var(--accent);
    color: var(--primary);
    padding: 18px 45px;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.offset-section {
    display: flex;
    margin: 100px 0;
    gap: 60px;
    align-items: flex-start;
}

.offset-content {
    flex: 1;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: translateY(-60px);
}

.offset-image {
    flex: 0 0 45%;
    position: relative;
}

.offset-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.floating-card {
    position: absolute;
    bottom: -40px;
    right: -40px;
    background: var(--secondary);
    color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    max-width: 280px;
}

h2 {
    font-size: 2.8rem;
    margin-bottom: 25px;
    color: var(--primary);
    line-height: 1.2;
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.staggered-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 80px 0;
}

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.service-card:nth-child(2) {
    transform: translateY(40px);
}

.service-card:nth-child(5) {
    transform: translateY(40px);
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--dark);
}

.service-content {
    padding: 30px;
}

.price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin: 15px 0;
}

.select-service-btn {
    background: var(--secondary);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 15px;
    transition: background 0.3s;
}

.select-service-btn:hover {
    background: #704010;
}

.select-service-btn.selected {
    background: var(--accent);
    color: var(--primary);
}

.diagonal-section {
    background: var(--dark);
    color: var(--light);
    padding: 120px 0;
    margin: 100px 0;
    clip-path: polygon(0 8%, 100% 0, 100% 92%, 0 100%);
}

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

.split-left {
    flex: 1;
}

.split-right {
    flex: 1;
}

.split-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--gray);
}

.testimonial-slider {
    background: white;
    padding: 60px;
    border-radius: 8px;
    margin: 80px 0;
    box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.testimonial {
    font-style: italic;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--dark);
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary);
    font-size: 1.1rem;
}

.form-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 100px 0;
    margin-top: 80px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

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

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--accent);
}

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

.submit-btn {
    background: var(--accent);
    color: var(--primary);
    padding: 16px 50px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s;
}

.submit-btn:hover {
    transform: scale(1.02);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

footer {
    background: var(--primary);
    color: var(--light);
    padding: 60px 0 30px;
    margin-top: 100px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: var(--accent);
    margin-bottom: 20px;
    font-size: 1.3rem;
}

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

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

.footer-column a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 245, 240, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--gray);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 25px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}

.cookie-accept {
    background: var(--accent);
    color: var(--primary);
}

.cookie-reject {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--light);
}

.cookie-btn:hover {
    transform: scale(1.05);
}

.page-header {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    color: var(--accent);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.content-wrapper h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-wrapper p {
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.contact-grid {
    display: flex;
    gap: 60px;
    margin: 60px 0;
}

.contact-info {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.contact-info h3 {
    margin-bottom: 25px;
    color: var(--secondary);
}

.info-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

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

.info-label {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 5px;
}

.email-display {
    color: var(--gray);
}

.hidden {
    display: none;
}

.alert-message {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 5px;
    font-weight: 600;
}

.alert-error {
    background: #ffe6e6;
    color: #c00;
    border: 1px solid #fcc;
}

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

    .hero-text-block,
    .hero-image-block {
        flex: 1;
    }

    .hero-image-block {
        min-height: 400px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }

    .offset-section,
    .split-content,
    .footer-content,
    .contact-grid {
        flex-direction: column;
    }

    .offset-image {
        flex: 1;
    }
}

.main-nav {
    background: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--accent);
}

.ad-label {
    background: rgba(212, 175, 55, 0.15);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.75rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.split-hero {
    background: var(--dark);
    color: var(--light);
}

.hero-content {
    display: flex;
    align-items: center;
    min-height: 85vh;
    gap: 60px;
}

.hero-text {
    flex: 1;
    padding: 60px;
}

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

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: var(--dark);
}

.cta-button {
    background: var(--accent);
    color: var(--primary);
    padding: 18px 45px;
    text-decoration: none;
    display: inline-block;
    border-radius: 6px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
}

.intro-section,
.split-section {
    padding: 80px 0;
}

.split-container {
    display: flex;
    gap: 60px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
}

.split-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--gray);
}

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

.services-preview {
    padding: 80px 0;
    background: var(--light);
}

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

.section-header.center {
    max-width: 800px;
    margin: 0 auto 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-image {
    overflow: hidden;
    border-radius: 8px 8px 0 0;
}

.service-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: var(--dark);
}

.service-select {
    background: var(--secondary);
    color: white;
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    width: 100%;
    margin-top: 15px;
    transition: background 0.3s;
}

.service-select:hover {
    background: #704010;
}

.service-select.selected {
    background: var(--accent);
    color: var(--primary);
}

.service-price {
    font-size: 2rem;
    color: var(--accent);
    font-weight: 700;
    margin: 15px 0;
}

.reference {
    font-size: 0.9rem;
    margin-top: 20px;
}

.reference a {
    color: var(--secondary);
    text-decoration: none;
}

.reference a:hover {
    text-decoration: underline;
}

.why-us {
    background: var(--light);
}

.text-link {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
}

.text-link:hover {
    color: var(--accent);
}

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

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

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.submit-button {
    background: var(--accent);
    color: var(--primary);
    padding: 16px 50px;
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    transition: transform 0.3s;
}

.submit-button:hover {
    transform: scale(1.02);
}

.science-section {
    background: var(--dark);
    color: var(--light);
    padding: 80px 0;
}

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

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

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin: 20px 0;
}

.main-footer {
    background: var(--primary);
    color: var(--light);
    padding: 60px 0 30px;
    margin-top: 100px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent);
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 245, 240, 0.1);
    padding-top: 30px;
    text-align: center;
    color: var(--gray);
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 0;
}

.disclaimer {
    font-size: 0.85rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.references-list {
    font-size: 0.85rem;
}

.references-list a {
    color: var(--accent);
}

.philosophy-section {
    padding: 80px 0;
    background: white;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
}

.team-section {
    background: var(--light);
}

.values-section {
    padding: 80px 0;
    background: var(--dark);
    color: var(--light);
}

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

.value-card {
    flex: 1;
    background: rgba(255,255,255,0.05);
    padding: 30px;
    border-radius: 8px;
    min-width: 250px;
}

.benefits-list {
    list-style: none;
    margin: 30px 0;
}

.benefits-list li {
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
}

.benefits-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: bold;
}

.services-detail {
    background: var(--light);
}

.service-detail-item {
    border-bottom: 1px solid #ddd;
}

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

.price-tag {
    font-size: 2.2rem;
    color: var(--accent);
    font-weight: 700;
    margin: 20px 0;
}

.note {
    background: rgba(139, 69, 19, 0.1);
    padding: 15px;
    border-left: 4px solid var(--secondary);
    margin-top: 20px;
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    padding: 100px 0;
    text-align: center;
    color: var(--light);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-block h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.impressum-section {
    padding: 80px 0;
    background: white;
}

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

.impressum-content h3 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.thanks-section {
    padding: 100px 0;
    background: var(--light);
    text-align: center;
}

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

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

.thanks-message {
    font-size: 1.3rem;
    margin: 30px 0;
}

.service-confirmation {
    background: white;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.next-steps {
    margin: 60px 0;
}

.steps-grid {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.step-item {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric,
    .hero-content {
        flex-direction: column;
    }

    .hero-text-block,
    .hero-image-block,
    .hero-text,
    .hero-image {
        flex: 1;
    }

    .hero-image-block,
    .hero-image {
        min-height: 400px;
    }

    h1 {
        font-size: 2.8rem;
    }

    .service-card {
        flex: 0 0 calc(50% - 20px);
    }

    .offset-section,
    .split-content,
    .split-container,
    .footer-content,
    .contact-grid,
    .philosophy-grid,
    .values-grid,
    .steps-grid,
    .form-row {
        flex-direction: column;
    }

    .offset-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    nav ul,
    .nav-links {
        gap: 15px;
    }

    h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

    .service-card {
        flex: 0 0 100%;
        transform: none !important;
    }

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

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

    .hero-text {
        padding: 40px 20px;
    }

    .thanks-actions {
        flex-direction: column;
    }
}