:root {
    --primary-color: #2d7a3f;
    --primary-dark: #1f5630;
    --secondary-color: #f4a261;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

* {
    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.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px var(--shadow);
}

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

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

.cookie-content p {
    flex: 1 1 300px;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.btn-cookie-accept:hover {
    background-color: var(--primary-dark);
}

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

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

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

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

.nav-brand a {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-disclosure {
    margin-left: auto;
    margin-right: 40px;
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    background-color: var(--bg-light);
    padding: 4px 12px;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
}

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

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

.hero-asymmetric {
    background-color: var(--bg-light);
    padding: 80px 30px;
}

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

.hero-text-block {
    flex: 1 1 400px;
    padding-left: 60px;
}

.hero-text-block h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-image-offset {
    flex: 1 1 500px;
    position: relative;
    margin-top: -40px;
    background-color: var(--primary-color);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 16px 40px;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    transition: all 0.3s ease;
}

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

.intro-section {
    padding: 100px 30px;
    background-color: var(--bg-white);
}

.intro-offset-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
}

.intro-text-narrow {
    flex: 1 1 450px;
    max-width: 600px;
    margin-left: 120px;
}

.intro-text-narrow h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: var(--text-dark);
}

.intro-text-narrow p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.intro-image-overlap {
    flex: 1 1 400px;
    margin-top: -60px;
    background-color: var(--secondary-color);
}

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

.services-preview-asymmetric {
    padding: 120px 30px;
    background-color: var(--bg-light);
}

.services-content-shifted {
    max-width: 1400px;
    margin: 0 auto;
}

.services-content-shifted h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: left;
    padding-left: 80px;
}

.services-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card-offset-1,
.service-card-offset-2,
.service-card-offset-3 {
    flex: 1 1 320px;
    background-color: var(--bg-white);
    padding: 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card-offset-1:hover,
.service-card-offset-2:hover,
.service-card-offset-3:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px var(--shadow);
}

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

.service-card-offset-2 {
    margin-top: 40px;
}

.service-card-offset-3 {
    margin-top: 80px;
}

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

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

.service-card-offset-1 > h3,
.service-card-offset-2 > h3,
.service-card-offset-3 > h3 {
    font-size: 22px;
    margin: 24px 24px 12px 24px;
}

.service-card-offset-1 > p,
.service-card-offset-2 > p,
.service-card-offset-3 > p {
    font-size: 16px;
    color: var(--text-medium);
    margin: 0 24px 16px 24px;
}

.service-price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 24px 16px 24px;
}

.service-link {
    display: inline-block;
    margin: 0 24px 24px 24px;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: var(--primary-dark);
}

.testimonial-offset {
    padding: 100px 30px;
    background-color: var(--bg-white);
}

.testimonial-asymmetric-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.testimonial-block {
    flex: 1 1 400px;
    padding: 40px;
    background-color: var(--bg-light);
    border-left: 4px solid var(--primary-color);
    font-size: 18px;
    line-height: 1.7;
    font-style: italic;
}

.testimonial-block:nth-child(2) {
    margin-top: 60px;
}

.testimonial-block p {
    margin-bottom: 16px;
}

.testimonial-block cite {
    display: block;
    font-style: normal;
    font-weight: 600;
    color: var(--text-medium);
    font-size: 16px;
}

