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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97bc62;
    --accent-color: #ff6b35;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f9fa;
    --text-dark: #2d2d2d;
    --text-light: #6c757d;
    --white: #ffffff;
    --border-color: #dee2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.ad-notice {
    background-color: #fffbea;
    color: #5c4813;
    text-align: center;
    padding: 8px;
    font-size: 0.85rem;
    border-bottom: 1px solid #f0e5b8;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: var(--white);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

.hero-asymmetric {
    padding: 80px 60px 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-offset-content {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding-left: 80px;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--dark-bg);
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 35px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #e65528;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.hero-image-offset {
    position: relative;
    flex: 1;
    margin-top: -40px;
    background-color: var(--light-bg);
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    object-fit: cover;
}

.intro-diagonal {
    padding: 120px 60px;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.diagonal-wrapper {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.intro-narrow {
    flex: 1.2;
    max-width: 600px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 700;
}

.intro-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-visual {
    flex: 0.8;
    background-color: var(--secondary-color);
}

.intro-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.services-overlap {
    padding: 100px 60px 120px;
    background-color: var(--light-bg);
    position: relative;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 60px;
    margin-left: 100px;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
    font-weight: 700;
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--text-light);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

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

.service-card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.service-card-offset {
    flex: 1 1 calc(40% - 15px);
    min-width: 350px;
    margin-top: 60px;
}

.service-card-small {
    flex: 1 1 calc(35% - 15px);
    min-width: 320px;
    margin-top: -40px;
}

.service-card-wide {
    flex: 1 1 calc(65% - 15px);
    min-width: 450px;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
}

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

.service-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-select {
    width: 100%;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select:hover {
    background-color: #234d24;
}

.approach-split {
    padding: 100px 60px;
    background-color: var(--white);
}

.split-content {
    display: flex;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.split-text {
    flex: 1;
    padding-right: 40px;
}

.split-text h2 {
    font-size: 2.6rem;
    margin-bottom: 30px;
    color: var(--dark-bg);
    font-weight: 700;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.link-inline {
    display: inline-block;
    margin-top: 15px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 3px;
    transition: all 0.3s;
}

.link-inline:hover {
    color: var(--accent-color);
    border-bottom-color: var(--accent-color);
}

.split-image {
    flex: 1;
    background-color: var(--light-bg);
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.testimonials-staggered {
    padding: 100px 60px;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.testimonials-staggered h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 70px;
    color: var(--dark-bg);
    font-weight: 700;
}

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

.testimonial {
    background-color: var(--white);
    padding: 35px 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-left {
    margin-left: 0;
    max-width: 650px;
}

.testimonial-right {
    margin-left: auto;
    max-width: 700px;
}

.testimonial-center {
    margin-left: 150px;
    max-width: 750px;
}

.testimonial p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 600;
}

.form-section-diagonal {
    padding: 100px 60px 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    position: relative;
}

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

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--dark-bg);
    text-align: center;
    font-weight: 700;
}

.form-container > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 40px;
    font-size: 1.1rem;
}

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

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    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: var(--primary-color);
}

.btn-submit {
    padding: 16px;
    background-color: var(--accent-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 15px;
}

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

.disclaimer-section {
    padding: 80px 60px;
    background-color: #fff8f0;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
    background-color: var(--white);
    border-left: 4px solid var(--accent-color);
    border-radius: 8px;
}

.disclaimer-box h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
}

.disclaimer-box p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.main-footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 60px 30px;
}

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

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

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

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #3d3d3d;
    color: #8c8c8c;
    font-size: 0.9rem;
}

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

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

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

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.page-header-offset {
    padding: 80px 60px 60px;
    background: linear-gradient(to right, var(--light-bg), #e9ecef);
}

.header-content-diagonal {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
}

.header-content-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
    font-weight: 800;
}

.header-content-diagonal p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story-asymmetric {
    padding: 100px 60px;
    display: flex;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-block-left {
    flex: 0.9;
    background-color: var(--light-bg);
}

.story-block-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.story-content-right {
    flex: 1.1;
}

.story-content-right h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.credentials-staggered {
    padding: 100px 60px;
    background-color: var(--light-bg);
}

.credentials-staggered h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
    font-weight: 700;
}

.credentials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.credential-item {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 35px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.credential-offset {
    margin-top: 40px;
}

.credential-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.credential-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

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

.approach-image-left {
    flex: 1;
    background-color: var(--light-bg);
}

.approach-image-left img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.approach-text-right {
    flex: 1;
}

.approach-text-right h2 {
    font-size: 2.4rem;
    margin-bottom: 25px;
    color: var(--dark-bg);
    font-weight: 700;
}

.approach-text-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 18px;
}

.values-overlap {
    padding: 100px 60px;
    background-color: var(--white);
}

.values-overlap h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
    font-weight: 700;
}

