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

:root {
    --primary-color: #1a3a52;
    --secondary-color: #2d5f7e;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #ecf0f1;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--text-light);
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

.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;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-cookie {
    background: var(--accent-color);
    color: var(--bg-white);
}

.btn-cookie:hover {
    background: #d35400;
}

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

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: var(--bg-white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.hero-offset {
    display: flex;
    flex-direction: column;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: 70vh;
}

.hero-content-left {
    max-width: 600px;
    margin-bottom: 3rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

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

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

.hero-image-right {
    align-self: flex-end;
    max-width: 550px;
    margin-top: 2rem;
}

.hero-image-right img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.intro-asymmetric {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background: var(--bg-white);
}

.intro-block-offset {
    max-width: 650px;
    margin-left: 8%;
    margin-bottom: 3rem;
}

.intro-block-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.intro-block-offset p {
    font-size: 1.2rem;
    line-height: 1.8;
}

.intro-visual {
    max-width: 500px;
    align-self: flex-end;
    margin-right: 5%;
}

.intro-visual img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

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

.problem-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    max-width: 600px;
}

.problem-card.offset-1 {
    margin-left: 0;
}

.problem-card.offset-2 {
    margin-left: 10%;
}

.problem-card.offset-3 {
    margin-left: 5%;
}

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

.solution-overlap {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background: var(--bg-white);
    position: relative;
}

.solution-text {
    max-width: 600px;
    z-index: 2;
    margin-bottom: 3rem;
}

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

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.benefit-list li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
}

.benefit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

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

.solution-image-overlap {
    max-width: 550px;
    align-self: flex-end;
    margin-right: 8%;
}

.solution-image-overlap img {
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.services-main {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.services-title {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    max-width: 550px;
    transition: all 0.3s ease;
}

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

.service-card.card-offset-a {
    margin-left: 0;
}

.service-card.card-offset-b {
    margin-left: 15%;
}

.service-card.card-offset-c {
    margin-left: 8%;
}

.service-card.card-offset-d {
    margin-left: 20%;
}

.service-card.card-offset-e {
    margin-left: 5%;
}

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

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

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

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

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

.service-select.selected {
    background: var(--accent-color);
}

.testimonial-offset {
    padding: 4rem 5%;
    background: var(--primary-color);
    color: var(--text-light);
}

.testimonial-content {
    max-width: 700px;
    margin-left: 10%;
}

.testimonial-content blockquote {
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    color: var(--accent-color);
}

.form-section {
    padding: 5rem 5%;
    background: var(--bg-light);
}

.form-container-asymmetric {
    max-width: 600px;
    margin-left: 12%;
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.form-container-asymmetric h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.form-intro {
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

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

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

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

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

.cta-final {
    max-width: 700px;
    margin: 5rem auto;
    text-align: center;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.cta-final h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cta-final p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

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

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

.footer-asymmetric {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h4 {
    color: var(--accent-color);
    margin-bottom: 1rem;
}

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

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

.footer-col a {
    color: var(--text-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
}

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

.sticky-cta.show {
    display: block;
}

.sticky-cta a {
    display: block;
    padding: 1rem 2rem;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.4);
    transition: all 0.3s ease;
}

.sticky-cta a:hover {
    background: #d35400;
    transform: scale(1.05);
}

.about-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto;
}

.about-story {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background: var(--bg-white);
}

.story-block-left {
    max-width: 600px;
    margin-bottom: 3rem;
}

.story-block-left h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.story-block-left p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.story-image-right {
    max-width: 550px;
    align-self: flex-end;
}

.story-image-right img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.about-mission-offset {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.mission-content {
    max-width: 650px;
    margin-left: 10%;
}

.mission-content h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.mission-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-values {
    padding: 5rem 5%;
    background: var(--bg-white);
    text-align: center;
}

.about-values h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
}

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

.value-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    max-width: 450px;
}

.value-card.offset-va {
    align-self: flex-start;
}

.value-card.offset-vb {
    align-self: flex-end;
}

.value-card.offset-vc {
    align-self: center;
}

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

.about-approach {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background: var(--bg-light);
}

.approach-visual {
    max-width: 500px;
    margin-bottom: 3rem;
}

.approach-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.approach-text {
    max-width: 600px;
    align-self: flex-end;
    margin-right: 5%;
}

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

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.about-team {
    padding: 5rem 5%;
    background: var(--bg-white);
    text-align: center;
}

.about-team h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.team-intro {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.team-highlight {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.team-highlight p {
    font-size: 1.2rem;
    font-weight: 500;
}

.about-cta {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.about-cta h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.services-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.services-hero-subtitle {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 5%;
    background: var(--bg-white);
}

.service-detail {
    display: flex;
    flex-direction: column;
    padding: 4rem 0;
    gap: 3rem;
}

.service-detail.offset-sd-1 {
    margin-left: 0;
}

.service-detail.offset-sd-2 {
    margin-left: 8%;
}

.service-detail.offset-sd-3 {
    margin-left: 3%;
}

.service-detail.offset-sd-4 {
    margin-left: 10%;
}

.service-detail.offset-sd-5 {
    margin-left: 5%;
}

.service-detail-content {
    max-width: 600px;
}

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

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

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

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

.service-detail-content ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.8rem;
}

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

.cta-service:hover {
    background: #d35400;
    transform: translateY(-2px);
}

.service-detail-image {
    max-width: 500px;
}

.service-detail-image img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.services-cta-final {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.services-cta-final h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.services-cta-final p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.contact-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
}

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

.contact-hero p {
    font-size: 1.3rem;
}

.contact-main {
    display: flex;
    flex-direction: column;
    padding: 5rem 5%;
    background: var(--bg-white);
    gap: 3rem;
}

.contact-info {
    max-width: 600px;
}

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

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.contact-detail p {
    font-size: 1.1rem;
}

.contact-detail a {
    color: var(--accent-color);
}

.contact-visual {
    max-width: 550px;
    align-self: flex-end;
}

.contact-visual img {
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

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

.approach-step {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.approach-step h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.contact-cta {
    padding: 4rem 5%;
    background: var(--bg-white);
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.thanks-hero {
    padding: 5rem 5%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    text-align: center;
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.selected-service {
    font-size: 1.1rem;
    color: var(--accent-color);
}

.thanks-next-steps {
    padding: 4rem 5%;
    background: var(--bg-white);
}

.thanks-next-steps h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 3rem;
    text-align: center;
}

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

.next-step {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
}

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

.thanks-resources {
    padding: 4rem 5%;
    background: var(--bg-light);
    text-align: center;
}

.thanks-resources h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thanks-resources p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.resource-link {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.resource-link:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 5rem 5%;
    background: var(--bg-white);
}

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

.legal-updated {
    font-style: italic;
    color: #6c757d;
    margin-bottom: 3rem;
}

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

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

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

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

.legal-content ul li {
    margin-bottom: 0.5rem;
}

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

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

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

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

    .hero-image-right {
        margin-top: 0;
        flex-shrink: 0;
    }

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

    .intro-block-offset {
        margin-bottom: 0;
    }

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

    .solution-overlap {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

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

    .solution-image-overlap {
        flex-shrink: 0;
        margin-top: -3rem;
    }

    .services-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }

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

    .about-story {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

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

    .values-grid-asymmetric {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .about-approach {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .approach-visual {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .service-detail {
        flex-direction: row;
        align-items: center;
    }

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

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

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

    .approach-step {
        flex: 1 1 45%;
    }

    .next-steps-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .next-step {
        flex: 1 1 30%;
    }
}

@media (min-width: 1024px) {
    .hero-content-left h1 {
        font-size: 3.5rem;
    }
}