.form-section-asymmetric {
    padding: 120px 30px;
    background-color: var(--primary-color);
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 40px;
    color: var(--bg-white);
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.form-intro p {
    font-size: 18px;
}

.contact-form-asymmetric {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    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 {
    width: 100%;
    padding: 16px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section-offset {
    padding: 100px 30px;
    background-color: var(--bg-white);
}

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

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.trust-items-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

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

.trust-item:nth-child(2) {
    margin-top: 40px;
}

.trust-item:nth-child(3) {
    margin-top: 80px;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 17px;
    color: var(--text-medium);
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 30px 20px 30px;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column-brand,
.footer-column-links,
.footer-column-legal,
.footer-column-contact {
    flex: 1 1 220px;
}

.footer-column-brand h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.footer-column-brand p {
    font-size: 14px;
    color: var(--text-light);
}

.footer-column-links h4,
.footer-column-legal h4,
.footer-column-contact h4 {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

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

.footer-column-links li,
.footer-column-legal li {
    margin-bottom: 10px;
}

.footer-column-links a,
.footer-column-legal a {
    color: var(--text-light);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column-links a:hover,
.footer-column-legal a:hover {
    color: var(--bg-white);
}

.footer-column-contact p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: var(--text-light);
}

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    background-color: var(--primary-color);
    padding: 100px 30px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: var(--bg-white);
    margin-bottom: 16px;
}

.page-hero-content .hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 100px 30px;
    background-color: var(--bg-white);
}

.about-container-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: center;
}

.about-text-block {
    flex: 1 1 500px;
}

.about-text-block h2 {
    font-size: 36px;
    margin-bottom: 24px;
}

.about-text-block p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

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

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

.about-transformation {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

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

.transformation-content h2 {
    font-size: 36px;
    margin-bottom: 32px;
}

.transformation-content p {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.8;
}

.about-team-asymmetric {
    padding: 100px 30px;
    background-color: var(--bg-white);
}

.team-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
}

.team-content-irregular h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.team-members-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.team-member {
    flex: 1 1 300px;
    text-align: center;
}

.team-member:nth-child(2) {
    margin-top: 60px;
}

.member-image {
    width: 100%;
    height: 300px;
    margin-bottom: 20px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.member-role {
    font-size: 16px;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-member p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.about-values {
    padding: 100px 30px;
    background-color: var(--bg-light);
}

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

.values-container h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-card {
    flex: 1 1 260px;
    padding: 32px;
    background-color: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.value-card:nth-child(2) {
    margin-top: 40px;
}

.value-card:nth-child(4) {
    margin-top: 40px;
}

.value-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.value-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.about-cta {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

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

.cta-content-asymmetric h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-content-asymmetric p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.services-full {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

.services-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detailed-offset-1,
.service-detailed-offset-2,
.service-detailed-offset-3,
.service-detailed-offset-4,
.service-detailed-offset-5,
.service-detailed-offset-6 {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
    padding: 60px;
    background-color: var(--bg-light);
    border-radius: 12px;
}

.service-detailed-offset-2,
.service-detailed-offset-4 {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1 1 400px;
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.service-info {
    flex: 1 1 450px;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.service-description {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-benefits {
    list-style: none;
    margin-bottom: 28px;
}

.service-benefits li {
    padding-left: 28px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: var(--text-medium);
}

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

.service-pricing {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 4px;
}

.price-unit {
    font-size: 16px;
    color: var(--text-light);
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

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

.services-compare {
    padding: 80px 30px;
    background-color: var(--primary-color);
}

.compare-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--bg-white);
}

.compare-container h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.compare-container p {
    font-size: 18px;
    margin-bottom: 32px;
}

.contact-main {
    padding: 100px 30px;
    background-color: var(--bg-white);
}

.contact-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-note {
    font-size: 14px;
    color: var(--text-light);
    margin-top: 8px;
}

.contact-visual-offset {
    flex: 1 1 400px;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-faq {
    padding: 100px 30px;
    background-color: var(--bg-light);
}

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

.faq-container h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
}

.faq-items-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px var(--shadow);
}

.faq-item:nth-child(even) {
    margin-left: 60px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-cta-section {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

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

.contact-cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.contact-cta-content p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 28px;
}

.thanks-hero {
    padding: 120px 30px;
    background-color: var(--bg-light);
}

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.thanks-message {
    font-size: 19px;
    color: var(--text-medium);
    margin-bottom: 28px;
    line-height: 1.7;
}

.service-selected {
    font-size: 17px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next-steps {
    padding: 100px 30px;
    background-color: var(--bg-white);
}

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

.next-steps-container h2 {
    font-size: 38px;
    margin-bottom: 60px;
    text-align: center;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.step-item {
    flex: 1 1 300px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-size: 28px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.step-item p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

.thanks-explore {
    padding: 80px 30px;
    background-color: var(--bg-light);
}

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

.explore-container h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.explore-container p {
    font-size: 17px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.explore-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.explore-link {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.explore-link:hover {
    background-color: var(--primary-dark);
    color: var(--bg-white);
}

.legal-page {
    padding: 80px 30px;
    background-color: var(--bg-white);
}

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

.legal-container h1 {
    font-size: 38px;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-container p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-container ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container strong {
    color: var(--text-dark);
}

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

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 36px;
    }

    .hero-text-block {
        padding-left: 0;
    }

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

    .intro-text-narrow {
        margin-left: 0;
    }

    .services-content-shifted h2 {
        padding-left: 0;
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3 {
        margin-top: 0;
    }

    .testimonial-block:nth-child(2) {
        margin-top: 0;
    }

    .form-container-offset {
        margin-left: auto;
    }

    .trust-item:nth-child(2),
    .trust-item:nth-child(3) {
        margin-top: 0;
    }

    .team-member:nth-child(2) {
        margin-top: 0;
    }

    .value-card:nth-child(2),
    .value-card:nth-child(4) {
        margin-top: 0;
    }

    .service-detailed-offset-1,
    .service-detailed-offset-2,
    .service-detailed-offset-3,
    .service-detailed-offset-4,
    .service-detailed-offset-5,
    .service-detailed-offset-6 {
        padding: 32px 20px;
    }

    .faq-item:nth-child(even) {
        margin-left: 0;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-disclosure {
        display: none;
    }
}