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

:root {
    --primary-color: #2d5016;
    --secondary-color: #5a7c3e;
    --accent-color: #8b6f47;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f9f7f4;
    --bg-white: #ffffff;
    --border-color: #e0d5c7;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.7;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-transform: lowercase;
}

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

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    position: absolute;
    right: 5%;
    top: -25px;
    font-size: 0.75rem;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 80, 22, 0.95);
    color: white;
    padding: 1.5rem;
    z-index: 1000;
    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;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.9rem;
}

.cookie-content a {
    color: #a8d88f;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: var(--bg-light);
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: center;
    position: relative;
    padding: 4rem 5%;
    background-color: var(--bg-light);
}

.hero-content-offset {
    width: 45%;
    padding-right: 3rem;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.hero-image-wrapper {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    overflow: hidden;
}

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

.story-offset {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.story-block {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.story-block.left-heavy .story-text {
    flex: 1.5;
}

.story-block.left-heavy .story-visual {
    flex: 1;
}

.story-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.story-visual {
    background-color: var(--bg-light);
}

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

.insight-diagonal {
    padding: 7rem 5%;
    background-color: var(--bg-light);
    position: relative;
}

.insight-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.insight-grid-stagger {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.insight-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
    border: 1px solid var(--border-color);
}

.insight-card.elevated {
    transform: translateY(-20px);
}

.insight-card.sunken {
    transform: translateY(20px);
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.insight-card p {
    color: var(--text-light);
    font-size: 1rem;
}

.testimonial-scattered {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.testimonial-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    border-left: 4px solid var(--accent-color);
    padding: 2rem 2.5rem;
    background-color: var(--bg-light);
}

.testimonial.offset-right {
    margin-left: 15%;
}

.testimonial.offset-left {
    margin-right: 15%;
}

.testimonial.centered {
    margin: 0 10%;
}

.testimonial p {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.testimonial cite {
    font-style: normal;
    font-size: 0.95rem;
    color: var(--text-light);
}

.approach-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 7rem 5%;
    background-color: var(--bg-light);
}

.approach-content {
    flex: 1.3;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

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

.step-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.step-card.wide {
    width: calc(60% - 1rem);
}

.step-card.narrow {
    width: calc(40% - 1rem);
}

.step-number {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.step-card p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.approach-visual-offset {
    flex: 0.7;
    background-color: var(--bg-white);
}

.approach-visual-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-showcase {
    padding: 7rem 5%;
    background-color: var(--bg-white);
}

.services-showcase h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.service-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.service-card.featured {
    width: calc(50% - 1.25rem);
}

.service-card.standard {
    width: calc(33.333% - 1.75rem);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--border-color);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
}

.cta-form-section {
    padding: 7rem 5%;
    background-color: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-intro p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    font-size: 1rem;
    font-family: 'Georgia', serif;
    background-color: var(--bg-white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--secondary-color);
}

.trust-elements {
    padding: 5rem 5%;
    background-color: var(--bg-white);
}

.trust-grid {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    text-align: center;
    max-width: 300px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.trust-item p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.disclaimer-section {
    padding: 3rem 5%;
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.disclaimer-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    text-align: center;
}

.footer {
    background-color: var(--primary-color);
    color: white;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    gap: 4rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column ul li a {
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.about-hero {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-hero-content p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-story-offset {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.about-content-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-text-block {
    flex: 1.2;
}

.about-text-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.about-text-block p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.about-image-offset {
    flex: 0.8;
    background-color: var(--bg-light);
}

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

.philosophy-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.philosophy-grid-irregular {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.philosophy-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    width: calc(33.333% - 1.75rem);
    min-width: 280px;
    border: 1px solid var(--border-color);
}

.philosophy-card.elevated-left {
    transform: translateY(-30px);
}

.philosophy-card.sunken-right {
    transform: translateY(30px);
}

.philosophy-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.philosophy-card p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.team-section-scattered {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.team-section-scattered h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.team-layout-asymmetric {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.team-text {
    flex: 1;
}

.team-text p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.team-image {
    flex: 1;
    background-color: var(--bg-light);
}

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

.values-diagonal {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.values-diagonal h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

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

.value-item {
    padding: 2rem;
    background-color: var(--bg-white);
    border-left: 4px solid var(--accent-color);
}

.value-item:nth-child(even) {
    margin-left: 5%;
}

.value-item:nth-child(odd) {
    margin-right: 5%;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.process-visual {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.process-timeline-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.timeline-step {
    background-color: var(--bg-light);
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.timeline-step.wide {
    width: calc(60% - 1rem);
}

.timeline-step.narrow {
    width: calc(40% - 1rem);
}

.step-marker {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.timeline-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.timeline-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-about {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-content-offset {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-offset h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.btn-primary-large {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-primary-large:hover {
    background-color: var(--secondary-color);
}

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

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.services-intro {
    font-size: 1.2rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.service-detail-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.service-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 2.5rem;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: var(--border-color);
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.service-price-display {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.additional-services {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.additional-services h2 {
    font-size: 2.3rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--primary-color);
}

.additional-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.additional-item {
    background-color: var(--bg-white);
    padding: 2rem;
    width: calc(33.333% - 1.75rem);
    min-width: 280px;
    border: 1px solid var(--border-color);
}

.additional-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.additional-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

.cta-services-form {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

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

.form-container-centered h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-container-centered > p {
    font-size: 1.05rem;
    margin-bottom: 3rem;
    color: var(--text-light);
}

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

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.contact-content-asymmetric {
    padding: 6rem 5%;
    background-color: var(--bg-white);
}

.contact-info-offset {
    display: flex;
    gap: 4rem;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

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

.contact-visual {
    flex: 1;
    background-color: var(--bg-light);
}

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

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

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

.approach-text-centered h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.approach-text-centered p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: var(--text-light);
}

.contact-map-placeholder {
    padding: 0;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: var(--border-color);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-overlay {
    background-color: rgba(45, 80, 22, 0.8);
    color: white;
    padding: 2rem 3rem;
    text-align: center;
}

.map-overlay p {
    font-size: 1.2rem;
    margin: 0;
}

.thanks-section {
    padding: 6rem 5%;
    background-color: var(--bg-white);
    display: flex;
    gap: 4rem;
    align-items: center;
}

.thanks-content {
    flex: 1;
}

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

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

.service-confirmation {
    font-size: 1.05rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 2rem;
}

.thanks-next-steps {
    margin-bottom: 2.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.steps-list li {
    padding: 0.7rem 0;
    padding-left: 1.8rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-dark);
}

.steps-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-size: 1rem;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
}

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

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

.thanks-visual {
    flex: 0.8;
    background-color: var(--bg-light);
}

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

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

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

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

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

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

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

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

.legal-content ul li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 3rem 5%;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-image-wrapper {
        position: static;
        width: 100%;
        height: 400px;
    }

    .story-block,
    .about-content-asymmetric,
    .team-layout-asymmetric,
    .contact-info-offset,
    .approach-asymmetric,
    .service-detail-card,
    .thanks-section {
        flex-direction: column;
    }

    .service-card.featured,
    .service-card.standard {
        width: calc(50% - 1.25rem);
    }

    .step-card.wide,
    .step-card.narrow,
    .timeline-step.wide,
    .timeline-step.narrow {
        width: 100%;
    }

    .service-detail-card.offset-right,
    .service-detail-card.offset-left {
        margin-left: 0;
        margin-right: 0;
    }
}

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

    .ad-disclosure {
        position: static;
        margin-top: 1rem;
    }

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

    .insight-card,
    .philosophy-card,
    .additional-item,
    .service-card.featured,
    .service-card.standard {
        width: 100%;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }
}