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

:root {
    --primary-color: #1a4d6f;
    --secondary-color: #2c7ba0;
    --accent-color: #f39c12;
    --text-dark: #1f1f1f;
    --text-light: #4a4a4a;
    --text-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --error-color: #e74c3c;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

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

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

a:hover {
    color: var(--secondary-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 1.5rem;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

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

.header-split {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
}

.header-left {
    margin-bottom: 1rem;
}

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

.header-right {
    width: 100%;
}

.nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

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

.nav-list a:hover,
.nav-list a.nav-active {
    color: var(--secondary-color);
}

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 3rem 1.5rem;
    background-color: var(--bg-light);
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-right {
    min-height: 300px;
    background-color: var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.btn-primary,
.btn-secondary,
.btn-submit {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1rem;
    text-align: center;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
}

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

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-submit {
    background-color: var(--accent-color);
    color: var(--text-dark);
    width: 100%;
}

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

.intro-alternate {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
}

.intro-text {
    margin-bottom: 2rem;
}

.intro-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.intro-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.intro-visual {
    background-color: var(--bg-light);
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.problem-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.problem-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.problem-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.insight-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
}

.insight-left {
    min-height: 300px;
    background-color: var(--border-color);
    margin-bottom: 2rem;
    overflow: hidden;
}

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

.insight-right h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.insight-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.link-inline {
    color: var(--secondary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-inline:hover {
    text-decoration: underline;
}

.services-preview {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.services-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.services-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
}

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

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
}

.btn-select-service {
    padding: 0.8rem 1.5rem;
    background-color: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--primary-color);
}

.form-section-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: var(--bg-white);
}

.form-left {
    margin-bottom: 2rem;
}

.form-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.form-right {
    width: 100%;
}

.main-form {
    max-width: 600px;
}

.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 textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
    cursor: not-allowed;
}

.trust-indicators {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.trust-indicators h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.trust-quote {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.trust-author {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
}

.final-cta-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: var(--primary-color);
}

.cta-content {
    padding: 2rem 0;
    text-align: center;
}

.cta-content h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-visual {
    min-height: 250px;
    background-color: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

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

.footer {
    background-color: var(--text-dark);
    color: var(--text-white);
    padding: 3rem 1.5rem 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.page-hero-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.hero-content-left h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.subtitle-large {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-visual-right {
    margin-top: 2rem;
    min-height: 300px;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.origin-story {
    padding: 4rem 1.5rem;
    background-color: var(--bg-white);
}

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

.story-container h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.story-container p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.methodology-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.method-left {
    margin-bottom: 2rem;
}

.method-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.method-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

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

.method-step {
    background-color: var(--bg-white);
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
}

.method-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.method-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-white);
}

.values-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.values-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.value-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

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

.team-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.team-intro {
    margin-bottom: 2rem;
}

.team-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.team-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

.team-composition p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.approach-difference {
    padding: 4rem 1.5rem;
    background-color: var(--bg-white);
}

.approach-difference h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.difference-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.diff-item {
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.diff-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.cta-simple {
    padding: 4rem 1.5rem;
    background-color: var(--primary-color);
    text-align: center;
}

.cta-simple h2 {
    font-size: 2rem;
    color: var(--text-white);
    margin-bottom: 1rem;
}

.cta-simple p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.services-hero {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-detail-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.service-detail-split.reverse {
    background-color: var(--bg-light);
}

.service-content {
    margin-bottom: 2rem;
    max-width: 800px;
}

.service-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-intro {
    font-size: 1.15rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 500;
    line-height: 1.7;
}

.service-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

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

.service-list li {
    padding: 0.6rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.service-deliverable {
    background-color: var(--bg-light);
    padding: 1rem;
    border-radius: 4px;
    margin-top: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    text-align: center;
}

.price-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
}

.form-section-services {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
    text-align: center;
}

.form-section-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.form-section-services p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
    text-align: center;
}

.contact-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.contact-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.contact-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-item a {
    color: var(--secondary-color);
}

.contact-note {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

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

.contact-visual {
    min-height: 300px;
    background-color: var(--border-color);
    overflow: hidden;
}

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

.contact-approach {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.contact-approach h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
}

.approach-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

.location-context {
    padding: 4rem 1.5rem;
    background-color: var(--bg-white);
    max-width: 900px;
    margin: 0 auto;
}

.location-context h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.location-context p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.faq-section {
    padding: 4rem 1.5rem;
    background-color: var(--bg-light);
}

.faq-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.faq-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 6px;
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

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

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--success-color);
}

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

.service-confirmation {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 3rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.next-steps {
    margin-bottom: 3rem;
}

.next-steps h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.step-item {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 6px;
}

.step-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

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

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 400px;
    margin: 0 auto;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 1.5rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.legal-updated {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--secondary-color);
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 2rem;
}

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

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

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

.cookie-table thead {
    background-color: var(--bg-light);
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-color);
    border-bottom: 2px solid var(--border-color);
}

.cookie-table td {
    padding: 1rem;
    color: var(--text-light);
    border-bottom: 1px solid var(--border-color);
}

@media (min-width: 768px) {
    .header-split {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .header-left {
        margin-bottom: 0;
    }

    .header-right {
        width: auto;
    }

    .hero-split {
        flex-direction: row;
    }

    .hero-left {
        flex: 1;
        padding: 4rem 3rem;
    }

    .hero-right {
        flex: 1;
    }

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

    .intro-alternate {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .intro-text {
        flex: 1;
        margin-bottom: 0;
    }

    .intro-visual {
        flex: 1;
    }

    .problem-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .problem-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .insight-split {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .insight-left {
        flex: 1;
        margin-bottom: 0;
    }

    .insight-right {
        flex: 1;
    }

    .services-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 0 0 calc(50% - 1rem);
    }

    .form-section-split {
        flex-direction: row;
        gap: 4rem;
    }

    .form-left {
        flex: 1;
        margin-bottom: 0;
    }

    .form-right {
        flex: 1;
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .final-cta-split {
        flex-direction: row;
    }

    .cta-content {
        flex: 1;
        text-align: left;
        padding: 2rem;
    }

    .cta-visual {
        flex: 1;
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .page-hero-split {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
    }

    .hero-content-left {
        flex: 1;
    }

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

    .hero-visual-right {
        flex: 1;
        margin-top: 0;
    }

    .methodology-split {
        flex-direction: row;
        gap: 3rem;
    }

    .method-left {
        flex: 1;
        margin-bottom: 0;
    }

    .method-right {
        flex: 1;
    }

    .values-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .team-split {
        flex-direction: row;
        gap: 3rem;
    }

    .team-intro {
        flex: 1;
        margin-bottom: 0;
    }

    .team-composition {
        flex: 1;
    }

    .difference-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .diff-item {
        flex: 0 0 100%;
    }

    .service-detail-split {
        flex-direction: row;
        gap: 3rem;
    }

    .service-content {
        flex: 2;
        margin-bottom: 0;
    }

    .service-pricing {
        flex: 1;
    }

    .contact-split {
        flex-direction: row;
        gap: 3rem;
    }

    .contact-info {
        flex: 1;
        margin-bottom: 0;
    }

    .contact-visual {
        flex: 1;
    }

    .approach-steps {
        flex-direction: row;
    }

    .approach-item {
        flex: 1;
    }

    .faq-container {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .thanks-actions {
        flex-direction: row;
        max-width: 600px;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .cookie-actions {
        flex-shrink: 0;
    }
}

@media (min-width: 1024px) {
    .services-container {
        flex-direction: row;
    }

    .service-card {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

    .trust-grid {
        flex-direction: row;
    }

    .trust-item {
        flex: 0 0 calc(33.333% - 1.333rem);
    }

    .problem-item {
        flex: 0 0 calc(33.333% - 1.333rem);
    }
}