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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e2f;
    background-color: #ffffff;
}

a {
    text-decoration: none;
    color: #3d5a2c;
    transition: color 0.3s ease;
}

a:hover {
    color: #5a7c3e;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 58, 47, 0.96);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.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: 20px;
}

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

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

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

.btn-accept {
    background-color: #5a7c3e;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #6a8c4e;
}

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

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

.nav-floating {
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.98);
    padding: 20px 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e2f;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    background-color: #f4f7f0;
    border-radius: 3px;
}

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

.nav-links a {
    font-weight: 500;
    color: #2c3e2f;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #5a7c3e;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image-offset {
    position: absolute;
    top: 0;
    right: 0;
    width: 65%;
    height: 100%;
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.3), rgba(61, 90, 44, 0.2));
}

.hero-content-floating {
    position: relative;
    z-index: 10;
    max-width: 600px;
    margin-left: 8%;
    padding: 50px 40px;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-content-floating h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #2c3e2f;
    font-weight: 800;
}

.hero-content-floating p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5f3d;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3d5a2c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #5a7c3e;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(61, 90, 44, 0.3);
}

.intro-offset {
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    max-width: 700px;
    margin-left: 15%;
}

.intro-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e2f;
    line-height: 1.3;
}

.intro-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5f3d;
}

.citation {
    color: #3d5a2c;
    font-weight: 600;
}

.services-cards-stagger {
    padding: 80px 30px;
    background-color: #fafbf9;
}

.services-cards-stagger h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e2f;
}

.cards-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px 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);
}

.card-offset-1 {
    margin-left: 5%;
    max-width: 850px;
}

.card-offset-2 {
    margin-left: auto;
    margin-right: 8%;
    max-width: 850px;
}

.card-offset-3 {
    margin-left: 12%;
    max-width: 850px;
}

.card-offset-4 {
    margin-left: auto;
    margin-right: 5%;
    max-width: 850px;
}

.card-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 35px;
}

.card-content h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #2c3e2f;
}

.card-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5f3d;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3d5a2c;
    margin-top: 20px;
}

.testimonial-inline {
    padding: 80px 30px;
    margin: 60px 0;
}

.testimonial-content {
    max-width: 900px;
    margin: 0 auto 0 10%;
}

.testimonial-content blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: #2c3e2f;
    margin-bottom: 20px;
    padding-left: 30px;
    border-left: 4px solid #5a7c3e;
}

.testimonial-content cite {
    font-style: normal;
    font-size: 16px;
    color: #666;
}

.cta-embedded {
    padding: 100px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-box-offset {
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
    padding: 60px 50px;
    border-radius: 8px;
    color: #ffffff;
}

.cta-box-offset h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-box-offset p {
    font-size: 18px;
    margin-bottom: 30px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #ffffff;
    color: #3d5a2c;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #f4f7f0;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 30px;
    background-color: #f9faf8;
}

.form-container-asymmetric {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.form-intro p {
    font-size: 17px;
    color: #4a5f3d;
    line-height: 1.6;
}

.contact-form {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e2f;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e0e5dd;
    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: #5a7c3e;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3d5a2c;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.references {
    padding: 50px 30px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fafbf9;
}

.references h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.references ol {
    margin-left: 25px;
}

.references li {
    margin-bottom: 12px;
    color: #4a5f3d;
}

.references a {
    color: #3d5a2c;
}

footer {
    background-color: #2c3e2f;
    color: #ffffff;
    padding: 60px 30px 20px;
}

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

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

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-section p {
    color: #d0d8d0;
    line-height: 1.6;
}

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

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: #d0d8d0;
    transition: color 0.3s ease;
}

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

.disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #5a7c3e;
    font-size: 14px;
    color: #d0d8d0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #a0b0a0;
    font-size: 14px;
}

.page-hero {
    position: relative;
    height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.page-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.about-content {
    padding: 80px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.content-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.text-block-wide {
    max-width: 900px;
    margin-left: 8%;
}

.text-block-wide h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e2f;
}

.text-block-wide p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5f3d;
    line-height: 1.7;
}

.split-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.image-block {
    flex: 1;
    min-width: 400px;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.image-block img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.text-block-narrow {
    flex: 1;
    min-width: 350px;
}

.text-block-narrow h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.text-block-narrow p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5f3d;
    line-height: 1.6;
}

.values-section {
    padding: 60px 40px;
    background-color: #f4f7f0;
    border-radius: 8px;
}

.values-section h3 {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e2f;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
}

.value-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3d5a2c;
}

.value-item p {
    font-size: 16px;
    color: #4a5f3d;
    line-height: 1.6;
}

.methodology-section {
    padding: 50px;
    border-radius: 8px;
}

.methodology-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e2f;
}

.process-list {
    margin-left: 25px;
}

.process-list li {
    margin-bottom: 25px;
    font-size: 17px;
    color: #4a5f3d;
    line-height: 1.6;
}

.process-list strong {
    color: #2c3e2f;
}

.team-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fef9f0;
    border-radius: 8px;
}

.team-note p {
    font-size: 17px;
    color: #4a5f3d;
    line-height: 1.7;
}

