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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8eef3;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a472a;
    text-decoration: none;
}

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

.ad-notice {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    text-decoration: none;
    color: #34495e;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #2d5f3f;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f4f7f9;
}

.hero-left {
    flex: 1;
    padding: 6rem 5% 4rem 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #e8f4ed;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #1a472a;
}

.intro-split {
    display: flex;
    padding: 5rem 5%;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: #dce9e3;
}

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

.intro-text {
    flex: 1;
    padding: 3rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.25rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    color: #4a5a6a;
    margin-bottom: 1.25rem;
}

.values-grid {
    display: flex;
    padding: 4rem 8%;
    gap: 3rem;
    background-color: #f9fbfc;
}

.value-card {
    flex: 1;
    padding: 2.5rem 2rem;
    background-color: #ffffff;
    border-left: 4px solid #2d5f3f;
}

.value-card h3 {
    font-size: 1.5rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.value-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-section {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.section-header-center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.15rem;
    color: #6a7a8a;
}

.services-list-split {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 5rem;
}

.service-item {
    display: flex;
    background-color: #f8fafb;
    border-radius: 8px;
    overflow: hidden;
    min-height: 280px;
}

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

.service-content {
    flex: 2;
    padding: 3rem;
}

.service-content h3 {
    font-size: 1.75rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-top: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: #4a5a6a;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: bold;
}

.service-price {
    flex: 1;
    background-color: #e8f4ed;
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.price-label {
    font-size: 0.9rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a472a;
    margin: 0.5rem 0;
}

.price-period {
    font-size: 1rem;
    color: #6a7a8a;
}

.form-container {
    max-width: 720px;
    margin: 4rem auto 0;
    padding: 3rem;
    background-color: #f4f7f9;
    border-radius: 8px;
}

.form-container h3 {
    font-size: 1.75rem;
    color: #1a472a;
    margin-bottom: 0.75rem;
}

.form-intro {
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.form-group label {
    font-weight: 600;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 1px solid #d1dce5;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2d5f3f;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1a472a;
}

.trust-split {
    display: flex;
    padding: 5rem 8%;
    background-color: #f9fbfc;
}

.trust-text {
    flex: 1;
    padding: 3rem 4rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-text h2 {
    font-size: 2.25rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.trust-text p {
    font-size: 1.1rem;
    color: #4a5a6a;
    margin-bottom: 1.25rem;
}

.trust-image {
    flex: 1;
    background-color: #dce9e3;
}

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

.cta-secondary {
    display: inline-block;
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    align-self: flex-start;
    margin-top: 1rem;
}

.cta-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.footer {
    background-color: #1a2f23;
    color: #b8c9c1;
    padding: 3rem 8% 2rem;
}

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

.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-col p {
    line-height: 1.8;
    color: #b8c9c1;
}

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

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

.footer-col ul li a {
    color: #b8c9c1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #ffffff;
}

.email-static {
    color: #b8c9c1;
}

.footer-bottom {
    border-top: 1px solid #2d4535;
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #8a9d94;
    margin-bottom: 0.75rem;
}

.disclaimer-footer {
    font-size: 0.85rem;
    max-width: 900px;
    margin: 1rem auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    display: none;
}

.cookie-banner.visible {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: #7dd3a0;
}

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

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

.btn-accept {
    background-color: #2d5f3f;
    color: #ffffff;
}

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

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

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

.about-hero-split {
    display: flex;
    padding: 5rem 8%;
    background-color: #f4f7f9;
}

.about-hero-left {
    flex: 1;
    padding-right: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-hero-left h1 {
    font-size: 2.75rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    color: #4a5a6a;
    line-height: 1.7;
}

.about-hero-right {
    flex: 1;
    background-color: #dce9e3;
}

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

.story-section {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.story-container {
    max-width: 860px;
    margin: 0 auto;
}

.story-container h2 {
    font-size: 2.25rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.story-container p {
    font-size: 1.15rem;
    color: #4a5a6a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.team-split {
    display: flex;
    padding: 5rem 8%;
    background-color: #f9fbfc;
}

.team-image {
    flex: 1;
    background-color: #dce9e3;
}

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

.team-text {
    flex: 1;
    padding: 3rem 0 3rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-text h2 {
    font-size: 2.25rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    color: #4a5a6a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.expertise-split {
    display: flex;
    padding: 5rem 8%;
    background-color: #ffffff;
}

.expertise-split.reverse {
    flex-direction: row-reverse;
}

.expertise-text {
    flex: 1;
    padding: 3rem 4rem 3rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expertise-split.reverse .expertise-text {
    padding: 3rem 0 3rem 4rem;
}

.expertise-text h2 {
    font-size: 2.25rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.expertise-text p {
    font-size: 1.1rem;
    color: #4a5a6a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.expertise-image {
    flex: 1;
    background-color: #dce9e3;
}

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

.values-detailed {
    padding: 5rem 8%;
    background-color: #f4f7f9;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.5rem;
    color: #1a472a;
}

.values-split-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.value-item-large {
    display: flex;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.value-item-large.reverse {
    flex-direction: row-reverse;
}

.value-content h3 {
    font-size: 1.75rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.value-content p {
    font-size: 1.1rem;
    color: #4a5a6a;
    line-height: 1.7;
}

.cta-centered {
    padding: 5rem 8%;
    text-align: center;
    background-color: #e8f4ed;
}

.cta-centered h2 {
    font-size: 2.5rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.cta-centered p {
    font-size: 1.2rem;
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.cta-centered .cta-primary {
    align-self: center;
}

.services-hero {
    padding: 5rem 8%;
    text-align: center;
    background-color: #f4f7f9;
}

.services-hero h1 {
    font-size: 2.75rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.services-intro {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 720px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 8% 5rem;
    background-color: #ffffff;
}

.service-block-split {
    display: flex;
    margin-bottom: 4rem;
    min-height: 400px;
}

.service-block-split.reverse {
    flex-direction: row-reverse;
}

.service-block-content {
    flex: 2;
    padding: 3rem 4rem 3rem 0;
}

.service-block-split.reverse .service-block-content {
    padding: 3rem 0 3rem 4rem;
}

.service-block-content h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 1.25rem;
}

.service-block-content h3 {
    font-size: 1.25rem;
    color: #2d5f3f;
    margin: 2rem 0 1rem;
}

.service-block-content p {
    font-size: 1.05rem;
    color: #4a5a6a;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.service-includes {
    list-style: none;
    margin: 1.5rem 0;
}

.service-includes li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5a6a;
}

.service-includes li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: bold;
}

.service-note {
    font-size: 0.95rem;
    color: #6a7a8a;
    font-style: italic;
}

.service-block-price {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.price-box {
    background-color: #e8f4ed;
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-from {
    font-size: 0.9rem;
    color: #5a6c7d;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-main {
    font-size: 3rem;
    font-weight: 700;
    color: #1a472a;
    margin: 1rem 0;
}

.price-unit {
    font-size: 1rem;
    color: #6a7a8a;
    margin-bottom: 2rem;
}

.btn-price-cta {
    padding: 0.875rem 2rem;
    background-color: #2d5f3f;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-price-cta:hover {
    background-color: #1a472a;
}

.form-section-centered {
    padding: 5rem 8%;
    background-color: #f4f7f9;
}

.form-section-centered h2 {
    font-size: 2.25rem;
    color: #1a472a;
    text-align: center;
    margin-bottom: 1rem;
}

.form-subtitle {
    font-size: 1.15rem;
    color: #5a6c7d;
    text-align: center;
    margin-bottom: 3rem;
}

.service-contact-form {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-columns {
    display: flex;
    gap: 1.5rem;
}

.btn-submit-centered {
    padding: 1rem 2.5rem;
    background-color: #2d5f3f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: center;
}

.btn-submit-centered:hover {
    background-color: #1a472a;
}

.contact-hero {
    padding: 5rem 8%;
    text-align: center;
    background-color: #f4f7f9;
}

.contact-hero h1 {
    font-size: 2.75rem;
    color: #1a472a;
    margin-bottom: 1rem;
}

.contact-intro {
    font-size: 1.2rem;
    color: #5a6c7d;
}

.contact-split-main {
    display: flex;
    padding: 5rem 8%;
    background-color: #ffffff;
}

.contact-info-block {
    flex: 1;
    padding-right: 4rem;
}

.contact-info-block h2 {
    font-size: 2.25rem;
    color: #1a472a;
    margin-bottom: 2.5rem;
}

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

.contact-detail h3 {
    font-size: 1.25rem;
    color: #2d5f3f;
    margin-bottom: 0.75rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #4a5a6a;
    line-height: 1.8;
}

.contact-note {
    font-size: 0.95rem;
    color: #6a7a8a;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image-block {
    flex: 1;
    background-color: #dce9e3;
}

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

.contact-location-split {
    display: flex;
    padding: 5rem 8%;
    background-color: #f9fbfc;
    gap: 4rem;
}

.location-text {
    flex: 1;
}

.location-text h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.location-text p {
    font-size: 1.05rem;
    color: #4a5a6a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.location-directions {
    flex: 1;
}

.location-directions h3 {
    font-size: 1.5rem;
    color: #2d5f3f;
    margin-bottom: 1.5rem;
}

.directions-list {
    list-style: none;
}

.directions-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #4a5a6a;
    font-size: 1.05rem;
}

.directions-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-size: 1.5rem;
}

.contact-visit-info {
    padding: 5rem 8%;
    background-color: #ffffff;
}

.visit-container {
    max-width: 860px;
    margin: 0 auto;
}

.visit-container h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.visit-container p {
    font-size: 1.05rem;
    color: #4a5a6a;
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.visit-container a {
    color: #2d5f3f;
    text-decoration: underline;
}

.visit-checklist {
    list-style: none;
    margin: 1.5rem 0;
}

.visit-checklist li {
    padding: 0.6rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4a5a6a;
}

.visit-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2d5f3f;
    font-weight: bold;
}

.contact-expectations {
    padding: 5rem 8%;
    background-color: #f4f7f9;
}

.contact-expectations h2 {
    font-size: 2.25rem;
    color: #1a472a;
    text-align: center;
    margin-bottom: 3rem;
}

.expectations-split {
    display: flex;
    gap: 3rem;
}

.expectation-item {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
}

.expectation-item h3 {
    font-size: 1.5rem;
    color: #2d5f3f;
    margin-bottom: 1rem;
}

.expectation-item p {
    font-size: 1.05rem;
    color: #4a5a6a;
    line-height: 1.7;
}

.thanks-section {
    padding: 5rem 8%;
    background-color: #f9fbfc;
}

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

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

.thanks-container h1 {
    font-size: 2.75rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #4a5a6a;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.thanks-detail {
    font-size: 1.05rem;
    color: #2d5f3f;
    font-weight: 600;
}

.next-steps {
    max-width: 860px;
    margin: 0 auto 4rem;
}

.next-steps h2 {
    font-size: 2rem;
    color: #1a472a;
    margin-bottom: 2.5rem;
    text-align: center;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2d5f3f;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.5rem;
    color: #1a472a;
    margin-bottom: 0.75rem;
}

.step-content p {
    font-size: 1.05rem;
    color: #4a5a6a;
    line-height: 1.7;
}

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

.thanks-cta p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

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

.btn-secondary {
    padding: 0.875rem 2rem;
    background-color: transparent;
    color: #2d5f3f;
    border: 2px solid #2d5f3f;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2d5f3f;
    color: #ffffff;
}

.legal-content {
    padding: 5rem 8%;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    color: #1a472a;
    margin-bottom: 1.5rem;
}

.legal-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 1.75rem;
    color: #1a472a;
    margin: 2.5rem 0 1.25rem;
}

.legal-container h3 {
    font-size: 1.35rem;
    color: #2d5f3f;
    margin: 2rem 0 1rem;
}

.legal-container p {
    font-size: 1.05rem;
    color: #4a5a6a;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.legal-container ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    color: #4a5a6a;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.legal-container a {
    color: #2d5f3f;
    text-decoration: underline;
}

.legal-update {
    font-size: 0.95rem;
    color: #6a7a8a;
    font-style: italic;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8eef3;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .trust-split,
    .team-split,
    .expertise-split,
    .about-hero-split,
    .contact-split-main,
    .service-block-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .expertise-split.reverse,
    .service-block-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .intro-text,
    .trust-text,
    .team-text,
    .expertise-text,
    .about-hero-left,
    .contact-info-block,
    .service-block-content {
        padding: 2rem;
    }

    .values-grid,
    .expectations-split {
        flex-direction: column;
    }

    .form-row,
    .form-columns {
        flex-direction: column;
    }

    .header-split {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .contact-location-split {
        flex-direction: column;
        gap: 2rem;
    }

    .thanks-links {
        flex-direction: column;
        align-items: center;
    }
}