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

:root {
    --primary-color: #2c5f7a;
    --secondary-color: #4a8ba6;
    --accent-color: #d97942;
    --text-dark: #1a1a1a;
    --text-light: #555555;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.92);
    color: white;
    padding: 24px 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.btn-cookie,
.btn-cookie-alt {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.btn-cookie {
    background-color: var(--accent-color);
    color: white;
}

.btn-cookie:hover {
    background-color: #c96835;
}

.btn-cookie-alt {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.header-asymmetric {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 18px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
}

.logo-block {
    flex-shrink: 0;
}

.brand {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    margin-left: auto;
    padding: 6px 14px;
    background-color: #fff8f0;
    border: 1px solid #ffd699;
    border-radius: 4px;
}

.ad-label {
    font-size: 12px;
    color: #996300;
    font-weight: 500;
}

.nav-offset {
    display: flex;
    gap: 32px;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--secondary-color);
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-block {
    position: absolute;
    top: 0;
    left: 55%;
    width: 50%;
    height: 100%;
    transform: skewX(-6deg);
    overflow: hidden;
}

.hero-image-block img {
    width: 100%;
    height: 100%;
    transform: skewX(6deg) scale(1.2);
}

.hero-text-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 50%;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 58px;
    line-height: 1.15;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.5;
    max-width: 480px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 38px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(217, 121, 66, 0.3);
}

.cta-primary:hover {
    background-color: #c96835;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(217, 121, 66, 0.4);
}

.intro-overlap {
    padding: 80px 0;
    background-color: var(--bg-light);
}

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

.intro-content-left {
    flex: 1;
    padding-right: 40px;
}

.intro-content-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 700;
    line-height: 1.3;
}

.intro-content-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
    line-height: 1.7;
}

.intro-visual-right {
    flex: 0 0 45%;
    height: 420px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
}

.insight-diagonal {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: skewY(-2deg);
    margin: 60px 0;
}

.diagonal-wrapper {
    transform: skewY(2deg);
}

.insight-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    color: white;
    text-align: center;
}

.insight-box h3 {
    font-size: 32px;
    line-height: 1.4;
    margin-bottom: 20px;
    font-weight: 700;
}

.insight-box p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.95;
}

.reference-link {
    display: inline-block;
    margin-top: 12px;
}

.reference-link a {
    color: #ffd699;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
}

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

.services-cards-stagger {
    padding: 100px 0;
}

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

