* {
    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.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a2f23;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8f4ed;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-links a {
    color: #d4e8db;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #ffffff;
}

.ad-notice {
    font-size: 0.8rem;
    color: #a8c9b5;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    position: relative;
    z-index: 10;
}

.hero-text-block {
    max-width: 520px;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3rem 2.5rem;
    margin-left: 8%;
    margin-top: 3rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 2.8rem;
    color: #1a2f23;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 1.15rem;
    color: #445f52;
    margin-bottom: 2rem;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    z-index: 5;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
    background-color: #e8f1ec;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: #1f4629;
    transform: translateY(-2px);
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5f3f;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2d5f3f;
    border-radius: 4px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
    transform: translateY(-2px);
    cursor: pointer;
}

.intro-shifted {
    padding: 5rem 2rem 4rem;
    background-color: #ffffff;
}

.container-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.intro-column-left {
    flex: 1;
    padding-right: 2rem;
    margin-top: 2rem;
}

.intro-column-right {
    flex: 1;
    padding-left: 2rem;
    margin-top: 5rem;
}

.intro-column-left h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-column-left p,
.intro-column-right p {
    font-size: 1.05rem;
    color: #546e62;
    line-height: 1.8;
}

.services-preview {
    padding: 6rem 2rem;
    background-color: #f2f7f4;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card-offset {
    flex: 1 1 calc(40% - 1rem);
    min-width: 280px;
    margin-top: 3rem;
}

.service-card-small {
    flex: 1 1 calc(33% - 1.5rem);
    min-width: 280px;
    margin-top: -2rem;
}

.service-card-wide {
    flex: 1 1 calc(55% - 1rem);
    min-width: 320px;
}

.service-card-elevated {
    flex: 1 1 calc(45% - 1rem);
    min-width: 280px;
    margin-top: 4rem;
}

.service-image-container {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-color: #e8f1ec;
}

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

.service-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-info h3 {
    font-size: 1.4rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.service-info p {
    font-size: 0.95rem;
    color: #546e62;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2d5f3f;
    display: block;
    margin-bottom: 1.5rem;
}

.select-service-btn {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background-color: #1f4629;
    transform: translateY(-2px);
    cursor: pointer;
}

.cta-floating {
    padding: 5rem 2rem;
    background-color: #1a2f23;
    position: relative;
}

.cta-block-offset {
    max-width: 600px;
    margin-left: 15%;
    color: #ffffff;
}

.cta-block-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-block-offset p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #d4e8db;
}

.form-section-embedded {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.form-container-irregular {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-text {
    flex: 1;
    padding-top: 2rem;
}

.form-intro-text h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.form-intro-text p {
    font-size: 1.05rem;
    color: #546e62;
}

.contact-form {
    flex: 1.2;
    background-color: #f7faf8;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #c8d9d0;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.btn-submit {
    width: 100%;
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: #1f4629;
    transform: translateY(-2px);
    cursor: pointer;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fef9f3;
    border-top: 1px solid #e8dcc8;
}

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

.disclaimer-text {
    font-size: 0.9rem;
    color: #6b5d4f;
    line-height: 1.7;
    font-style: italic;
}

.main-footer {
    background-color: #1a2f23;
    color: #d4e8db;
    padding: 3rem 2rem 1.5rem;
}

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

.footer-col {
    flex: 1;
}

.footer-col-wide {
    flex: 1.5;
}

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

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

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

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

.footer-col ul li a {
    color: #d4e8db;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

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

.footer-bottom p {
    font-size: 0.85rem;
    color: #a8c9b5;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2f23;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    color: #d4e8db;
}

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

.btn-primary {
    background-color: #2d5f3f;
    color: #ffffff;
    padding: 0.7rem 1.8rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1f4629;
    cursor: pointer;
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    padding: 0.7rem 1.8rem;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #1a2f23;
    cursor: pointer;
}

.about-hero-offset {
    padding: 5rem 2rem 3rem;
    background-color: #f7faf8;
}

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

.about-hero-content h1 {
    font-size: 3rem;
    color: #1a2f23;
    margin-bottom: 3rem;
    max-width: 600px;
}

.about-image-embed {
    margin-left: 10%;
    margin-top: -1rem;
}

.about-image-embed img {
    width: 100%;
    max-width: 700px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8f1ec;
}

.story-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.story-container-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
}

.story-block-left {
    flex: 1;
    padding-right: 2rem;
}

.story-block-right {
    flex: 1;
    padding-left: 2rem;
    margin-top: 4rem;
}

.story-block h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 1.5rem;
}

.story-block p {
    font-size: 1.05rem;
    color: #546e62;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-section-layered {
    padding: 5rem 2rem;
    background-color: #f2f7f4;
}

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

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

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

.value-card {
    flex: 1 1 calc(33.333% - 1.5rem);
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-card-elevated {
    margin-top: 2rem;
}

.value-card-offset {
    margin-top: -1rem;
}

.value-card-shifted {
    margin-top: 3rem;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    color: #546e62;
    line-height: 1.7;
}

.team-section-asymmetric {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.team-intro {
    max-width: 1200px;
    margin: 0 auto 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.team-intro p {
    font-size: 1.1rem;
    color: #546e62;
    max-width: 600px;
}

.team-image-container {
    max-width: 1200px;
    margin: 0 auto;
    margin-left: 15%;
}

.team-image-container img {
    width: 100%;
    max-width: 900px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8f1ec;
}

.approach-section {
    padding: 5rem 2rem;
    background-color: #1a2f23;
    color: #ffffff;
}

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

.approach-container-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.approach-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
}

.approach-number {
    font-size: 3rem;
    font-weight: 700;
    color: #2d5f3f;
    display: block;
    margin-bottom: 1rem;
}

.approach-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.approach-item p {
    font-size: 1rem;
    color: #d4e8db;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    background-color: #f7faf8;
}

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

.cta-content-asymmetric h2 {
    font-size: 2.5rem;
    color: #1a2f23;
    margin-bottom: 1.5rem;
}

.cta-content-asymmetric p {
    font-size: 1.1rem;
    color: #546e62;
    margin-bottom: 2rem;
}

.services-hero {
    padding: 5rem 2rem 3rem;
    background-color: #f7faf8;
}

.services-hero-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.services-hero-text h1 {
    font-size: 3rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.services-hero-text p {
    font-size: 1.15rem;
    color: #546e62;
    max-width: 600px;
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-layout-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail {
    display: flex;
    gap: 3rem;
    background-color: #f7faf8;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-large {
    margin-left: -2rem;
}

.service-detail-offset {
    margin-left: 5%;
}

.service-detail-shifted {
    margin-right: 5%;
}

.service-detail-elevated {
    margin-left: 8%;
}

.service-detail-wide {
    margin-right: -2rem;
}

.service-detail-compact {
    margin-left: 3%;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #e8f1ec;
}

.service-detail-content {
    flex: 1.3;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 1.8rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.service-detail-content p {
    font-size: 1rem;
    color: #546e62;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    font-size: 0.95rem;
    color: #546e62;
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 1.5rem;
}

.price-label {
    font-size: 0.9rem;
    color: #546e62;
    display: block;
    margin-bottom: 0.3rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5f3f;
}

.form-section-services {
    padding: 6rem 2rem;
    background-color: #f2f7f4;
}

.form-wrapper-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 20%;
}

.form-wrapper-offset h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.form-wrapper-offset p {
    font-size: 1.05rem;
    color: #546e62;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 2rem 3rem;
    background-color: #f7faf8;
}

.contact-hero-layout {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-hero-layout h1 {
    font-size: 3rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.contact-hero-layout p {
    font-size: 1.15rem;
    color: #546e62;
    max-width: 600px;
}

.contact-info-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-block-main {
    flex: 1;
    padding-top: 2rem;
}

.contact-block-main h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 2.5rem;
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-bottom: 0.7rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #546e62;
    line-height: 1.7;
}

.email-display {
    color: #2c3e50;
    font-weight: 500;
}

.contact-block-image {
    flex: 1.2;
    margin-top: 4rem;
}

.contact-block-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #e8f1ec;
}

.contact-additional {
    padding: 5rem 2rem;
    background-color: #f2f7f4;
}

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

.contact-additional-content h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 2.5rem;
}

.contact-tips-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.contact-tip {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.contact-tip h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-bottom: 0.8rem;
}

.contact-tip p {
    font-size: 1rem;
    color: #546e62;
    line-height: 1.7;
}

.location-note {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.location-content h2 {
    font-size: 2rem;
    color: #1a2f23;
    margin-bottom: 1.5rem;
}

.location-content p {
    font-size: 1.05rem;
    color: #546e62;
    line-height: 1.8;
}

.thanks-section {
    padding: 6rem 2rem;
    background-color: #f7faf8;
}

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

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

.thanks-container h1 {
    font-size: 2.8rem;
    color: #1a2f23;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #2d5f3f;
    margin-bottom: 2rem;
    font-weight: 500;
}

.thanks-details {
    margin-bottom: 3rem;
}

.thanks-details p {
    font-size: 1.05rem;
    color: #546e62;
    line-height: 1.7;
    margin-bottom: 1rem;
}

#service-confirmation {
    font-weight: 600;
    color: #2d5f3f;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.what-next {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.what-next-content h2 {
    font-size: 2.2rem;
    color: #1a2f23;
    margin-bottom: 3rem;
    text-align: center;
}

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

.next-step {
    flex: 1 1 calc(50% - 1rem);
    min-width: 240px;
    padding: 2rem;
    background-color: #f7faf8;
    border-radius: 6px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d5f3f;
    display: block;
    margin-bottom: 1rem;
}

.next-step h3 {
    font-size: 1.4rem;
    color: #1a2f23;
    margin-bottom: 0.7rem;
}

.next-step p {
    font-size: 0.95rem;
    color: #546e62;
    line-height: 1.6;
}

.legal-content {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    color: #1a2f23;
    margin-bottom: 3rem;
}

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

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

.legal-section h3 {
    font-size: 1.3rem;
    color: #2d5f3f;
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

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

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

.legal-section ul li {
    font-size: 1rem;
    color: #546e62;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-section a:hover {
    color: #1f4629;
}

.no-link {
    color: #546e62;
    font-weight: 500;
}

.legal-update {
    font-size: 0.9rem;
    color: #7a8a82;
    font-style: italic;
    margin-top: 3rem;
}

@media (max-width: 1200px) {
    .hero-text-block {
        margin-left: 5%;
    }

    .hero-image-overlap {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .hero-asymmetric {
        min-height: auto;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        transform: none;
        margin-top: 2rem;
    }

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

    .container-asymmetric,
    .story-container-irregular,
    .contact-layout-asymmetric,
    .form-container-irregular {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-column-right,
    .story-block-right {
        margin-top: 0;
    }

    .team-image-container {
        margin-left: 0;
    }

    .approach-blocks {
        flex-direction: column;
    }

    .nav-links {
        gap: 1rem;
    }

    .ad-notice {
        display: none;
    }

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

    .form-wrapper-offset {
        margin-left: auto;
    }

    .service-detail-large,
    .service-detail-offset,
    .service-detail-shifted,
    .service-detail-elevated,
    .service-detail-wide,
    .service-detail-compact {
        margin-left: 0;
        margin-right: 0;
    }
}

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

    .services-hero-text h1,
    .about-hero-content h1,
    .contact-hero-layout h1,
    .legal-container h1,
    .thanks-container h1 {
        font-size: 2.2rem;
    }

    .cta-block-offset h2,
    .cta-content-asymmetric h2 {
        font-size: 2rem;
    }

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

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