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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #4a7c59;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #3a6347;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background-color: #ffffff;
    color: #1a1a1a;
}

.header-asymmetric {
    padding: 2rem 5%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand-block .logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c2c2c;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.main-nav a {
    color: #2c2c2c;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a7c59;
}

.ad-label {
    padding: 0.5rem 1rem;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #666;
    border-radius: 3px;
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 4rem 5%;
    background-color: #fafafa;
}

.hero-content-left {
    flex: 1;
    padding-right: 5%;
    max-width: 600px;
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: 3rem;
    margin-top: -4rem;
    background-color: #e8e8e8;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 1.1rem 2.8rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #4a7c59;
    transform: translateY(-2px);
}

.intro-narrative {
    padding: 8rem 5%;
    background-color: #ffffff;
}

.narrative-block {
    max-width: 750px;
    margin: 0 auto 0 10%;
}

.narrative-block p {
    font-size: 1.35rem;
    line-height: 1.9;
    margin-bottom: 2rem;
    color: #3a3a3a;
}

.problem-amplification-offset {
    display: flex;
    padding: 6rem 5%;
    background-color: #f8f8f8;
    gap: 4rem;
    align-items: center;
}

.problem-visual {
    flex: 0 0 45%;
    margin-right: -2rem;
    margin-top: 3rem;
    background-color: #e0e0e0;
}

.problem-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.problem-text {
    flex: 1;
    padding-left: 3rem;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    line-height: 1.25;
}

.problem-text p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.insight-reveal {
    padding: 8rem 5%;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.insight-container h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
}

.insight-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 3rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #4a7c59;
}

.insight-card.offset-up {
    margin-top: -3rem;
}

.insight-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.insight-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #d0d0d0;
}

.trust-building-diagonal {
    display: flex;
    padding: 7rem 5%;
    background-color: #ffffff;
    gap: 5rem;
    align-items: flex-start;
}

.trust-content-right {
    flex: 1;
    padding-top: 4rem;
}

.trust-content-right h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-content-right p {
    font-size: 1.2rem;
    margin-bottom: 1.8rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.trust-image-left {
    flex: 0 0 40%;
    margin-left: -3rem;
    margin-top: -5rem;
    background-color: #e8e8e8;
}

.trust-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.testimonial-scattered {
    padding: 8rem 5%;
    background-color: #f5f5f5;
}

.testimonial-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.testimonial-card {
    background-color: #ffffff;
    padding: 2.5rem;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 550px;
}

.testimonial-card.left-float {
    margin-left: 0;
}

.testimonial-card.right-float {
    margin-left: auto;
    margin-right: 0;
}

.testimonial-card.center-float {
    margin-left: 15%;
}

.testimonial-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #3a3a3a;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: block;
    font-size: 1rem;
    color: #666;
    font-style: normal;
}

.services-reveal {
    padding: 8rem 5%;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-header p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

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

.service-block {
    background-color: #fafafa;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-block.large-left {
    flex: 0 0 calc(60% - 1.5rem);
}

.service-block.small-right {
    flex: 0 0 calc(40% - 1.5rem);
    margin-top: 4rem;
}

.service-block.medium-left-offset {
    flex: 0 0 calc(55% - 1.5rem);
    margin-left: 5%;
}

.service-block.small-right-lower {
    flex: 0 0 calc(40% - 1.5rem);
    margin-top: -3rem;
}

.service-block.large-center {
    flex: 0 0 100%;
    flex-direction: row;
}

.service-block.large-center .service-image {
    flex: 0 0 50%;
}

.service-block.large-center .service-content {
    flex: 1;
}

.service-image {
    width: 100%;
    overflow: hidden;
    background-color: #e0e0e0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-content {
    padding: 2.5rem;
}

.service-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: #4a7c59;
    transform: translateX(5px);
}