.section-title-offset {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
    padding-left: 80px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card.card-1 {
    transform: translateY(-20px);
}

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

.service-card.card-3 {
    transform: translateY(-10px);
}

.service-card.card-4 {
    transform: translateY(30px);
}

.service-card.card-5 {
    flex: 0 0 100%;
    transform: translateY(0);
}

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

.card-image {
    height: 240px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 14px;
    font-weight: 700;
}

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

.price {
    display: block;
    font-size: 28px;
    color: var(--accent-color);
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.form-section-float {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    padding: 50px 60px;
    background-color: var(--bg-white);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

.form-header {
    margin-bottom: 32px;
}

.form-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    color: var(--text-light);
}

#selected-service-display {
    font-weight: 600;
    color: var(--accent-color);
}

.booking-form {
    transform: rotate(1deg);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px 24px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 12px;
}

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

.btn-back {
    width: 100%;
    padding: 14px 24px;
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-back:hover {
    border-color: var(--text-dark);
    color: var(--text-dark);
}

.trust-offset {
    padding: 100px 0;
    background-color: var(--bg-white);
}

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

.container-narrow h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.trust-item {
    background-color: var(--bg-light);
    padding: 40px 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.trust-item.item-large {
    flex: 0 0 100%;
}

.trust-item.item-small {
    flex: 0 0 calc(40% - 15px);
}

.trust-item.item-medium {
    flex: 0 0 calc(60% - 15px);
}

.trust-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.trust-icon {
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.trust-item h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-diagonal {
    padding: 80px 0;
    background-color: #f5f8fa;
    transform: skewY(2deg);
}

.testimonial-wrapper {
    transform: skewY(-2deg);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 40px;
}

.testimonial {
    flex: 1;
    background-color: var(--bg-white);
    padding: 36px 32px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.testimonial.testimonial-1 {
    transform: rotate(-1deg);
}

.testimonial.testimonial-2 {
    transform: rotate(1deg);
}

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

.testimonial footer {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
    font-weight: 600;
}

.benefits-overlap {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.benefits-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    align-items: center;
}

.benefit-block {
    flex: 0 0 calc(50% - 25px);
    padding: 40px;
}

.benefit-block.block-1 {
    transform: translateX(60px);
}

.benefit-block.block-2 {
    transform: translateX(-60px);
}

.benefit-visual {
    flex: 0 0 100%;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
    transform: rotate(-1deg);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.benefit-visual img {
    width: 100%;
    height: 100%;
}

.benefit-block h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.benefit-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-sticky-float {
    padding: 60px 0;
    background-color: var(--primary-color);
}

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

.cta-content p {
    font-size: 24px;
    color: white;
    margin-bottom: 24px;
    font-weight: 600;
}

.cta-button {
    display: inline-block;
    padding: 16px 42px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #d0d0d0;
    padding: 60px 0 20px;
}

.footer-main {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px 40px;
    display: flex;
    gap: 80px;
}

.footer-column {
    flex: 1;
}

.footer-column.col-offset-1 {
    transform: translateY(-10px);
}

.footer-column.col-offset-2 {
    transform: translateY(15px);
}

.footer-column.col-offset-3 {
    transform: translateY(5px);
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

.footer-column ul li a:hover {
    color: white;
}

.footer-references {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-references h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.references-list {
    list-style: decimal;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.5;
}

.references-list li a {
    color: #ffd699;
    text-decoration: none;
}

.references-list li a:hover {
    text-decoration: underline;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 40px;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #b0b0b0;
}

.footer-disclaimer strong {
    color: white;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #888;
}

.page-hero-offset {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f5f8fa 0%, #e8f0f5 100%);
}

.hero-content-irregular {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.hero-content-irregular h1 {
    font-size: 52px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.lead-text {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

.story-diagonal {
    padding: 80px 0;
}

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

.story-block.block-left {
    flex-direction: row;
}

.story-block.block-right {
    flex-direction: row-reverse;
}

.story-image {
    flex: 0 0 45%;
    height: 380px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.story-image img {
    width: 100%;
    height: 100%;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.story-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

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

.values-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.section-title-center {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.value-card {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.value-card.card-offset-1 {
    transform: translateY(-15px);
}

.value-card.card-offset-2 {
    transform: translateY(15px);
}

.value-card.card-offset-3 {
    transform: translateY(0);
}

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

.value-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.value-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-stagger {
    padding: 80px 0;
}

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

.container-wide h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.team-intro {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 50px;
}

.team-layout-irregular {
    display: flex;
    gap: 40px;
}

.team-member {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px 32px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.team-member.member-1 {
    transform: translateY(-20px);
}

.team-member.member-2 {
    transform: translateY(20px);
}

.team-member.member-3 {
    transform: translateY(0);
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.member-info h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 700;
}

.role {
    font-size: 14px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.member-info p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-diagonal {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
    transform: skewY(-2deg);
}

.cta-wrapper-asymmetric {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.cta-wrapper-asymmetric h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.cta-wrapper-asymmetric p {
    font-size: 18px;
    color: white;
    opacity: 0.95;
    margin-bottom: 32px;
}

.cta-button-large {
    display: inline-block;
    padding: 18px 46px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.page-hero-services {
    padding: 80px 0;
    background: linear-gradient(135deg, #e8f0f5 0%, #f5f8fa 100%);
    text-align: center;
}

.hero-services-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

.hero-services-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.hero-services-content p {
    font-size: 20px;
    color: var(--text-light);
}

.services-detail-asymmetric {
    padding: 80px 0;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    padding: 0 40px;
}

.service-detail.service-offset-1,
.service-detail.service-offset-3,
.service-detail.service-offset-5 {
    flex-direction: row;
}

.service-detail.service-offset-2,
.service-detail.service-offset-4 {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 45%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.service-visual img {
    width: 100%;
    height: 100%;
}

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 34px;
    color: var(--primary-color);
    margin-bottom: 18px;
    font-weight: 700;
}

.service-description {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 28px;
}

.service-features li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
}

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

.service-pricing {
    margin-bottom: 24px;
}

.price-label {
    font-size: 14px;
    color: var(--text-light);
    display: block;
    margin-bottom: 4px;
}

.price-value {
    font-size: 32px;
    color: var(--accent-color);
    font-weight: 700;
}

.btn-service-select {
    display: inline-block;
    padding: 14px 36px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.faq-offset {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.faq-list {
    margin-top: 40px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 28px 32px;
    border-radius: 8px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 19px;
    color: var(--primary-color);
    margin-bottom: 10px;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.cta-services-bottom {
    padding: 60px 0;
    background-color: var(--primary-color);
}

.cta-content-irregular {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 0 40px;
}

.cta-content-irregular h2 {
    font-size: 32px;
    color: white;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.cta-link:hover {
    background-color: #c96835;
    transform: translateY(-2px);
}

.contact-hero-diagonal {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f8fa 0%, #e8f0f5 100%);
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.contact-info-asymmetric {
    padding: 80px 0;
}

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

.contact-block {
    flex: 1;
    background-color: var(--bg-light);
    padding: 40px 32px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-block.block-address {
    transform: translateY(-20px);
}

.contact-block.block-email {
    transform: translateY(20px);
}

.contact-block.block-hours {
    transform: translateY(0);
}

.contact-block:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.contact-block h2 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-block p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.email-display {
    font-weight: 500;
}

.contact-map-offset {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.map-placeholder {
    height: 400px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 24px 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-overlay p {
    font-size: 16px;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    line-height: 1.6;
}

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

.help-options {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.help-option {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 10px;
}

.help-option h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.help-option p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.link-arrow:hover {
    text-decoration: underline;
}

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

.company-data {
    margin-top: 30px;
}

.company-data p {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #e8f5f1 0%, #f5f8fa 100%);
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.thanks-icon {
    color: #2ecc71;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.service-confirm {
    font-size: 18px;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 20px;
}

.info-text {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.next-steps {
    padding: 80px 0;
}

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

.step-item {
    flex: 1;
    background-color: var(--bg-light);
    padding: 36px 28px;
    border-radius: 10px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 700;
}

.step-item p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-cta {
    padding: 60px 0;
    background-color: var(--bg-light);
}

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

.cta-box p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 28px;
    font-weight: 600;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-secondary,
.btn-tertiary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-secondary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.legal-page {
    padding: 80px 0;
}

.legal-intro {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.7;
}

.legal-page h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 800;
}

.legal-page h2 {
    font-size: 26px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-page p {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 20px;
    padding-left: 28px;
}

.legal-page li {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.6;
}

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

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

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-text-offset {
        width: 60%;
    }

    .hero-image-block {
        left: 60%;
        width: 45%;
    }

    .services-grid-asymmetric {
        gap: 30px;
    }

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

    .team-layout-irregular {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .header-wrapper {
        flex-wrap: wrap;
        gap: 20px;
        padding: 16px 20px;
    }

    .nav-offset {
        flex-basis: 100%;
        justify-content: center;
        gap: 20px;
    }

    .ad-disclosure {
        margin-left: 0;
    }

    .hero-asymmetric {
        min-height: auto;
    }

    .hero-image-block {
        position: relative;
        left: 0;
        width: 100%;
        height: 300px;
        transform: none;
    }

    .hero-image-block img {
        transform: none;
    }

    .hero-text-offset {
        width: 100%;
        padding: 50px 20px;
    }

    .hero-title {
        font-size: 36px;
    }

    .container-fluid {
        flex-direction: column;
    }

    .intro-visual-right {
        flex: 0 0 100%;
        transform: none;
    }

    .section-title-offset {
        padding-left: 0;
        font-size: 32px;
    }

    .story-block {
        flex-direction: column;
    }

    .story-block.block-right {
        flex-direction: column;
    }

    .story-image {
        flex: 0 0 100%;
    }

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

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

    .service-detail.service-offset-2,
    .service-detail.service-offset-4 {
        flex-direction: column;
    }

    .service-visual {
        flex: 0 0 100%;
    }

    .testimonial-wrapper {
        flex-direction: column;
    }

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

    .benefit-block {
        flex: 0 0 100%;
        transform: none;
    }

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

    .cta-buttons {
        flex-direction: column;
    }

    .trust-grid-irregular {
        flex-direction: column;
    }

    .trust-item {
        flex: 0 0 100%;
    }

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