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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

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

.header-content.asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo-section h1 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2d5a3d;
    letter-spacing: -0.5px;
}

.main-nav.offset {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.main-nav a:hover {
    color: #2d5a3d;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 3px;
    background-color: #f5f5f5;
}

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

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

.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;
    margin: 0;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2d5a3d;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #234a30;
}

.cookie-btn.reject {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.cookie-btn.reject:hover {
    background-color: #d0d0d0;
}

.hero-visual.asymmetric-hero {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    overflow: hidden;
}

.hero-image-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-color: #e8e8e8;
}

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

.hero-text-offset {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 4rem 2rem 4rem 4rem;
    background-color: rgba(255, 255, 255, 0.95);
    margin-left: 5%;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.hero-text-offset h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    font-weight: 700;
}

.hero-text-offset p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.story-section.irregular-layout {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

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

.story-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
    font-weight: 600;
}

.story-block p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.8;
}

.citation {
    color: #2d5a3d;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.citation:hover {
    color: #234a30;
    text-decoration: underline;
}

.story-image.right-small {
    flex: 1;
    background-color: #e8e8e8;
}

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

.insight-section.diagonal-split {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: #f7f7f7;
    position: relative;
}

.insight-section.diagonal-split::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, #f7f7f7 50%, transparent 50%);
    z-index: 0;
}

.insight-text {
    flex: 1;
    position: relative;
    z-index: 10;
}

.insight-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.insight-visual {
    flex: 1;
    position: relative;
    z-index: 10;
    background-color: #e0e0e0;
}

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

.problem-section.full-width-dark {
    background-color: #2d5a3d;
    color: #ffffff;
    padding: 5rem 2rem;
    margin-bottom: 5rem;
}

.problem-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

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

