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

:root {
    --primary-color: #1a4d2e;
    --secondary-color: #2e7d32;
    --accent-color: #4caf50;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --text-white: #ffffff;
    --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', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    line-height: 1.3;
    font-weight: 700;
    color: var(--text-dark);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

section {
    padding: 4rem 1.5rem;
}

.nav-floating {
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    border-radius: 50px;
    box-shadow: var(--shadow-medium);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    max-width: 90%;
    width: auto;
}

.nav-brand a {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    white-space: nowrap;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu li a {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--secondary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--text-white);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: var(--shadow-heavy);
    transform: translateY(0);
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

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

.cookie-content p {
    color: var(--text-white);
    margin: 0;
    flex: 1;
    min-width: 250px;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    padding-top: 8rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-offset-left {
    flex: 1;
    min-width: 300px;
    padding-left: 10%;
}

.hero-offset-right {
    flex: 1;
    min-width: 300px;
    padding-right: 5%;
    padding-top: 3rem;
}

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

.hero-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.hero-image-wrap {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-heavy);
    transform: rotate(2deg);
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-medium);
}

.cta-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-heavy);
}

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

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

.cta-inline {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 2px solid var(--secondary-color);
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.cta-large {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 1.25rem 3rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-heavy);
}

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

.insight-block {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

.insight-narrow {
    max-width: 700px;
    margin: 0 auto;
    padding-left: 15%;
}

.insight-narrow h2 {
    margin-bottom: 1.5rem;
}

.insight-narrow p {
    font-size: 1.1rem;
    line-height: 1.9;
}

.services-offset {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.services-intro-left {
    flex: 0 0 350px;
    padding-right: 2rem;
}

.services-grid-right {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    align-items: flex-start;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    transition: all 0.3s ease;
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
}

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

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

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

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

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

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

.offset-card-6 {
    transform: translateY(10px);
}

.service-card-inner {
    padding: 2rem;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1.5rem 0;
}

.service-select {
    width: 100%;
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 0.875rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.testimonial-asymmetric {
    background: var(--primary-color);
    padding: 5rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.testimonial-offset {
    flex: 1;
    min-width: 300px;
}

.testimonial-offset:first-child {
    padding-left: 8%;
    margin-top: 2rem;
}

.testimonial-offset:last-child {
    padding-right: 5%;
    margin-bottom: 2rem;
}

.testimonial-asymmetric blockquote {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-asymmetric blockquote p {
    color: var(--text-white);
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-asymmetric cite {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
    font-size: 0.95rem;
}

.philosophy-split {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    padding: 6rem 2rem;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
}

.philosophy-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.philosophy-text {
    flex: 1;
    min-width: 300px;
    padding: 2rem 0;
}

.philosophy-text p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.results-offset {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.results-header {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.results-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.result-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.result-item:nth-child(odd) {
    transform: translateY(-10px);
}

.result-item:nth-child(even) {
    transform: translateY(10px);
}

.result-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.process-irregular {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.process-intro {
    max-width: 700px;
    margin-bottom: 4rem;
    padding-left: 10%;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-block {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--secondary-color);
}

.step-1 {
    transform: translateX(-20px);
}

.step-2 {
    transform: translateX(20px) translateY(30px);
}

.step-3 {
    transform: translateX(-15px) translateY(-20px);
}

.step-4 {
    transform: translateX(15px);
}

.step-num {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--text-white);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.cta-sticky-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 2rem;
    text-align: center;
}

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

.cta-content h2,
.cta-content p {
    color: var(--text-white);
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.form-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem;
    border: 2px 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(--secondary-color);
}

.btn-submit {
    background: var(--secondary-color);
    color: var(--text-white);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

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

.final-push {
    padding: 5rem 2rem;
    text-align: center;
    background: var(--bg-white);
}

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

.final-quote {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.footer-asymmetric {
    background: var(--text-dark);
    color: var(--text-white);
    padding: 4rem 2rem 2rem;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-brand {
    flex: 1.5;
}

.footer-col h3,
.footer-col h4 {
    color: var(--text-white);
    margin-bottom: 1rem;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

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

.footer-cta {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 0.75rem 1.5rem;
    border-radius: 6px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    opacity: 0;
    transform: translateY(100px);
    transition: all 0.3s ease;
}

.sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: var(--text-white);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: var(--shadow-heavy);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding-top: 10rem;
    padding-bottom: 4rem;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
    text-align: center;
}

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

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

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

.about-narrative {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    align-items: center;
}

.narrative-block {
    flex: 1.5;
    min-width: 300px;
}

.narrative-image {
    flex: 1;
    min-width: 300px;
}

.narrative-image img {
    border-radius: 12px;
    box-shadow: var(--shadow-medium);
}

.philosophy-deep {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.belief-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.belief-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.belief-item:nth-child(odd) {
    transform: translateX(-15px);
}

.belief-item:nth-child(even) {
    transform: translateX(15px);
}

.approach-section {
    padding: 6rem 2rem;
}

.approach-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-details {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: 12px;
    border-top: 4px solid var(--secondary-color);
}

.who-we-serve {
    background: var(--bg-light);
    padding: 6rem 2rem;
}

.who-content {
    max-width: 1200px;
    margin: 0 auto;
}

.who-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.who-content > p {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.who-types {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.type-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.difference-section {
    padding: 6rem 2rem;
}

.difference-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.difference-left,
.difference-right {
    flex: 1;
    min-width: 300px;
}

.difference-list {
    list-style: none;
    margin-bottom: 2rem;
}

.difference-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

.difference-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.difference-footnote {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.commitment-section {
    background: var(--bg-light);
    padding: 6rem 2rem;
    text-align: center;
}

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

.commitment-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.services-intro-section {
    background: var(--bg-light);
    padding: 4rem 2rem;
}

.services-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.service-detailed {
    padding: 3rem 2rem;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: 12px;
    box-shadow: var(--shadow-light);
    overflow: hidden;
}

.service-detail-header {
    background: var(--primary-color);
    color: var(--text-white);
    padding: 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.service-detail-header h2 {
    color: var(--text-white);
    margin: 0;
}

.service-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-detail-body {
    padding: 2.5rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.service-detail-left,
.service-detail-right {
    flex: 1;
    min-width: 280px;
}

.service-detail-body h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}

.service-detail-body h3:first-child {
    margin-top: 0;
}

.service-detail-right ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-detail-right ul li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-light);
}

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

.services-cta {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 5rem 2rem;
    text-align: center;
}

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

.services-cta-content h2,
.services-cta-content p {
    color: var(--text-white);
}

.services-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.investment-philosophy {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

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

.investment-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-main {
    padding: 5rem 2rem;
}

.contact-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.contact-info,
.contact-approach {
    flex: 1;
    min-width: 300px;
}

.contact-details {
    margin: 3rem 0;
}

.contact-detail-item {
    margin-bottom: 2.5rem;
}

.contact-detail-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-size: 1.15rem;
}

.contact-detail-item p,
.contact-detail-item a {
    color: var(--text-light);
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.contact-note p {
    margin: 0;
    font-style: italic;
}

.approach-steps {
    margin-top: 2rem;
}

.approach-step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

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

.step-content h4 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-faq {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

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

.faq-container h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow-light);
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.contact-final-cta {
    padding: 5rem 2rem;
    text-align: center;
}

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

.final-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.thanks-hero {
    padding-top: 10rem;
    padding-bottom: 5rem;
    text-align: center;
    background: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-lead {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.thanks-details {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.service-confirmation {
    color: var(--text-dark);
    margin: 0;
}

.service-confirmation strong {
    color: var(--secondary-color);
}

.thanks-next-steps {
    padding: 5rem 2rem;
}

.next-steps-content {
    max-width: 1200px;
    margin: 0 auto;
}

.next-steps-content h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.next-steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.next-step-card {
    flex: 1 1 calc(25% - 1.5rem);
    min-width: 200px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

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

.next-step-card h3 {
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.thanks-prepare {
    background: var(--bg-light);
    padding: 5rem 2rem;
}

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

.prepare-content h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.prepare-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.prepare-list {
    list-style: none;
    margin: 2rem 0;
}

.prepare-list li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-light);
    font-size: 1.05rem;
}

.prepare-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
}

.prepare-note {
    font-style: italic;
    text-align: center;
    margin-top: 2rem;
}

.thanks-explore {
    padding: 5rem 2rem;
}

.explore-content {
    max-width: 1200px;
    margin: 0 auto;
}

.explore-content h2 {
    text-align: center;
    margin-bottom: 1.5rem;
}

.explore-content > p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

.explore-links {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.explore-link {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.explore-link:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    transform: translateY(-5px);
}

.explore-link h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.explore-link p {
    margin: 0;
}

.thanks-testimonial {
    background: var(--primary-color);
    padding: 5rem 2rem;
}

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

.testimonial-content blockquote {
    background: rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-content blockquote p {
    color: var(--text-white);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

.legal-page {
    padding-top: 8rem;
    padding-bottom: 5rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.legal-container h1 {
    margin-bottom: 1rem;
}

.legal-updated {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-bottom: 3rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-content strong {
    color: var(--text-dark);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

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

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookie-table th {
    font-weight: 600;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.65rem;
    }

    h3 {
        font-size: 1.35rem;
    }

    section {
        padding: 3rem 1.5rem;
    }

    .nav-floating {
        top: 1rem;
        padding: 0.875rem 1.5rem;
        max-width: 95%;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        margin-top: 1rem;
        border-radius: 12px;
        box-shadow: var(--shadow-medium);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-asymmetric {
        padding-top: 6rem;
    }

    .hero-offset-left {
        padding-left: 0;
    }

    .hero-offset-right {
        padding-right: 0;
    }

    .insight-narrow {
        padding-left: 0;
    }

    .services-offset {
        flex-direction: column;
    }

    .services-intro-left {
        flex: 1;
        padding-right: 0;
    }

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

    .offset-card-1,
    .offset-card-2,
    .offset-card-3,
    .offset-card-4,
    .offset-card-5,
    .offset-card-6 {
        transform: none;
    }

    .testimonial-offset:first-child {
        padding-left: 0;
    }

    .testimonial-offset:last-child {
        padding-right: 0;
    }

    .result-item:nth-child(odd),
    .result-item:nth-child(even) {
        transform: none;
    }

    .process-intro {
        padding-left: 0;
    }

    .step-1,
    .step-2,
    .step-3,
    .step-4 {
        transform: none;
    }

    .belief-item:nth-child(odd),
    .belief-item:nth-child(even) {
        transform: none;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

    .sticky-cta a {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
    }

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

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

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .btn-accept,
    .btn-reject {
        width: 100%;
    }

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

    .next-step-card {
        flex: 1 1 100%;
    }
}
