* {
    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.2rem 4%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

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

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

.nav-main a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-main a:hover {
    color: #8b6f47;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafafa;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6%;
    background-color: #2c3e50;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #ecf0f1;
    max-width: 540px;
}

.hero-image {
    flex: 1;
    background-color: #d4c5b0;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #6f5838;
}

.cta-secondary {
    display: inline-block;
    padding: 0.95rem 2.2rem;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.intro-narrative {
    display: flex;
    background-color: #ffffff;
}

.narrative-left {
    flex: 0.9;
    background-color: #f4ede4;
    overflow: hidden;
}

.narrative-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.narrative-right {
    flex: 1.1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.narrative-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.narrative-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.problem-amplification {
    display: flex;
    background-color: #f8f9fa;
    padding: 5rem 0;
}

.amplify-content {
    flex: 1.2;
    padding: 3rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.amplify-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.3;
}

.amplify-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.amplify-visual {
    flex: 0.8;
    background-color: #e0d5c7;
    overflow: hidden;
}

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

.insight-section {
    padding: 5rem 6%;
    background-color: #ffffff;
}

.insight-section h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.insight-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.insight-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.insight-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.insight-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.trust-building {
    display: flex;
    background-color: #2c3e50;
    color: #ffffff;
}

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

.trust-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    line-height: 1.3;
}

.trust-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #ecf0f1;
}

.trust-right {
    flex: 1;
    background-color: #d4c5b0;
    overflow: hidden;
}

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

.testimonials-inline {
    padding: 5rem 6%;
    background-color: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonial-row {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #8b6f47;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
}

.testimonial cite {
    font-size: 0.95rem;
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.services-reveal {
    padding: 5rem 6%;
    background-color: #ffffff;
}

.services-reveal h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #7f8c8d;
    margin-bottom: 3.5rem;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #fafafa;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-image {
    flex: 0.85;
    background-color: #e0d5c7;
    overflow: hidden;
}

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

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

.service-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-details p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    padding: 0.85rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.btn-select-service:hover {
    background-color: #1a252f;
}

.order-form-section {
    padding: 5rem 6%;
    background-color: #f8f9fa;
}

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

.form-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-info h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-info p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 1rem;
}

.form-inputs {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8b6f47;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #8b6f47;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #6f5838;
}

.final-cta {
    padding: 5rem 6%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.final-cta p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.footer-split {
    background-color: #1a252f;
    color: #ecf0f1;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    padding: 4rem 6%;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 2rem 6%;
    background-color: #141e26;
    border-top: 1px solid #2c3e50;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    padding: 1.5rem 6%;
    text-align: center;
    background-color: #0f1821;
    border-top: 1px solid #2c3e50;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 4%;
    z-index: 2000;
    display: none;
    align-items: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

.cookie-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-content a {
    color: #8b6f47;
    text-decoration: underline;
}

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

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

.btn-cookie-accept {
    background-color: #8b6f47;
    color: #ffffff;
}

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

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

.btn-cookie-reject:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero-split {
    display: flex;
    min-height: 60vh;
    background-color: #fafafa;
}

.page-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6%;
    background-color: #f8f9fa;
}

.page-hero-content h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.page-hero-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #7f8c8d;
}

.page-hero-image {
    flex: 1;
    background-color: #e0d5c7;
    overflow: hidden;
}

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

.about-story {
    padding: 5rem 6%;
    background-color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
}

.story-block h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.about-split-visual {
    display: flex;
    background-color: #f8f9fa;
}

.split-image {
    flex: 1;
    background-color: #d4c5b0;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 4rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.about-values {
    padding: 5rem 6%;
    background-color: #ffffff;
}

.about-values h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.values-grid {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.value-item {
    flex: 1;
    min-width: 260px;
    max-width: 340px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.about-team {
    display: flex;
    background-color: #2c3e50;
    color: #ffffff;
}

.team-content {
    flex: 1.1;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.team-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #ecf0f1;
}

.team-image {
    flex: 0.9;
    background-color: #d4c5b0;
    overflow: hidden;
}

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

.about-process {
    padding: 5rem 6%;
    background-color: #f8f9fa;
}

.about-process h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 3.5rem;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.process-step p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #34495e;
}

.services-detailed {
    padding: 4rem 6%;
    background-color: #ffffff;
}

.service-detail-block {
    display: flex;
    margin-bottom: 5rem;
    gap: 3rem;
}

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

.service-detail-content {
    flex: 1.1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.service-detail-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #34495e;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b6f47;
    font-weight: 700;
}

.service-pricing-info {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
}

.price-label {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #8b6f47;
}

.service-detail-image {
    flex: 0.9;
    background-color: #e0d5c7;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-cta {
    padding: 4rem 6%;
    background-color: #2c3e50;
    text-align: center;
    color: #ffffff;
}

.services-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.services-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #ecf0f1;
}

.contact-split-layout {
    display: flex;
    min-height: 80vh;
}

.contact-info-side {
    flex: 1;
    padding: 5rem 6%;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h1 {
    font-size: 2.6rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.contact-info-side > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
}

.contact-item .note {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-top: 0.5rem;
}

.contact-visit {
    margin-top: 2rem;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 6px;
}

.contact-visit h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-visit p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.contact-visual-side {
    flex: 1;
    background-color: #d4c5b0;
    overflow: hidden;
}

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

.thanks-container {
    padding: 6rem 6%;
    background-color: #f8f9fa;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 800px;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.thanks-content h1 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.thanks-content > p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #34495e;
    text-align: center;
    margin-bottom: 2.5rem;
}

.thanks-details {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
    margin-bottom: 2.5rem;
}

.thanks-details p {
    font-size: 1rem;
    line-height: 1.6;
    color: #34495e;
    margin-bottom: 0.5rem;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.thanks-next-steps ol {
    padding-left: 1.5rem;
    margin-bottom: 2.5rem;
}

.thanks-next-steps li {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 0.8rem;
}

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

.btn-primary {
    display: inline-block;
    padding: 0.95rem 2rem;
    background-color: #8b6f47;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6f5838;
}

.btn-secondary {
    display: inline-block;
    padding: 0.95rem 2rem;
    background-color: transparent;
    color: #2c3e50;
    border: 2px solid #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.legal-page {
    padding: 4rem 6%;
    max-width: 1000px;
    margin: 0 auto;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #34495e;
}

.legal-page ul,
.legal-page ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.legal-page a {
    color: #8b6f47;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #6f5838;
}

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

.cookies-table thead {
    background-color: #2c3e50;
    color: #ffffff;
}

.cookies-table th {
    padding: 1rem;
    text-align: left;
    font-size: 0.95rem;
    font-weight: 600;
}

.cookies-table td {
    padding: 1rem;
    border-bottom: 1px solid #e8e8e8;
    font-size: 0.95rem;
    color: #34495e;
}

.cookies-table tbody tr:hover {
    background-color: #f8f9fa;
}

@media (max-width: 1024px) {
    .hero-split,
    .intro-narrative,
    .problem-amplification,
    .trust-building,
    .page-hero-split,
    .about-split-visual,
    .about-team,
    .contact-split-layout {
        flex-direction: column;
    }

    .service-card,
    .service-card:nth-child(even) {
        flex-direction: column;
    }

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

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

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-main {
        gap: 1.2rem;
    }

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

    .footer-main {
        flex-direction: column;
        gap: 2rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem 4%;
    }

    .hero-content {
        padding: 3rem 5%;
    }

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

    .insight-grid,
    .values-grid,
    .process-steps,
    .testimonial-row {
        flex-direction: column;
    }

    .services-split-grid {
        gap: 2rem;
    }

    .thanks-content {
        padding: 2.5rem 1.5rem;
    }

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