* {
    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: #f8f9fa;
}

.hidden {
    display: none !important;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-cookie.accept {
    background-color: #2d5f4f;
    color: white;
}

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

.btn-cookie.reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2d5f4f;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background-color: #f0f0f0;
    border-radius: 3px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

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

.hero-content-offset {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    width: 100%;
}

.hero-text-block {
    max-width: 580px;
    background-color: rgba(255, 255, 255, 0.97);
    padding: 60px 50px;
    border-radius: 2px;
    margin-left: 60px;
    transform: translateY(-20px);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #1a2a2e;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    height: 80%;
    background-color: #2d5f4f;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.cta-primary {
    display: inline-block;
    background-color: #2d5f4f;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #3a7a65;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(45, 95, 79, 0.3);
}

.intro-offset {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.intro-narrow {
    max-width: 720px;
    margin: 0 auto 0 20%;
}

.intro-narrow h2 {
    font-size: 36px;
    color: #1a2a2e;
    margin-bottom: 28px;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-preview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-header-diagonal {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 80px;
}

.section-header-diagonal h2 {
    font-size: 42px;
    color: #1a2a2e;
    font-weight: 700;
}

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

.service-card {
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

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

.card-tall {
    flex: 1 1 calc(35% - 30px);
    min-width: 280px;
}

.card-wide {
    flex: 1 1 calc(65% - 30px);
    min-width: 280px;
    flex-direction: row;
}

.card-wide .service-content {
    order: 1;
}

.card-wide img {
    order: 2;
    width: 50%;
}

.card-offset {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    transform: translateY(20px);
}

.card-compact {
    flex: 1 1 calc(50% - 30px);
    min-width: 280px;
    transform: translateY(-20px);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e8f0ed;
}

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    color: #1a2a2e;
    margin-bottom: 14px;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 20px;
    flex: 1;
    line-height: 1.7;
}

.price {
    font-size: 28px;
    color: #2d5f4f;
    font-weight: 700;
    margin-bottom: 20px;
    display: block;
}

.btn-service {
    background-color: #2d5f4f;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-service:hover {
    background-color: #3a7a65;
    transform: translateX(4px);
}

.case-study-diagonal {
    padding: 120px 40px;
    background-color: #e8f0ed;
    position: relative;
    overflow: hidden;
}

.case-content-float {
    max-width: 600px;
    margin-left: auto;
    margin-right: 100px;
    position: relative;
    z-index: 10;
    background-color: white;
    padding: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.case-content-float h2 {
    font-size: 32px;
    color: #1a2a2e;
    margin-bottom: 24px;
    font-weight: 700;
}

.case-content-float p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.8;
}

.case-image-overlap {
    position: absolute;
    left: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 70%;
    background-color: #2d5f4f;
}

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

.methodology-split {
    padding: 100px 40px;
    background-color: #ffffff;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.method-text {
    flex: 1;
}

.method-text h2 {
    font-size: 36px;
    color: #1a2a2e;
    margin-bottom: 24px;
    font-weight: 700;
}

.method-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 28px;
    line-height: 1.8;
}

.method-list {
    list-style: none;
    padding-left: 0;
}

.method-list li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.method-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f4f;
    font-weight: bold;
}

.method-visual {
    flex: 1;
    background-color: #e8f0ed;
}

.method-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.testimonial-offset {
    padding: 80px 40px;
    background-color: #1a2a2e;
}

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

.testimonial-content blockquote {
    font-size: 26px;
    color: #ffffff;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 300;
}

.testimonial-content cite {
    font-size: 15px;
    color: #a0aec0;
    font-style: normal;
}

.cta-floating {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.cta-box-diagonal {
    max-width: 700px;
    margin: 0 auto 0 25%;
    background-color: #2d5f4f;
    padding: 60px 50px;
    color: white;
    transform: rotate(-1deg);
}

.cta-box-diagonal h2 {
    font-size: 32px;
    margin-bottom: 16px;
    font-weight: 700;
    transform: rotate(1deg);
}

.cta-box-diagonal p {
    font-size: 17px;
    margin-bottom: 28px;
    line-height: 1.7;
    transform: rotate(1deg);
}

.cta-secondary {
    display: inline-block;
    background-color: white;
    color: #2d5f4f;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    transform: rotate(1deg);
}

.cta-secondary:hover {
    background-color: #e8f0ed;
    transform: rotate(1deg) translateY(-2px);
}

.contact-form-section {
    padding: 100px 40px;
    background-color: #e8f0ed;
}

.form-container-offset {
    max-width: 600px;
    margin: 0 auto 0 20%;
    background-color: white;
    padding: 50px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-container-offset h2 {
    font-size: 32px;
    color: #1a2a2e;
    margin-bottom: 32px;
    font-weight: 700;
}

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

.consultation-form label {
    display: block;
    font-size: 14px;
    color: #2c3e50;
    margin-bottom: 8px;
    font-weight: 600;
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #2d5f4f;
    color: white;
    border: none;
    padding: 14px 36px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.main-footer {
    background-color: #1a2a2e;
    color: #a0aec0;
    padding: 60px 40px 20px;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section {
    flex: 1;
}

.footer-section h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 12px;
    font-weight: 600;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 8px;
}

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

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #2d5f4f;
}

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

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

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

.page-hero-offset {
    padding: 100px 40px 60px;
    background-color: #1a2a2e;
}

.hero-text-diagonal {
    max-width: 800px;
    margin: 0 auto 0 15%;
    transform: translateX(-20px);
}

.hero-text-diagonal h1 {
    font-size: 52px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text-diagonal p {
    font-size: 20px;
    color: #a0aec0;
    line-height: 1.6;
}

.about-story {
    padding: 100px 40px;
    background-color: #f8f9fa;
    position: relative;
}

.story-content-float {
    max-width: 600px;
    margin-left: 10%;
    position: relative;
    z-index: 10;
}

.story-content-float h2 {
    font-size: 36px;
    color: #1a2a2e;
    margin-bottom: 24px;
    font-weight: 700;
}

.story-content-float p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.8;
}

.story-image-overlap {
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    width: 40%;
    height: 60%;
    background-color: #e8f0ed;
}

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

.research-depth {
    padding: 100px 40px;
    background-color: #ffffff;
}

.depth-container-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
}

.depth-block {
    flex: 1 1 400px;
}

.depth-block h3 {
    font-size: 28px;
    color: #1a2a2e;
    margin-bottom: 18px;
    font-weight: 700;
}

.depth-block p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.depth-image {
    flex: 1 1 500px;
    background-color: #e8f0ed;
    min-height: 400px;
}

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

.offset-right {
    margin-left: auto;
    max-width: 500px;
}

.team-asymmetric {
    padding: 100px 40px;
    background-color: #e8f0ed;
}

.team-asymmetric h2 {
    font-size: 42px;
    color: #1a2a2e;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 60px;
    font-weight: 700;
}

.team-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-aspect {
    flex: 1 1 300px;
    background-color: white;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.team-aspect:nth-child(2) {
    transform: translateY(30px);
}

.team-aspect h3 {
    font-size: 24px;
    color: #1a2a2e;
    margin-bottom: 16px;
    font-weight: 700;
}

.team-aspect p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.8;
}

.philosophy-split {
    padding: 100px 40px;
    background-color: #ffffff;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
    align-items: center;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 36px;
    color: #1a2a2e;
    margin-bottom: 24px;
    font-weight: 700;
}

.philosophy-text p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.8;
}

.philosophy-visual {
    flex: 1;
    background-color: #e8f0ed;
}

.philosophy-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.values-offset {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.values-offset h2 {
    font-size: 42px;
    color: #1a2a2e;
    margin-bottom: 50px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-left: 4px solid #2d5f4f;
}

.value-item.offset-down {
    transform: translateY(30px);
}

.value-item h4 {
    font-size: 22px;
    color: #1a2a2e;
    margin-bottom: 14px;
    font-weight: 700;
}

.value-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.service-detail-asymmetric {
    max-width: 1400px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: center;
    background-color: white;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    color: #1a2a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.8;
}

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

.service-features li {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 10px;
    padding-left: 28px;
    position: relative;
}

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

.service-pricing-box {
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-price {
    font-size: 32px;
    color: #2d5f4f;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    background-color: #e8f0ed;
    min-height: 400px;
}

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

.contact-info-asymmetric {
    padding: 80px 40px;
    background-color: #ffffff;
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 80px;
}

.contact-block-offset {
    flex: 1;
}

.contact-block-offset h2 {
    font-size: 36px;
    color: #1a2a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-block-offset > p {
    font-size: 17px;
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 18px;
    color: #1a2a2e;
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8f0ed;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.contact-approach {
    padding: 80px 40px;
    background-color: #e8f0ed;
}

.approach-content {
    max-width: 800px;
    margin: 0 auto 0 20%;
}

.approach-content h2 {
    font-size: 32px;
    color: #1a2a2e;
    margin-bottom: 24px;
    font-weight: 700;
}

.approach-content p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 18px;
    line-height: 1.8;
}

.contact-next-steps {
    padding: 100px 40px;
    background-color: #ffffff;
}

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

.steps-container-diagonal h2 {
    font-size: 38px;
    color: #1a2a2e;
    margin-bottom: 50px;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.step-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 36px;
    border-left: 4px solid #2d5f4f;
}

.step-item.offset-down {
    transform: translateY(30px);
}

.step-item h3 {
    font-size: 22px;
    color: #1a2a2e;
    margin-bottom: 14px;
    font-weight: 700;
}

.step-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 40px;
    background-color: #e8f0ed;
}

.thanks-container {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

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

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

.thanks-content-offset h1 {
    font-size: 42px;
    color: #1a2a2e;
    margin-bottom: 16px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 32px;
}

.thanks-details {
    background-color: white;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 4px;
    text-align: left;
}

.thanks-details p {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.thanks-next-steps {
    background-color: #e8f0ed;
    padding: 40px;
    margin-bottom: 40px;
    border-radius: 4px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    color: #1a2a2e;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-next-steps ul {
    list-style: none;
}

.thanks-next-steps li {
    font-size: 15px;
    color: #2c3e50;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.thanks-next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2d5f4f;
    font-weight: bold;
}

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

.btn-primary {
    display: inline-block;
    background-color: #2d5f4f;
    color: white;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #3a7a65;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2d5f4f;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    border: 2px solid #2d5f4f;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5f4f;
    color: white;
}

.legal-page {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 42px;
    color: #1a2a2e;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #718096;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    color: #1a2a2e;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 40px;
}

.legal-content li {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-content a {
    color: #2d5f4f;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #3a7a65;
}

@media (max-width: 1024px) {
    .hero-image-overlap {
        width: 50%;
    }

    .hero-text-block {
        margin-left: 20px;
    }

    .methodology-split,
    .philosophy-split,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .case-image-overlap,
    .story-image-overlap {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        transform: none;
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .nav-links {
        gap: 16px;
    }

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 300px;
        margin-top: 30px;
    }

    .hero-text-block {
        margin-left: 0;
        transform: none;
        padding: 40px 30px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

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

    .card-wide {
        flex-direction: column;
    }

    .card-wide img {
        width: 100%;
        order: 1;
    }

    .card-wide .service-content {
        order: 2;
    }

    .card-tall,
    .card-wide,
    .card-offset,
    .card-compact {
        flex: 1 1 100%;
        transform: none;
    }

    .values-blocks,
    .steps-grid {
        flex-direction: column;
    }

    .value-item.offset-down,
    .step-item.offset-down,
    .team-aspect:nth-child(2) {
        transform: none;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-content-irregular {
        flex-direction: column;
        gap: 30px;
    }
}