.values-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 10px;
    border-left: 5px solid var(--secondary-color);
}

.value-large {
    flex: 1 1 calc(55% - 15px);
    min-width: 350px;
}

.value-small {
    flex: 1 1 calc(45% - 15px);
    min-width: 300px;
    margin-top: 50px;
}

.value-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    margin-top: -30px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-about-diagonal {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    text-align: center;
}

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

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

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

.cta-button {
    display: inline-block;
    padding: 16px 45px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
}

.services-detail-asymmetric {
    padding: 60px 60px 100px;
}

.service-detail {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto 80px;
    align-items: center;
}

.service-offset-right {
    flex-direction: row;
}

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

.service-detail-image {
    flex: 1;
    background-color: var(--light-bg);
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 25px;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 25px;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: var(--dark-bg);
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.service-detail-content ul li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 1rem;
    color: var(--text-light);
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.service-select-large {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.service-select-large:hover {
    background-color: #234d24;
}

.combination-offer-diagonal {
    padding: 80px 60px;
    background: linear-gradient(to right, #f0f4f8, #e9ecef);
}

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

.offer-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: var(--dark-bg);
    font-weight: 700;
}

.offer-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.faq-staggered {
    padding: 100px 60px;
    background-color: var(--white);
}

.faq-staggered h2 {
    text-align: center;
    font-size: 2.6rem;
    margin-bottom: 60px;
    color: var(--dark-bg);
    font-weight: 700;
}

.faq-layout {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--light-bg);
    padding: 30px 35px;
    border-radius: 10px;
}

.faq-left {
    margin-right: auto;
    max-width: 700px;
}

.faq-right {
    margin-left: auto;
    max-width: 700px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.cta-services-offset {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    padding: 60px 50px;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 2.6rem;
    margin-bottom: 20px;
    color: var(--white);
    font-weight: 700;
}

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

.cta-button-large {
    display: inline-block;
    padding: 18px 50px;
    background-color: var(--white);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s;
}

.cta-button-large:hover {
    background-color: var(--accent-color);
    color: var(--white);
    transform: translateY(-3px);
}

.contact-asymmetric {
    padding: 80px 60px;
    display: flex;
    gap: 70px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.contact-info-offset {
    flex: 1;
}

.contact-info-offset h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--dark-bg);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-visual {
    flex: 1;
    background-color: var(--light-bg);
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    object-fit: cover;
}

.impressum-section {
    padding: 80px 60px;
    background-color: var(--light-bg);
}

.impressum-section h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-bg);
    font-weight: 700;
}

.impressum-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 50px;
    border-radius: 10px;
}

.impressum-content h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.impressum-content h3:first-child {
    margin-top: 0;
}

.impressum-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.url-text {
    color: var(--primary-color);
    word-break: break-all;
}

.legal-notice-diagonal {
    padding: 80px 60px;
    background-color: var(--white);
}

.legal-notice-diagonal h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    text-align: center;
    color: var(--dark-bg);
    font-weight: 700;
}

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

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.thanks-hero {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--light-bg), #e9ecef);
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 30px;
}

.thanks-content-center h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-lead {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 50px;
}

.thanks-details h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--dark-bg);
}

.next-steps {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    text-align: left;
}

.step {
    flex: 1;
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.step h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.step p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.thanks-service-info {
    background-color: #fff8f0;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-dark);
}

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

.btn-primary {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

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

.btn-secondary {
    padding: 16px 40px;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.thanks-tips {
    padding: 80px 60px;
    background-color: var(--white);
}

.thanks-tips h2 {
    text-align: center;
    font-size: 2.4rem;
    margin-bottom: 50px;
    color: var(--dark-bg);
    font-weight: 700;
}

.tips-grid {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.tip-card {
    flex: 1;
    background-color: var(--light-bg);
    padding: 35px;
    border-radius: 10px;
}

.tip-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.tip-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 60px 100px;
    background-color: var(--white);
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 50px;
    text-align: center;
    color: var(--dark-bg);
    font-weight: 700;
}

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

.legal-content h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 10px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookie-table thead {
    background-color: var(--light-bg);
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--dark-bg);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

@media (max-width: 768px) {
    .main-nav {
        padding: 15px 20px;
    }

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

    .hero-offset-content,
    .diagonal-wrapper,
    .split-content,
    .about-story-asymmetric,
    .approach-detail-split,
    .contact-asymmetric,
    .service-detail {
        flex-direction: column;
    }

    .hero-text-block {
        padding-left: 0;
    }

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

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

    .services-grid-asymmetric {
        flex-direction: column;
    }

    .service-card-large,
    .service-card-offset,
    .service-card-small,
    .service-card-wide {
        flex: 1 1 100%;
        margin-top: 0;
    }

    .next-steps {
        flex-direction: column;
    }

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

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