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

:root {
    --primary-color: #2A7C3F;
    --secondary-color: #1a4d2b;
    --accent-color: #E8A637;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #707070;
    --bg-light: #f9f9f9;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
}

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

a {
    text-decoration: none;
    color: inherit;
}

.main-nav {
    background: var(--bg-white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 6rem;
}

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

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

.hero-visual {
    flex: 1;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 85vh;
}

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

.cta-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

.cta-inline {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.cta-inline:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.intro-split {
    display: flex;
    align-items: center;
}

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

.intro-visual,
.intro-content {
    flex: 1;
}

.intro-content {
    padding: 5rem 6rem;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 600px;
}

.services-showcase {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.showcase-header h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card-split {
    display: flex;
    background: var(--bg-white);
    box-shadow: var(--shadow);
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card-split:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

.service-image {
    flex: 1;
    overflow: hidden;
}

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

.service-details {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-details p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

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

.select-service {
    padding: 0.9rem 2rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
    align-self: flex-start;
}

.select-service:hover {
    background: var(--secondary-color);
    transform: translateX(5px);
}

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

.process-split {
    display: flex;
    align-items: stretch;
}

.process-content {
    flex: 1;
    padding: 6rem;
    background: var(--text-dark);
    color: var(--bg-white);
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

.process-visual {
    flex: 1;
}

.process-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
}

.testimonial-large {
    flex: 1;
    background: var(--bg-white);
    padding: 3rem;
    border-left: 4px solid var(--primary-color);
    box-shadow: var(--shadow);
}

.testimonial-large p {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-large cite {
    font-style: normal;
    color: var(--text-muted);
    font-weight: 600;
}

.value-split {
    display: flex;
    align-items: center;
}

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

.value-visual,
.value-content {
    flex: 1;
}

.value-content {
    padding: 5rem 6rem;
}

.value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.value-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

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

.cta-form-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.form-intro {
    flex: 1;
}

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

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

.form-wrapper {
    flex: 1;
}

.contact-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.final-split {
    display: flex;
    align-items: center;
}

.final-content {
    flex: 1;
    padding: 6rem;
    background: var(--primary-color);
    color: var(--bg-white);
}

.final-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.final-content p {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    opacity: 0.95;
}

.final-content .cta-primary {
    background: var(--bg-white);
    color: var(--primary-color);
    margin-top: 1rem;
}

.final-content .cta-primary:hover {
    background: var(--accent-color);
    color: var(--text-dark);
}

.final-visual {
    flex: 1;
}

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

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
}

.sticky-cta-btn {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--text-dark);
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s;
}

.sticky-cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

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

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

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

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

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

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

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

.page-header-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
}

.header-content {
    flex: 1;
    padding: 4rem 6rem;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.header-visual {
    flex: 1;
}

.header-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 60vh;
}

.services-detailed {
    padding: 4rem 2rem;
}

.service-detail-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

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

.service-image-large {
    flex: 1;
}

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

.service-info {
    flex: 1;
    padding: 4rem;
}

.service-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.service-info h4 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.included-list {
    list-style: none;
    margin-bottom: 2rem;
}

.included-list li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

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

.services-cta-section {
    padding: 4rem 2rem;
    background: var(--bg-light);
}

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

.cta-content-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content-center p {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-header-split {
    display: flex;
    align-items: center;
    min-height: 60vh;
    background: var(--bg-light);
}

.about-header-content {
    flex: 1;
    padding: 4rem 6rem;
}

.about-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.about-header-visual {
    flex: 1;
}

.about-header-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 60vh;
}

.about-story-split {
    display: flex;
    align-items: center;
}

.story-content {
    flex: 1;
    padding: 5rem 6rem;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.story-visual {
    flex: 1;
}

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

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

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

.values-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

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

.team-split {
    display: flex;
    align-items: center;
}

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

.team-visual {
    flex: 1;
}

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

.team-content {
    flex: 1;
    padding: 5rem 6rem;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.team-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.approach-split {
    display: flex;
    align-items: center;
}

.approach-content {
    flex: 1;
    padding: 5rem 6rem;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.approach-content p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
}

.approach-visual {
    flex: 1;
}

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

.credentials-section {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

.credentials-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 4rem;
}

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

.credentials-content {
    flex: 1;
}

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

.credentials-list li {
    padding-left: 1.8rem;
    position: relative;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.05rem;
}

.credentials-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

.credentials-visual {
    flex: 1;
}

.credentials-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.about-cta-section {
    padding: 6rem 2rem;
}

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

.about-cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

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

.contact-header-split {
    display: flex;
    align-items: center;
    min-height: 50vh;
    background: var(--bg-light);
}

.contact-header-content {
    flex: 1;
    padding: 4rem 6rem;
}

.contact-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.contact-header-visual {
    flex: 1;
}

.contact-header-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 50vh;
}

.contact-main-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
}

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

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

.info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.info-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-form-panel {
    flex: 1;
}

.contact-form-detailed {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
}

.contact-additional {
    padding: 6rem 2rem;
    background: var(--bg-light);
}

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

.additional-content {
    flex: 1;
}

.additional-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.process-timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
}

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

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
}

.additional-visual {
    flex: 1;
}

.additional-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

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

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

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

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

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.thanks-details p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-selected {
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1.5rem;
}

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

.legal-page {
    padding: 4rem 2rem;
}

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

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

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
}

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

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

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

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

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookies-table th {
    background: var(--bg-light);
    font-weight: 600;
    color: var(--text-dark);
}

.cookies-table td {
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .value-split,
    .final-split,
    .process-split,
    .page-header-split,
    .service-detail-split,
    .about-story-split,
    .team-split,
    .approach-split,
    .contact-header-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .value-split.reverse,
    .service-detail-split.reverse,
    .team-split.reverse {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-content,
    .value-content,
    .final-content,
    .process-content,
    .header-content,
    .service-info,
    .story-content,
    .team-content,
    .approach-content,
    .contact-header-content {
        padding: 3rem 2rem;
    }

    .hero-visual img,
    .intro-visual img,
    .value-visual img,
    .final-visual img,
    .header-visual img,
    .service-image-large img,
    .story-visual img,
    .team-visual img,
    .approach-visual img,
    .contact-header-visual img {
        min-height: 400px;
    }

    .form-split-container,
    .contact-main-split,
    .additional-info-split,
    .credentials-split {
        flex-direction: column;
    }

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

    .footer-content {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-column {
        flex: 1 1 45%;
    }

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

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--bg-white);
        width: 100%;
        text-align: center;
        transition: left 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    .intro-content h2,
    .value-content h2,
    .final-content h2,
    .process-content h2,
    .story-content h2,
    .team-content h2,
    .approach-content h2 {
        font-size: 2rem;
    }

    .showcase-header h2 {
        font-size: 2.2rem;
    }

    .sticky-cta {
        bottom: 1rem;
        right: 1rem;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .footer-column {
        flex: 1 1 100%;
    }
}
