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

:root {
    --primary-color: #2d5f3f;
    --primary-dark: #1e3d2a;
    --secondary-color: #7a9d8c;
    --accent-color: #c89f5d;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e5e2;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.nav-asymmetric {
    background: var(--bg-white);
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

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

.nav-brand a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-disclosure {
    flex: 1;
    text-align: center;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    background: var(--bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    font-weight: 500;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    padding: 3rem 0;
    transform: translateX(50px);
}

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

.hero-text-block p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(40px) rotate(-2deg);
    background-color: var(--bg-light);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.intro-diagonal {
    background: var(--bg-white);
    padding: 5rem 2rem;
    transform: skewY(-2deg);
    margin-top: -3rem;
}

.intro-diagonal > * {
    transform: skewY(2deg);
}

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

.intro-diagonal h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-diagonal p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: var(--text-light);
}

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

.section-header-left {
    max-width: 1400px;
    margin: 0 auto 3rem;
    padding-left: 10%;
}

.section-header-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.section-header-left p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.cards-asymmetric-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    background: var(--bg-white);
    display: flex;
    align-items: stretch;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.service-card.card-1 { margin-left: 5%; }
.service-card.card-2 { margin-left: 15%; }
.service-card.card-3 { margin-left: 8%; }
.service-card.card-4 { margin-left: 18%; }
.service-card.card-5 { margin-left: 10%; }
.service-card.card-6 { margin-left: 12%; }

.card-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

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

.card-content {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.card-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.card-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.4rem;
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 1rem;
}

.select-service-btn {
    align-self: flex-start;
    padding: 0.8rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.select-service-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.approach-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 0 0 48%;
    transform: rotate(2deg);
    background-color: var(--bg-light);
}

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

.approach-content {
    flex: 1;
}

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

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.link-arrow {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    margin-top: 1rem;
    transition: color 0.3s, transform 0.2s;
}

.link-arrow:hover {
    color: var(--primary-dark);
    transform: translateX(5px);
}

.form-section-diagonal {
    background: var(--primary-color);
    padding: 6rem 2rem;
    transform: skewY(2deg);
    margin-top: 4rem;
}

.form-section-diagonal > * {
    transform: skewY(-2deg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

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

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

.trust-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.trust-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

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

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

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

.footer-main {
    flex: 1.5;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

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

.footer-col p {
    line-height: 1.7;
    color: var(--bg-light);
    font-size: 0.95rem;
}

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

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

.footer-col ul li a {
    color: var(--bg-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255,255,255,0.05);
    border-left: 3px solid var(--accent-color);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: var(--bg-light);
}

.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.9rem;
    color: var(--bg-light);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 2000;
    transition: transform 0.3s;
}

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

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

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

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

.btn-primary,
.btn-secondary {
    padding: 0.7rem 1.8rem;
    border: none;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.3s, transform 0.2s;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

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

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

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.page-hero-offset {
    padding: 5rem 2rem 4rem;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.hero-text-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding-left: 10%;
}

.hero-text-narrow h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-text-narrow p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.about-story {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.story-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-left {
    flex: 0 0 45%;
    transform: translateY(30px);
    background-color: var(--bg-light);
}

.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.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.story-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

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

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

.values-header h2 {
    font-size: 2.6rem;
    color: var(--text-dark);
    font-weight: 700;
}

.values-grid-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateX(15px);
    box-shadow: 0 4px 25px rgba(0,0,0,0.1);
}

.value-card:nth-child(1) { margin-left: 8%; max-width: 700px; }
.value-card:nth-child(2) { margin-left: 20%; max-width: 650px; }
.value-card:nth-child(3) { margin-left: 5%; max-width: 720px; }
.value-card:nth-child(4) { margin-left: 15%; max-width: 680px; }

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.experience-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.experience-content h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.experience-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

.experience-image {
    max-width: 1200px;
    margin: 0 auto;
    transform: rotate(-1deg);
    background-color: var(--bg-light);
}

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

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

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

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

.approach-steps-offset {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: var(--bg-white);
    padding: 2.5rem;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

.step:nth-child(odd) {
    margin-left: 5%;
}

.step:nth-child(even) {
    margin-left: 15%;
}

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

.step h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.cta-section-about {
    padding: 5rem 2rem;
    background: var(--primary-color);
}

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

.cta-content-centered h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

.cta-content-centered .cta-primary {
    background: var(--bg-white);
    color: var(--primary-color);
}

.cta-content-centered .cta-primary:hover {
    background: var(--bg-light);
}

.page-hero-services {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.page-hero-services h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.page-hero-services p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-detail-item.layout-right {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: var(--bg-light);
}

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

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

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

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

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.service-detail-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.service-pricing .price {
    font-size: 1.6rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    background: var(--primary-color);
    padding: 4rem;
    text-align: center;
    border-radius: 8px;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    font-weight: 700;
}

.cta-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.9);
    margin-bottom: 2rem;
}

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

.cta-box .cta-primary:hover {
    background: var(--bg-light);
}

.contact-hero {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 800;
}

.contact-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
}

.contact-main-section {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

.contact-info-block h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-note {
    background: var(--bg-light);
    padding: 1.5rem;
    border-left: 3px solid var(--accent-color);
    margin-top: 2rem;
}

.contact-note p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
}

.contact-image-block {
    flex: 0 0 45%;
    transform: rotate(2deg);
    background-color: var(--bg-light);
}

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

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

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

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

.approach-content-center p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.2rem;
}

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

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

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

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

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

.selected-service-info {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 4px;
    margin-top: 2rem;
}

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

.thanks-next-steps {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

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

.step-text h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

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

.thanks-resources {
    padding: 5rem 2rem;
    background: var(--bg-light);
    text-align: center;
}

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

.resources-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.resources-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--bg-white);
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: transform 0.2s, box-shadow 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.legal-page {
    padding: 5rem 2rem;
    background: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
}

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.legal-content a:hover {
    color: var(--primary-dark);
}

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

    .hero-text-block {
        transform: none;
    }

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

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

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

    .service-card.card-1,
    .service-card.card-2,
    .service-card.card-3,
    .service-card.card-4,
    .service-card.card-5,
    .service-card.card-6 {
        margin-left: 0;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .value-card:nth-child(1),
    .value-card:nth-child(2),
    .value-card:nth-child(3),
    .value-card:nth-child(4) {
        margin-left: 0;
        max-width: 100%;
    }

    .service-detail-item,
    .service-detail-item.layout-right {
        flex-direction: column;
    }

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

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-disclosure {
        text-align: left;
    }
}