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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #4a7c59;
    --accent-color: #87a96b;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #666666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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(--bg-white);
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.nav-sidebar {
    position: fixed;
    left: 0;
    top: 0;
    width: 180px;
    height: 100vh;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    z-index: 1000;
}

.nav-brand a {
    color: var(--bg-white);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 60px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--bg-white);
}

.main-content {
    margin-left: 180px;
    min-height: 100vh;
}

.hero-asymmetric {
    min-height: 90vh;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

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

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

.hero-text-block h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 40px;
    max-width: 560px;
}

.hero-image-wrap {
    flex: 1;
    position: relative;
    transform: translateY(-40px);
}

.hero-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-heavy);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s ease, transform 0.2s ease;
}

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--bg-white);
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.cta-primary-large {
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.15rem;
    font-weight: 700;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary-large:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--bg-white);
}

.cta-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: var(--secondary-color);
}

.section-intro-offset {
    padding: 100px 60px;
    background: var(--bg-white);
}

.intro-narrow {
    max-width: 640px;
    margin: 0 0 60px 80px;
}

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

.intro-narrow p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.intro-wide-visual {
    margin-left: auto;
    max-width: 1000px;
}

.intro-wide-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

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

.problem-grid {
    display: flex;
    gap: 40px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: flex-start;
}

.problem-card {
    flex: 1;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.problem-card.offset-up {
    transform: translateY(-40px);
}

.problem-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.section-cta-inline {
    padding: 100px 60px;
    background: var(--primary-color);
}

.cta-box-asymmetric {
    max-width: 700px;
    margin-left: 120px;
    color: var(--bg-white);
}

.cta-box-asymmetric h2 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-box-asymmetric p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 35px;
    opacity: 0.95;
}

.section-insight {
    padding: 120px 60px;
    background: var(--bg-white);
}

.insight-split {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.insight-text {
    flex: 1.2;
}

.insight-text h2 {
    font-size: 2.3rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-dark);
}

.insight-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 25px;
    color: var(--text-medium);
}

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

.insight-list li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.insight-list li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.section-services-preview {
    padding: 100px 60px;
    background: var(--bg-light);
}

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

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.service-card.card-large {
    flex: 0 0 calc(60% - 15px);
}

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

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.service-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 15px 0;
    display: block;
}

.service-link {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: auto;
}

.services-cta-center {
    text-align: center;
    margin-top: 40px;
}

.section-trust-build {
    padding: 80px 60px;
    background: var(--bg-white);
}

.trust-container {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    justify-content: center;
}

.trust-stat {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.section-testimonial {
    padding: 100px 60px;
    background: var(--bg-light);
}

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

.testimonial-block p {
    font-size: 1.4rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
}

.testimonial-block cite {
    font-size: 1.05rem;
    font-style: normal;
    color: var(--text-medium);
}

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

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

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

.step-item {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

.step-item.offset-right {
    margin-left: 80px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    flex-shrink: 0;
}

.step-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

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

.section-form {
    padding: 120px 60px;
    background: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 700px;
    margin-left: 100px;
}

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

.form-intro h2 {
    font-size: 2.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-medium);
}

.contact-form {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    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: var(--primary-color);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-size: 1.05rem;
    font-weight: 700;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease;
}

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

.section-final-cta {
    padding: 120px 60px;
    background: var(--text-dark);
    text-align: center;
}

.final-cta-block h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 40px;
    line-height: 1.3;
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 60px 30px;
    margin-left: 0;
}

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    margin-left: 180px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-btn {
    display: block;
    padding: 18px 35px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.sticky-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-3px);
    color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 25px 30px;
    display: none;
    z-index: 10000;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
}

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

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

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

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

.btn-cookie {
    padding: 12px 30px;
    background: var(--bg-white);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-cookie:hover {
    background: var(--bg-light);
}

.btn-cookie.btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 1px solid var(--bg-white);
}

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

.page-header-asymmetric {
    padding: 120px 60px 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.page-header-asymmetric h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
    max-width: 800px;
}

.header-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
}

.services-detailed {
    padding: 60px 60px;
    background: var(--bg-white);
}

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

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

.service-detail-content {
    flex: 1.2;
}

.service-tag {
    display: inline-block;
    padding: 6px 16px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 20px;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 30px;
}

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

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

.service-includes li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-pricing {
    margin: 30px 0;
    padding: 25px 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
}