.form-section-diagonal {
    padding: 8rem 5% 8rem 15%;
    background: linear-gradient(135deg, #4a7c59 0%, #2c5a3f 100%);
}

.form-container {
    max-width: 700px;
    background-color: #ffffff;
    padding: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    margin-left: auto;
    margin-right: 10%;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-container > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #4a4a4a;
}

.selected-service-display {
    background-color: #f5f5f5;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid #4a7c59;
}

.selected-service-display p {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.btn-clear {
    background-color: transparent;
    border: 1px solid #666;
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.btn-clear:hover {
    background-color: #2c2c2c;
    color: #ffffff;
    border-color: #2c2c2c;
}

.form-row {
    margin-bottom: 1.5rem;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e0e0e0;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #4a7c59;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #4a7c59;
}

.final-trust-block {
    padding: 7rem 5%;
    background-color: #fafafa;
}

.trust-wrapper {
    max-width: 800px;
    margin: 0 auto 0 20%;
}

.trust-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.trust-wrapper p {
    font-size: 1.25rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.disclaimer-section {
    padding: 4rem 5%;
    background-color: #fff9e6;
    border-top: 3px solid #f0d074;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #5a5a5a;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 5rem 5% 2rem 5%;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-block {
    flex: 1;
    min-width: 220px;
}

.footer-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #b0b0b0;
    margin-bottom: 0.5rem;
}

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

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

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

.footer-block ul li a:hover {
    color: #4a7c59;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #888;
    font-size: 0.95rem;
}

.about-hero-offset {
    padding: 8rem 5% 6rem 15%;
    background-color: #fafafa;
}

.about-content-wrap {
    max-width: 800px;
}

.about-content-wrap h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
}

.about-content-wrap p {
    font-size: 1.3rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-story-diagonal {
    display: flex;
    padding: 7rem 5%;
    background-color: #ffffff;
    gap: 5rem;
    align-items: center;
}

.story-image-left {
    flex: 0 0 45%;
    margin-left: -3rem;
    margin-top: -4rem;
    background-color: #e0e0e0;
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.story-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-content-right p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.values-asymmetric {
    padding: 8rem 5%;
    background-color: #f5f5f5;
}

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

.values-container h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.values-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.value-block {
    flex: 0 0 calc(50% - 1.5rem);
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.value-block.offset-left {
    margin-left: 0;
}

.value-block.offset-right-up {
    margin-top: -2rem;
}

.value-block.offset-left-down {
    margin-top: 2rem;
}

.value-block.offset-right {
    margin-left: auto;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.process-reveal {
    padding: 8rem 5%;
    background-color: #ffffff;
}

.process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.process-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 4rem;
    text-align: center;
    color: #1a1a1a;
}

.process-flow-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.process-step {
    background-color: #fafafa;
    padding: 2.5rem;
    border-left: 5px solid #4a7c59;
}

.process-step.step-wide {
    flex: 0 0 100%;
}

.process-step.step-narrow-offset {
    flex: 0 0 calc(60% - 1rem);
    margin-left: auto;
}

.process-step.step-wide-offset-down {
    flex: 0 0 100%;
    margin-left: 5%;
}

.process-step.step-narrow {
    flex: 0 0 calc(55% - 1rem);
}

.process-step.step-wide-center {
    flex: 0 0 100%;
    margin-left: 10%;
    margin-right: 10%;
}

.process-step h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.process-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.workshop-visual {
    padding: 6rem 5%;
    background-color: #2c2c2c;
}

.workshop-image-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #e0e0e0;
}

.workshop-image-container img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.workshop-caption {
    max-width: 1200px;
    margin: 2rem auto 0 auto;
    padding: 0 5%;
}

.workshop-caption p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #d0d0d0;
}

.team-philosophy {
    padding: 7rem 5%;
    background-color: #ffffff;
}

.philosophy-content {
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.philosophy-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 1.2rem;
    line-height: 1.85;
    margin-bottom: 1.8rem;
    color: #4a4a4a;
}

.commitment-block {
    padding: 7rem 5%;
    background-color: #f5f5f5;
}

.commitment-wrapper {
    max-width: 800px;
    margin: 0 auto 0 10%;
}

.commitment-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.commitment-wrapper p {
    font-size: 1.2rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.services-hero {
    padding: 8rem 5%;
    background-color: #fafafa;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 1.25rem;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed-asymmetric {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    margin-bottom: 6rem;
    align-items: flex-start;
}

.service-detail-block.large-offset-left {
    margin-left: 0;
}

.service-detail-block.medium-offset-right {
    margin-left: auto;
    margin-right: 0;
    max-width: 90%;
}

.service-detail-block.large-center {
    max-width: 100%;
}

.service-detail-block.medium-offset-left {
    margin-right: auto;
    max-width: 85%;
}

.service-detail-block.medium-offset-right-down {
    margin-left: 10%;
    margin-top: -3rem;
}

.service-detail-visual {
    flex: 0 0 45%;
    background-color: #e0e0e0;
}

.service-detail-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

.service-detail-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.service-detail-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.service-detail-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a7c59;
    margin-bottom: 0.5rem;
}

.service-timeline {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 2rem;
}

.btn-service-select {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.btn-service-select:hover {
    background-color: #4a7c59;
    transform: translateX(5px);
}

.service-approach {
    padding: 6rem 5%;
    background-color: #f5f5f5;
}

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

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.next-steps-asymmetric {
    padding: 7rem 5% 7rem 15%;
    background-color: #2c2c2c;
    color: #ffffff;
}

.next-steps-wrapper {
    max-width: 800px;
}

.next-steps-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #ffffff;
}

.next-steps-wrapper p {
    font-size: 1.2rem;
    line-height: 1.85;
    margin-bottom: 1.5rem;
    color: #d0d0d0;
}

.btn-cta-large {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    margin-top: 1.5rem;
    transition: all 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #3a6347;
    transform: translateY(-2px);
}

.contact-hero-offset {
    padding: 8rem 5% 6rem 10%;
    background-color: #fafafa;
}

.contact-intro {
    max-width: 700px;
}

.contact-intro h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.contact-intro p {
    font-size: 1.25rem;
    color: #4a4a4a;
}

.contact-information-asymmetric {
    display: flex;
    padding: 7rem 5%;
    background-color: #ffffff;
    gap: 5rem;
    align-items: flex-start;
}

.contact-details-left {
    flex: 1;
}

.contact-details-left h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.detail-block {
    margin-bottom: 3rem;
}

.detail-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c2c2c;
}

.detail-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.contact-visual-right {
    flex: 0 0 45%;
    margin-top: -5rem;
    background-color: #e0e0e0;
}

.contact-visual-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.visit-information {
    padding: 6rem 5%;
    background-color: #f5f5f5;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.visit-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.inquiry-guidelines-offset {
    padding: 7rem 5% 7rem 10%;
    background-color: #ffffff;
}

.guidelines-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.guidelines-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.guidelines-list {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.guideline-item {
    flex: 0 0 calc(50% - 1.5rem);
    background-color: #fafafa;
    padding: 2.5rem;
    border-left: 4px solid #4a7c59;
}

.guideline-item.offset-right {
    margin-left: auto;
}

.guideline-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.guideline-item p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a4a4a;
}

.response-expectations {
    padding: 6rem 5%;
    background-color: #f5f5f5;
}

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

.expectations-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.expectations-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.location-details {
    padding: 6rem 5% 6rem 20%;
    background-color: #ffffff;
}

.location-wrapper {
    max-width: 800px;
}

.location-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.location-wrapper p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.final-contact-cta {
    padding: 7rem 5%;
    background-color: #2c2c2c;
    color: #ffffff;
    text-align: center;
}

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

.cta-wrapper h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: #d0d0d0;
}

.btn-contact-main {
    display: inline-block;
    padding: 1.2rem 3rem;
    background-color: #4a7c59;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.btn-contact-main:hover {
    background-color: #3a6347;
    transform: translateY(-2px);
}

.thanks-hero {
    padding: 8rem 5%;
    background-color: #fafafa;
    text-align: center;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.3rem;
    color: #4a4a4a;
}

.thanks-details {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.thanks-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.confirmation-message {
    margin-bottom: 4rem;
}

.confirmation-message h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.confirmation-message p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.service-reference {
    background-color: #f5f5f5;
    padding: 1.5rem;
    margin-top: 2rem;
    border-left: 4px solid #4a7c59;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c2c2c;
    display: none;
}

.timeline-info,
.next-actions {
    margin-bottom: 3rem;
}

.timeline-info h3,
.next-actions h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.timeline-info ul {
    margin-left: 1.5rem;
}

.timeline-info ul li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.next-actions p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.thanks-additional-resources {
    padding: 6rem 5%;
    background-color: #f5f5f5;
}

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

.resource-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.resource-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.resource-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.btn-resource {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c2c2c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-resource:hover {
    background-color: #4a7c59;
}

.thanks-reassurance {
    padding: 6rem 5%;
    background-color: #ffffff;
}

.reassurance-content {
    max-width: 900px;
    margin: 0 auto 0 15%;
}

.reassurance-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.reassurance-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
}

.legal-page-content {
    padding: 8rem 5%;
    background-color: #ffffff;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-updated {
    font-size: 1rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a4a4a;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: #4a4a4a;
}

.legal-section ul ul {
    margin-top: 0.75rem;
}

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

    .hero-image-right {
        margin-left: 0;
        margin-top: 3rem;
        width: 100%;
    }

    .problem-amplification-offset {
        flex-direction: column;
    }

    .problem-visual {
        margin-right: 0;
        margin-top: 0;
        width: 100%;
    }

    .trust-building-diagonal {
        flex-direction: column-reverse;
    }

    .trust-image-left {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

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

    .story-image-left {
        margin-left: 0;
        margin-top: 0;
        width: 100%;
    }

    .contact-information-asymmetric {
        flex-direction: column;
    }

    .contact-visual-right {
        margin-top: 2rem;
        width: 100%;
    }

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

    .service-detail-visual {
        width: 100%;
    }

    .services-asymmetric .service-block {
        flex: 0 0 100%;
        margin: 0 0 2rem 0;
    }

    .service-block.large-center {
        flex-direction: column;
    }

    .value-block {
        flex: 0 0 100%;
    }

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

@media (max-width: 768px) {
    .nav-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }

    .main-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .hero-content-left h1 {
        font-size: 2.5rem;
    }

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

    .insight-card.offset-up {
        margin-top: 0;
    }

    .testimonial-card.left-float,
    .testimonial-card.right-float,
    .testimonial-card.center-float {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .footer-grid {
        flex-direction: column;
        gap: 2rem;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: space-between;
    }
}