.cta-inline {
    padding: 80px 30px;
    background-color: #e8f3e6;
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.cta-link {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3d5a2c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-link:hover {
    background-color: #5a7c3e;
    transform: translateY(-2px);
}

.services-detailed {
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
    font-size: 18px;
    color: #4a5f3d;
}

.service-detail-asymmetric {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

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

.service-content-left h2,
.service-content-right h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.service-content-left h3,
.service-content-right h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3d5a2c;
}

.service-content-left p,
.service-content-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5f3d;
    line-height: 1.6;
}

.service-content-left ul,
.service-content-right ul {
    margin-left: 25px;
    margin-bottom: 25px;
}

.service-content-left li,
.service-content-right li {
    margin-bottom: 10px;
    color: #4a5f3d;
    line-height: 1.5;
}

.service-image-right,
.service-image-left {
    flex: 1;
    min-width: 450px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

.service-image-right img,
.service-image-left img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.pricing-box {
    margin-top: 30px;
    padding: 25px;
    background-color: #f4f7f0;
    border-radius: 6px;
    border-left: 4px solid #5a7c3e;
}

.price-label {
    display: block;
    font-size: 15px;
    color: #666;
    margin-bottom: 8px;
}

.price-amount {
    display: block;
    font-size: 38px;
    font-weight: 700;
    color: #3d5a2c;
    margin-bottom: 12px;
}

.price-note {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.services-cta {
    padding: 80px 30px;
    margin-top: 60px;
}

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

.cta-content-center h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.cta-content-center p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #4a5f3d;
}

.cta-button {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3d5a2c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #5a7c3e;
    transform: translateY(-2px);
}

.contact-content {
    padding: 60px 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-layout-asymmetric {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e2f;
}

.contact-info-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5f3d;
    line-height: 1.6;
}

.info-item {
    margin-bottom: 35px;
}

.info-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #3d5a2c;
}

.no-link {
    font-weight: 600;
    color: #2c3e2f;
}

.small-note {
    font-size: 15px;
    color: #666;
    margin-top: 10px;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 450px;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    position: relative;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.map-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    padding: 15px 25px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
}

.map-overlay p {
    margin: 0;
    font-weight: 600;
    color: #2c3e2f;
}

.contact-additional-info,
.contact-form-redirect,
.contact-note {
    margin-bottom: 50px;
}

.contact-additional-info h3,
.contact-form-redirect h3,
.contact-note h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.contact-additional-info p,
.contact-form-redirect p,
.contact-note p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #4a5f3d;
    line-height: 1.6;
}

.contact-additional-info ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.contact-additional-info li {
    margin-bottom: 10px;
    color: #4a5f3d;
}

.contact-form-redirect {
    padding: 40px;
    border-radius: 8px;
}

.btn-contact {
    display: inline-block;
    padding: 16px 32px;
    background-color: #3d5a2c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-contact:hover {
    background-color: #5a7c3e;
    transform: translateY(-2px);
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 30px;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5f3d;
    line-height: 1.6;
}

.service-confirmation {
    padding: 20px;
    background-color: #e8f3e6;
    border-radius: 6px;
    margin-bottom: 40px;
}

.service-confirmation p {
    margin: 0;
    font-size: 17px;
    color: #2c3e2f;
}

.next-steps {
    margin: 50px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e2f;
    text-align: center;
}

.next-steps ol {
    margin-left: 25px;
}

.next-steps li {
    margin-bottom: 15px;
    font-size: 17px;
    color: #4a5f3d;
    line-height: 1.6;
}

.thanks-note {
    padding: 25px;
    background-color: #fef9f0;
    border-radius: 6px;
    margin-bottom: 40px;
}

.thanks-note p {
    margin: 0;
    font-size: 16px;
    color: #4a5f3d;
}

.email-display {
    font-weight: 600;
    color: #2c3e2f;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    padding: 16px 32px;
    background-color: #3d5a2c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #5a7c3e;
    transform: translateY(-2px);
}

.btn-secondary {
    padding: 16px 32px;
    background-color: transparent;
    color: #3d5a2c;
    border: 2px solid #3d5a2c;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #3d5a2c;
    color: #ffffff;
}

.legal-page {
    padding: 60px 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-content {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 8px;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 10px;
    color: #2c3e2f;
}

.legal-date,
.legal-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e2f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #3d5a2c;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 12px;
    color: #3d5a2c;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 18px;
    color: #4a5f3d;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 12px;
    color: #4a5f3d;
    line-height: 1.6;
}

.gdpr-table {
    margin: 30px 0;
}

.gdpr-row {
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #e0e5dd;
}

.gdpr-row:last-child {
    border-bottom: none;
}

.gdpr-label {
    flex: 0 0 200px;
    font-weight: 600;
    color: #2c3e2f;
}

.gdpr-value {
    flex: 1;
    color: #4a5f3d;
    line-height: 1.6;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #f4f7f0;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: #2c3e2f;
    border-bottom: 2px solid #5a7c3e;
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid #e0e5dd;
    color: #4a5f3d;
}

@media (max-width: 768px) {
    .hero-image-offset {
        width: 100%;
        clip-path: none;
    }

    .hero-content-floating {
        margin-left: 0;
        width: 100%;
    }

    .hero-content-floating h1 {
        font-size: 36px;
    }

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

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4 {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

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

    .image-block,
    .service-image-right,
    .service-image-left,
    .contact-map-placeholder {
        min-width: 100%;
        height: 300px;
    }

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

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

    .nav-links {
        width: 100%;
        justify-content: center;
    }
}