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

:root {
    --primary-color: #2d5f3f;
    --secondary-color: #4a8a64;
    --accent-color: #7ba88f;
    --dark-bg: #1a2e23;
    --light-bg: #f4f7f5;
    --text-dark: #1a2e23;
    --text-light: #5a6a62;
    --border-color: #d4e0d8;
    --white: #ffffff;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

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

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

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

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

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

.nav-left {
    margin-right: auto;
}

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

.nav-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    background-color: var(--light-bg);
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.hero-offset {
    display: flex;
    align-items: center;
    padding: 4rem 5% 4rem 8%;
    min-height: 80vh;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 550px;
    z-index: 2;
    padding-right: 3rem;
}

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

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

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: -5rem;
    margin-top: 3rem;
}

.hero-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: var(--light-bg);
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(45, 95, 63, 0.3);
}

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

.intro-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.intro-card.left {
    margin-left: 0;
    margin-right: 8%;
}

.intro-card.right {
    margin-left: 8%;
    margin-right: 0;
    flex-direction: row-reverse;
}

.intro-card img {
    flex: 0 0 45%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--border-color);
}

.intro-text {
    flex: 1;
}

.intro-text h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.value-stacked {
    padding: 6rem 5%;
    background-color: var(--white);
}

.value-header-offset {
    margin-left: 15%;
    margin-bottom: 4rem;
}

.value-header-offset h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
}

.value-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block {
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
}

.value-block.v-1 {
    margin-left: 5%;
    max-width: 70%;
}

.value-block.v-2 {
    margin-left: 20%;
    max-width: 65%;
}

.value-block.v-3 {
    margin-left: 10%;
    max-width: 75%;
}

.value-block h4 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

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

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

.section-title-offset {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 10%;
}

.services-asymmetric-grid {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-card {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-card.s-1 {
    margin-left: 0;
    margin-right: 10%;
}

.service-card.s-2 {
    margin-left: 15%;
    margin-right: 0;
    flex-direction: row-reverse;
}

.service-card.s-3 {
    margin-left: 5%;
    margin-right: 5%;
}

.service-card img {
    flex: 0 0 45%;
    max-width: 500px;
    border-radius: 8px;
    object-fit: cover;
    background-color: var(--text-light);
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.service-info p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1.5rem 0;
}

.service-link {
    display: inline-block;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid var(--accent-color);
    transition: all 0.3s ease;
}

.service-link:hover {
    color: var(--white);
    border-bottom-color: var(--white);
}

.services-cta {
    text-align: center;
    margin-top: 4rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--white);
    text-decoration: none;
    border: 2px solid var(--white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

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

.trust-section {
    padding: 6rem 5%;
    background-image: linear-gradient(rgba(45, 95, 63, 0.85), rgba(45, 95, 63, 0.85)), url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
}

.trust-overlay {
    max-width: 800px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.trust-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.disclaimer-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-style: italic;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
}

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

.form-container {
    max-width: 700px;
    margin-left: 12%;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

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

.form-container > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

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

.btn-submit {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.footer-asymmetric {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.footer-col.f-1 {
    flex: 1.5;
}

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

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

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

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

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

.about-hero-offset {
    padding: 6rem 5% 4rem 10%;
    background-color: var(--light-bg);
}

.about-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}

.about-intro h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.7;
}

.about-hero-offset img {
    width: 85%;
    margin-left: 10%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: var(--border-color);
}

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

.story-block {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
}

.story-block.reverse {
    flex-direction: row-reverse;
    margin-left: 10%;
}

.story-block img {
    flex: 0 0 45%;
    max-width: 500px;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--light-bg);
}

.story-text {
    flex: 1;
}

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

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

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

.values-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    margin-left: 8%;
}

.values-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-item {
    padding: 2.5rem;
    background-color: rgba(255, 255, 255, 0.08);
    border-left: 4px solid var(--accent-color);
}

.value-item.v-a {
    margin-left: 5%;
    max-width: 75%;
}

.value-item.v-b {
    margin-left: 18%;
    max-width: 70%;
}

.value-item.v-c {
    margin-left: 12%;
    max-width: 72%;
}

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

.value-item p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

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

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

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

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

.step-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.step-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.step-card p {
    color: var(--text-light);
    line-height: 1.7;
}

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

.cta-about h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-header-offset {
    padding: 6rem 5% 4rem 12%;
    background-color: var(--light-bg);
}

.services-header-offset h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.services-list {
    padding: 4rem 5%;
    background-color: var(--white);
}

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

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

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

.service-visual {
    flex: 0 0 45%;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--light-bg);
}

.service-content {
    flex: 1;
}

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

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

.service-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

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

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

.pricing-box {
    background-color: var(--light-bg);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.price-main {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.price-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.btn-service {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-wrapper h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.form-wrapper > p {
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-header {
    padding: 6rem 5% 3rem 10%;
    background-color: var(--light-bg);
}

.contact-header h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.contact-info-section {
    padding: 4rem 5%;
    background-color: var(--white);
}

.contact-layout {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.note-text {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

.contact-image {
    flex: 0 0 45%;
}

.contact-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: var(--light-bg);
}

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

.location-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.location-section > p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
}

.location-info {
    max-width: 700px;
}

.location-detail h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.location-detail p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
}

.visit-note {
    padding: 4rem 5%;
    background-color: var(--white);
}

.note-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2.5rem;
    background-color: var(--light-bg);
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
}

.note-box h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

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

.thanks-section {
    padding: 8rem 5%;
    background-color: var(--light-bg);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.selected-service {
    margin-bottom: 2.5rem;
}

.service-note {
    font-size: 1.05rem;
    color: var(--text-dark);
    background-color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 6px;
    display: inline-block;
}

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

.next-steps {
    padding: 4rem 5%;
    background-color: var(--white);
}

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

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

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

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

.step-content {
    flex: 1;
    padding-top: 0.5rem;
}

.step-content h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

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

.useful-links {
    padding: 4rem 5%;
    background-color: var(--light-bg);
}

.useful-links h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

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

.link-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.link-card h4 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

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

.legal-page {
    padding: 4rem 5%;
    background-color: var(--white);
    min-height: 70vh;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.last-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-style: italic;
}

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

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

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

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

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

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

.gdpr-table,
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.gdpr-table thead,
.cookie-table thead {
    background-color: var(--light-bg);
}

.gdpr-table th,
.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.gdpr-table td,
.cookie-table td {
    padding: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

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

    .hero-text-block {
        max-width: 100%;
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .hero-image-offset {
        margin-left: 0;
        margin-top: 0;
    }

    .intro-card,
    .story-block {
        flex-direction: column;
    }

    .intro-card.right,
    .story-block.reverse {
        flex-direction: column;
    }

    .intro-card img,
    .story-block img {
        flex: 1;
        max-width: 100%;
    }

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

    .service-card.s-2,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-card img,
    .service-visual {
        flex: 1;
        max-width: 100%;
    }

    .value-block.v-1,
    .value-block.v-2,
    .value-block.v-3,
    .value-item.v-a,
    .value-item.v-b,
    .value-item.v-c {
        margin-left: 0;
        max-width: 100%;
    }

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

    .contact-image {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-right {
        gap: 1rem;
        flex-wrap: wrap;
    }

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

    .form-container,
    .form-wrapper {
        padding: 2rem;
    }

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

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

    .cta-buttons {
        flex-direction: column;
    }
}