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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8b7355;
    --accent-color: #c49b6c;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6b6b6b;
    --background-light: #f8f7f5;
    --background-white: #ffffff;
    --border-color: #e0ddd8;
    --error-color: #c43e3e;
    --success-color: #3e7c52;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Helvetica Neue', 'Arial', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-dark);
}

h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.25rem;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--background-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;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

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

.btn-accept, .btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-accept:hover, .btn-reject:hover {
    transform: translateY(-2px);
}

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

.btn-accept:hover {
    background-color: #1f3e29;
}

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

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

.header-main {
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-logo a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: lowercase;
    letter-spacing: 0.5px;
}

.nav-primary ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-primary a {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-style: italic;
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 3px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--background-light);
}

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 500px;
}

.hero-image-right {
    flex: 1;
    background-color: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--background-white);
    padding: 1rem 2rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1f3e29;
    transform: translateY(-2px);
    color: var(--background-white);
}

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

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

.intro-image-left {
    flex: 1;
    background-color: var(--background-light);
}

.intro-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.intro-text-right {
    flex: 1;
}

.intro-text-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

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

.services-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.services-header-center h2 {
    font-size: 2.75rem;
    margin-bottom: 1rem;
}

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

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

.service-card {
    background-color: var(--background-white);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    background-color: var(--background-light);
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    flex-grow: 1;
}

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Helvetica Neue', sans-serif;
}

.btn-select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.875rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--background-white);
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-select-service:hover {
    background-color: #6d5840;
    transform: translateY(-2px);
}

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

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

.consultation-text-left {
    flex: 1;
}

.consultation-text-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

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

.consultation-form-right {
    flex: 1;
    background-color: var(--background-light);
    padding: 2.5rem;
    border-radius: 8px;
}

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

.consultation-form label {
    display: block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.consultation-form input,
.consultation-form select,
.consultation-form textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: Georgia, serif;
    font-size: 1rem;
    color: var(--text-dark);
    background-color: var(--background-white);
    transition: border-color 0.3s ease;
}

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

.consultation-form textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: var(--primary-color);
    color: var(--background-white);
    border: none;
    border-radius: 4px;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

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

.trust-container h2 {
    font-size: 2.5rem;
    color: var(--background-white);
    margin-bottom: 3rem;
}

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

.trust-item {
    flex: 1;
    max-width: 300px;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.trust-item p {
    color: rgba(255, 255, 255, 0.9);
}

.footer-main {
    background-color: var(--text-dark);
    color: var(--background-white);
    padding: 4rem 2rem 0;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-brand,
.footer-links,
.footer-legal,
.footer-contact {
    flex: 1;
    min-width: 200px;
}

.footer-main h3,
.footer-main h4 {
    color: var(--background-white);
    margin-bottom: 1rem;
}

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

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

.footer-main a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-main a:hover {
    color: var(--accent-color);
}

.footer-main p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.email-display {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-hero {
    background-color: var(--background-light);
    padding: 4rem 2rem;
    text-align: center;
}

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

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

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

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

.about-text-side h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.about-image-side {
    flex: 1;
    background-color: var(--background-light);
}

.about-image-side img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.values-section {
    padding: 5rem 2rem;
    background-color: var(--background-light);
}

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

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

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

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

.value-item h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.value-item p {
    color: var(--text-light);
}

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

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

.approach-image-left {
    flex: 1;
    background-color: var(--background-light);
}

.approach-image-left img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.approach-text-right {
    flex: 1;
}

.approach-text-right h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

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

.cta-inline {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: var(--secondary-color);
    color: var(--background-white);
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-inline:hover {
    background-color: #6d5840;
    transform: translateY(-2px);
    color: var(--background-white);
}

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

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

.credentials-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.credentials-container p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.cta-section-about {
    padding: 4rem 2rem;
    background-color: var(--secondary-color);
    text-align: center;
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    color: var(--background-white);
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2rem;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.service-detail-item {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    padding-bottom: 5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.service-detail-content-left,
.service-detail-content-right {
    flex: 1;
}

.service-detail-content-left h2,
.service-detail-content-right h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

.service-detail-content-left p,
.service-detail-content-right p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.service-detail-features {
    margin: 2rem 0;
}

.service-detail-features h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.service-detail-features ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.75rem;
    color: var(--text-light);
}

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

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-amount {
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image-right,
.service-detail-image-left {
    flex: 1;
    background-color: var(--background-light);
}

.service-detail-image-right img,
.service-detail-image-left img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

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

.services-cta {
    padding: 4rem 2rem;
    background-color: var(--background-light);
    text-align: center;
}

.services-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

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

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

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

.contact-info-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-info-left p {
    font-size: 1.05rem;
    color: var(--text-light);
}

.contact-details {
    margin: 3rem 0;
}

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

.contact-detail-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.contact-detail-item p {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

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

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
    color: var(--text-light);
}

.contact-image-right {
    flex: 1;
    background-color: var(--background-light);
}

.contact-image-right img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

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

.contact-approach-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-approach-container h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.approach-steps {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.approach-step {
    flex: 1;
    max-width: 300px;
    text-align: center;
}

.step-number {
    display: inline-block;
    width: 60px;
    height: 60px;
    line-height: 60px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.approach-step p {
    color: var(--text-light);
}

.contact-areas {
    padding: 5rem 2rem;
    background-color: var(--background-white);
}

.contact-areas-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.contact-areas-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-areas-container p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.areas-list {
    display: flex;
    gap: 4rem;
    justify-content: center;
    margin: 2rem 0;
}

.area-column ul {
    list-style: none;
    text-align: left;
}

.area-column li {
    padding: 0.5rem 0;
    font-size: 1.05rem;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.area-column li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

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

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

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

.thanks-icon svg {
    margin: 0 auto;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

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

.thanks-details {
    background-color: var(--background-light);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

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

.thanks-next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.next-steps-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.next-step-item {
    flex: 1;
    max-width: 250px;
}

.step-icon {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    background-color: var(--primary-color);
    color: var(--background-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.next-step-item h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.thanks-info {
    margin-bottom: 2.5rem;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 0.875rem 1.75rem;
    font-family: 'Helvetica Neue', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
    cursor: pointer;
}

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

.btn-primary:hover {
    background-color: #1f3e29;
    transform: translateY(-2px);
    color: var(--background-white);
}

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

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

.thanks-additional {
    padding: 4rem 2rem;
    background-color: var(--background-light);
}

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

.thanks-additional-container h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2.5rem;
}

.additional-links {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.additional-link-item {
    flex: 1;
    max-width: 400px;
}

.additional-link-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
}

.additional-link-item p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.link-arrow {
    display: inline-block;
    font-family: 'Helvetica Neue', sans-serif;
    font-weight: 600;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.link-arrow:hover {
    transform: translateX(5px);
}

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

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
}

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

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

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
}

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-split {
        flex-direction: column;
    }

    .hero-content-left h1 {
        font-size: 2.75rem;
    }

    .intro-container,
    .about-container-split,
    .approach-split,
    .consultation-split,
    .contact-container-split {
        flex-direction: column;
    }

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

    .trust-columns,
    .approach-steps,
    .next-steps-grid,
    .additional-links,
    .areas-list {
        flex-direction: column;
        align-items: center;
    }

    .nav-primary ul {
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .hero-content-left h1 {
        font-size: 2.25rem;
    }

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

    .nav-primary ul {
        flex-direction: column;
        gap: 0.75rem;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .footer-container {
        flex-direction: column;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }

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