.problem-card {
    flex: 1;
    min-width: 280px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.problem-card.offset-1 {
    margin-top: 0;
}

.problem-card.offset-2 {
    margin-top: 2rem;
}

.problem-card.offset-3 {
    margin-top: 4rem;
}

.problem-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.problem-card p {
    line-height: 1.7;
    color: #e8e8e8;
}

.approach-section.layered {
    max-width: 900px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.approach-text-main {
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    position: relative;
    margin-left: 3rem;
}

.approach-text-main h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.approach-text-main p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.cta-inline {
    display: inline-block;
    margin-top: 1.5rem;
    padding: 0.9rem 2rem;
    background-color: #2d5a3d;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-inline:hover {
    background-color: #234a30;
}

.testimonial-section.scattered-layout {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 4rem 2rem;
}

.testimonial-section h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d5a3d;
    text-align: center;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    background-color: #f7f7f7;
    padding: 2rem;
    border-left: 4px solid #2d5a3d;
    position: relative;
}

.testimonial.card-1 {
    margin-top: 0;
}

.testimonial.card-2 {
    margin-top: 2rem;
}

.testimonial.card-3 {
    margin-top: 4rem;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    display: block;
    font-weight: 600;
    color: #2d5a3d;
    font-style: normal;
}

.services-reveal.offset-section {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.services-reveal h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d5a3d;
    text-align: center;
}

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

.service-card {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.stagger-1 {
    margin-top: 0;
}

.service-card.stagger-2 {
    margin-top: 1.5rem;
}

.service-card.stagger-3 {
    margin-top: 3rem;
}

.service-card.stagger-4 {
    margin-top: 4.5rem;
}

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

.service-card h4 {
    font-size: 1.4rem;
    padding: 1.5rem 1.5rem 0.5rem;
    color: #2d5a3d;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    line-height: 1.6;
    color: #555;
}

.service-price {
    display: block;
    padding: 0 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.select-service-btn {
    display: block;
    width: calc(100% - 3rem);
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service-btn:hover {
    background-color: #234a30;
}

.cta-section.diagonal-block {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 4rem 3rem;
    background: linear-gradient(135deg, #2d5a3d 0%, #3a7050 100%);
    color: #ffffff;
    text-align: center;
    transform: skewY(-2deg);
}

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

.cta-section h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    margin-bottom: 0;
}

.form-section.offset-form {
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.form-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
    text-align: center;
}

.asymmetric-form {
    background-color: #ffffff;
    padding: 3rem;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    border-radius: 8px;
    margin-left: 2rem;
}

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

.form-group {
    margin-bottom: 1.5rem;
    flex: 1;
    min-width: 200px;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

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

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

.submit-btn {
    width: 100%;
    padding: 1rem;
    background-color: #2d5a3d;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #234a30;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 3rem 2rem;
    background-color: #f7f7f7;
    border-left: 5px solid #2d5a3d;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #555;
}

.main-footer {
    background-color: #1a1a1a;
    color: #e0e0e0;
    padding: 4rem 2rem 2rem;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.footer-section p {
    line-height: 1.7;
    color: #b0b0b0;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

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

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

.footer-section ol {
    padding-left: 1.5rem;
}

.footer-section ol li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-section ol li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.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.9rem;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content.asymmetric-layout {
    max-width: 800px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border-radius: 8px;
}

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

.thanks-content h2 {
    font-size: 2.5rem;
    color: #2d5a3d;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-confirmation {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 2rem;
    font-weight: 600;
}

.next-steps {
    text-align: left;
    margin: 3rem 0;
    padding: 2rem;
    background-color: #f7f7f7;
    border-radius: 4px;
}

.next-steps h3 {
    color: #2d5a3d;
    margin-bottom: 1rem;
}

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

.steps-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
}

.steps-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary,
.btn-secondary {
    padding: 0.9rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2d5a3d;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234a30;
}

.btn-secondary {
    background-color: #e0e0e0;
    color: #2c2c2c;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.about-hero.offset-layout {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 4rem 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-hero-text {
    flex: 1;
}

.about-hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.about-hero-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.philosophy-section.asymmetric-blocks {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-block {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

.philosophy-block.large {
    flex: 2;
    min-width: 400px;
}

.philosophy-block.small {
    flex: 1;
    min-width: 250px;
}

.philosophy-block h3,
.philosophy-block h4 {
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.philosophy-block p {
    line-height: 1.7;
    margin-bottom: 1rem;
}

.approach-section.diagonal-split {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.approach-text {
    flex: 1;
}

.approach-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

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

.approach-list li {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d5a3d;
    font-weight: bold;
}

.values-section.stacked-asymmetric {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 4rem 2rem;
    background-color: #f7f7f7;
}

.values-section h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #2d5a3d;
    text-align: center;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

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

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

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

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

.value-card h4 {
    color: #2d5a3d;
    margin-bottom: 1rem;
}

.value-card p {
    line-height: 1.7;
}

.team-section.layered-layout {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
}

.team-section h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

.team-content.asymmetric {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.team-text {
    flex: 1;
}

.team-text p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

.team-image {
    flex: 1;
    background-color: #e0e0e0;
}

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

.cta-section.offset-cta {
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background-color: #2d5a3d;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
    margin-left: 10%;
}

.cta-section.offset-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section.offset-cta p {
    margin-bottom: 2rem;
}

.services-intro.asymmetric-layout {
    max-width: 1200px;
    margin: 0 auto 4rem;
    padding: 4rem 2rem;
    text-align: center;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto;
}

.services-detailed.irregular-grid {
    max-width: 1400px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail-card {
    display: flex;
    gap: 2rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    align-items: flex-start;
}

.service-detail-card.large-left {
    flex-direction: row;
}

.service-detail-card.small-right {
    flex-direction: row-reverse;
    margin-left: 5%;
}

.service-detail-card.medium-center {
    flex-direction: row;
    margin: 0 auto;
    max-width: 1100px;
}

.service-detail-card.large-right {
    flex-direction: row-reverse;
}

.service-detail-card.small-left {
    flex-direction: row;
    margin-right: 5%;
}

.service-detail-card.medium-right {
    flex-direction: row-reverse;
    margin-left: 3%;
}

.service-detail-card .service-image {
    flex: 1;
    min-width: 300px;
    background-color: #e0e0e0;
}

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

.service-detail-card .service-info {
    flex: 1;
    padding: 2.5rem;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2d5a3d;
}

.service-info p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.service-details-row {
    display: flex;
    gap: 2rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.detail-item {
    flex: 1;
    min-width: 150px;
}

.detail-label {
    display: block;
    font-weight: 600;
    color: #2d5a3d;
    margin-bottom: 0.3rem;
}

.detail-value {
    display: block;
    color: #555;
}

.service-pricing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
    flex-wrap: wrap;
}

.service-pricing .price {
    font-size: 2rem;
    font-weight: 700;
    color: #2d5a3d;
}

.scientific-references.offset-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background-color: #f7f7f7;
    border-left: 5px solid #2d5a3d;
}

.scientific-references h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.scientific-references p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.references-list {
    padding-left: 1.5rem;
}

.references-list li {
    margin-bottom: 1rem;
    line-height: 1.6;
}

.references-list li a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list li a:hover {
    color: #234a30;
    text-decoration: underline;
}

.cta-section.centered-cta {
    max-width: 800px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background-color: #2d5a3d;
    color: #ffffff;
    text-align: center;
    border-radius: 8px;
}

.cta-section.centered-cta h3 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section.centered-cta p {
    margin-bottom: 2rem;
}

.contact-intro.asymmetric-layout {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 4rem 2rem;
}

.contact-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.contact-content.diagonal-layout {
    max-width: 1200px;
    margin: 0 auto 5rem;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

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

.contact-info-block h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

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

.contact-detail-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
    font-weight: 600;
}

.contact-detail-item p {
    line-height: 1.7;
    color: #555;
}

.email-text {
    color: #2c2c2c;
    font-weight: 500;
}

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

.contact-form-block h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

.contact-form {
    background-color: #f9f9f9;
    padding: 2.5rem;
    border-radius: 8px;
}

.location-section {
    max-width: 1000px;
    margin: 0 auto 5rem;
    padding: 3rem;
    background-color: #f7f7f7;
    border-radius: 8px;
}

.location-section h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2d5a3d;
}

.location-description {
    line-height: 1.8;
    color: #555;
}

.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2d5a3d;
}

.legal-content h3 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5a3d;
}

.legal-content h4 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d5a3d;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
}

.legal-content a {
    color: #2d5a3d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.legal-content a:hover {
    color: #234a30;
    text-decoration: underline;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    color: #888;
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-visual.asymmetric-hero {
        min-height: 500px;
    }

    .hero-text-offset {
        max-width: 500px;
        padding: 3rem 2rem;
    }

    .hero-text-offset h2 {
        font-size: 2rem;
    }

    .story-section.irregular-layout,
    .insight-section.diagonal-split,
    .approach-section.diagonal-split,
    .about-hero.offset-layout,
    .team-content.asymmetric,
    .contact-content.diagonal-layout {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

@media (max-width: 768px) {
    .header-content.asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav.offset {
        gap: 1rem;
        font-size: 0.9rem;
    }

    .hero-image-layer {
        width: 100%;
        position: relative;
        height: 300px;
    }

    .hero-text-offset {
        margin-left: 0;
        margin-top: -50px;
    }

    .services-asymmetric-grid {
        justify-content: center;
    }

    .service-card {
        margin-top: 0 !important;
    }

    .problem-card,
    .testimonial,
    .value-card {
        margin-top: 0 !important;
    }

    .asymmetric-form {
        margin-left: 0;
    }

    .cta-section.offset-cta {
        margin-left: 0;
    }
}