.price-main {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    display: block;
    margin-bottom: 8px;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.cta-service {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 700;
    border-radius: 6px;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.cta-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    color: var(--bg-white);
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.section-form-services {
    padding: 100px 60px;
    background: var(--bg-light);
}

.form-container-services {
    max-width: 800px;
    margin: 0 auto;
}

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

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

.about-hero {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.about-hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.3;
    color: var(--bg-white);
    max-width: 900px;
}

.about-story {
    padding: 100px 60px;
    background: var(--bg-white);
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 0 auto;
    align-items: center;
}

.story-content {
    flex: 1.3;
}

.story-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 25px;
}

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

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow-medium);
}

.about-values {
    padding: 100px 60px;
    background: var(--bg-light);
}

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

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

.value-card {
    flex: 0 0 calc(50% - 20px);
    background: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

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

.about-team {
    padding: 100px 60px;
    background: var(--bg-white);
}

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

.team-layout {
    display: flex;
    gap: 50px;
    max-width: 1300px;
    margin: 0 auto;
}

.team-member {
    flex: 1;
    text-align: center;
}

.member-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 25px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
}

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

.team-member h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.member-role {
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.about-approach-detail {
    padding: 100px 60px;
    background: var(--bg-light);
}

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

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

.approach-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.about-stats-extended {
    padding: 80px 60px;
    background: var(--bg-white);
}

.stats-container {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-value {
    display: block;
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-medium);
}

.about-cta {
    padding: 100px 60px;
    background: var(--bg-light);
    text-align: center;
}

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

.cta-content p {
    font-size: 1.15rem;
    color: var(--text-medium);
    margin-bottom: 35px;
}

.contact-header {
    padding: 140px 60px 60px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.contact-header h1 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.contact-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
}

.contact-info-section {
    padding: 80px 60px;
    background: var(--bg-white);
}

.contact-info-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 8px;
}

.info-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.info-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
}

.info-note {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

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

.map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background: var(--bg-white);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    box-shadow: var(--shadow-light);
}

.contact-cta {
    padding: 80px 60px;
    background: var(--bg-white);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.cta-box p {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.thanks-section {
    padding: 140px 60px 80px;
    background: var(--bg-white);
}

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

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 30px;
}

.service-info {
    margin: 20px 0;
}

.selected-service {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.thanks-next-steps {
    padding: 80px 60px;
    background: var(--bg-light);
}

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

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

.step-box {
    flex: 1;
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-light);
    text-align: center;
}

.step-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.step-box h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.step-box p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.legal-header {
    padding: 140px 60px 60px;
    background: var(--bg-light);
}

.legal-header h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.legal-date {
    font-size: 1rem;
    color: var(--text-light);
}

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

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

.legal-text h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 40px 0 20px;
    color: var(--text-dark);
}

.legal-text h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 30px 0 15px;
    color: var(--text-dark);
}

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

.legal-text ul {
    margin: 15px 0 15px 25px;
}

.legal-text ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 8px;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: underline;
}

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

.gdpr-table th,
.cookies-table th {
    background: var(--bg-light);
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.gdpr-table td,
.cookies-table td {
    padding: 15px;
    border: 1px solid var(--border-color);
    color: var(--text-medium);
}

.legal-footer-note {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .nav-sidebar {
        width: 0;
        padding: 0;
        overflow: hidden;
    }

    .main-content {
        margin-left: 0;
    }

    .footer-content {
        margin-left: 0;
    }

    .footer-bottom {
        margin-left: 0;
    }

    .hero-offset {
        flex-direction: column;
        gap: 40px;
    }

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

    .hero-image-wrap {
        transform: none;
    }

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

    .service-card.card-large,
    .service-card.card-small,
    .service-card.card-medium {
        flex: 1 1 100%;
    }

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

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

    .insight-split {
        flex-direction: column;
    }

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

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

    .contact-info-grid {
        flex-direction: column;
    }

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

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

    .trust-container {
        flex-direction: column;
        gap: 30px;
    }

    .stats-container {
        flex-wrap: wrap;
    }

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

    .value-card {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-intro-offset,
    .section-problem-amplify,
    .section-cta-inline,
    .section-insight,
    .section-services-preview,
    .section-form,
    .section-final-cta {
        padding: 60px 30px;
    }

    .intro-narrow {
        margin-left: 0;
    }

    .cta-box-asymmetric {
        margin-left: 0;
    }

    .form-container-asymmetric {
        margin-left: 0;
    }

    .step-item.offset-right {
        margin-left: 0;
    }

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

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }

    .sticky-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
}
