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

:root {
    --primary-color: #1a5f4e;
    --secondary-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-medium: #e9ecef;
    --white: #ffffff;
    --accent-green: #2d7a5f;
    --accent-amber: #c89860;
}

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

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: sticky;
    top: 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--bg-medium);
}

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

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

.nav-links a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.ad-disclosure {
    font-size: 0.75rem;
    color: var(--text-light);
    padding: 0.25rem 0.75rem;
    border: 1px solid var(--bg-medium);
    border-radius: 4px;
    margin-left: 1rem;
}

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 5%;
    position: relative;
}

.hero-text-block {
    width: 45%;
    padding-right: 3rem;
    z-index: 2;
}

.hero-text-block h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.hero-image-overlay {
    position: absolute;
    right: 0;
    top: 10%;
    width: 55%;
    height: 80%;
    z-index: 1;
}

.hero-image-overlay img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px 0 0 8px;
}

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

.cta-primary:hover {
    background-color: var(--accent-green);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: var(--accent-amber);
}

.intro-asymmetric {
    display: flex;
    gap: 4rem;
    padding: 6rem 5% 4rem;
    background-color: var(--bg-light);
}

.intro-column-narrow {
    width: 35%;
}

.intro-column-narrow h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--text-dark);
}

.intro-column-wide {
    width: 65%;
}

.intro-column-wide p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.intro-column-wide img {
    width: 100%;
    margin-top: 2rem;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

.problem-amplification {
    padding: 5rem 5%;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.problem-card-offset {
    width: 50%;
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-top: 4rem;
}

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

.problem-card-offset p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

.insight-block {
    width: 50%;
    padding: 2rem 2rem 2rem 3rem;
    border-left: 4px solid var(--primary-color);
}

.insight-block p {
    font-size: 1.1rem;
    color: var(--text-dark);
    line-height: 1.7;
}

.services-staggered {
    padding: 6rem 5%;
    background-color: var(--bg-light);
}

.services-staggered h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--text-dark);
}

.service-cards-irregular {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.card-offset-left {
    margin-left: 0;
    margin-right: 10%;
}

.card-offset-right {
    margin-left: 10%;
    margin-right: 0;
}

.card-offset-center {
    margin-left: 5%;
    margin-right: 5%;
}

.service-card img {
    width: 40%;
    object-fit: cover;
    background-color: var(--bg-medium);
}

.service-content {
    width: 60%;
    padding: 2.5rem;
}

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

.service-content p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

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

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

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

.trust-building-section {
    padding: 6rem 5%;
}

.trust-content-split {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-text {
    width: 50%;
}

.trust-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.trust-text p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.trust-visual {
    width: 50%;
}

.trust-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

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

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

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

.form-container > p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

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

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

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 1px solid var(--bg-medium);
    border-radius: 6px;
    font-size: 1rem;
    background-color: var(--white);
}

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

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

.btn-submit:hover {
    background-color: var(--accent-green);
}

.final-cta-section {
    padding: 5rem 5%;
    text-align: center;
}

.final-cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: var(--white);
    padding: 4rem 5% 2rem;
}

.footer-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

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

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

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

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

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

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

.footer-disclaimer {
    width: 100%;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

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

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

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

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

.cookie-content a {
    color: var(--secondary-color);
}

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

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

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

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

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

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

.about-hero-offset {
    padding: 6rem 5% 4rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.about-text-primary {
    width: 45%;
}

.about-text-primary h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.about-image-block {
    width: 55%;
}

.about-image-block img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

.about-story-section {
    padding: 5rem 5%;
    background-color: var(--bg-light);
    display: flex;
    gap: 4rem;
}

.story-column-left,
.story-column-right {
    width: 50%;
}

.story-column-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.story-column-left p,
.story-column-right p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-section-asymmetric {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.approach-visual {
    width: 40%;
}

.approach-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

.approach-content {
    width: 60%;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.approach-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.value-card:nth-child(1) {
    margin-top: 0;
}

.value-card:nth-child(2) {
    margin-top: 3rem;
}

.value-card:nth-child(3) {
    margin-top: 1.5rem;
}

.value-card:nth-child(4) {
    margin-top: 4rem;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.value-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.team-context-section {
    padding: 6rem 5%;
}

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

.team-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.team-image {
    margin: 3rem 0;
}

.team-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

.team-details p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.commitment-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.commitment-content {
    max-width: 800px;
    margin: 0 auto;
}

.commitment-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.commitment-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.commitment-content .cta-primary {
    margin-top: 1rem;
}

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

.services-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.services-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 4rem 5%;
}

.service-detail-card {
    display: flex;
    gap: 4rem;
    margin-bottom: 5rem;
    align-items: flex-start;
}

.card-left-align {
    flex-direction: row;
}

.card-right-align {
    flex-direction: row-reverse;
}

.card-center-align {
    flex-direction: row;
    padding: 0 5%;
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

.service-detail-content {
    flex: 1;
}

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

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

.service-detail-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
    position: relative;
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.approach-steps {
    display: flex;
    gap: 2rem;
}

.approach-step {
    flex: 1;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

.approach-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.approach-step p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.form-section-services {
    padding: 6rem 5%;
}

.contact-hero {
    padding: 6rem 5% 3rem;
    text-align: center;
    background-color: var(--bg-light);
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-hero p {
    font-size: 1.2rem;
    color: var(--text-medium);
}

.contact-layout-asymmetric {
    padding: 4rem 5%;
    display: flex;
    gap: 4rem;
}

.contact-info-primary {
    width: 50%;
}

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

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.contact-note p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-visual {
    width: 50%;
}

.contact-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

.contact-additional-info {
    padding: 5rem 5%;
    background-color: var(--bg-light);
}

.info-block-offset {
    max-width: 900px;
    margin: 0 auto 4rem;
}

.info-block-offset h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.info-block-offset p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-context {
    padding: 6rem 5%;
}

.location-context h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-dark);
}

.location-details {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.location-details p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.location-details ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.location-details ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
}

.location-details ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.location-image img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

.thanks-section {
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    min-height: 70vh;
    align-items: center;
}

.thanks-content {
    width: 60%;
}

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

.thanks-content > p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

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

.thanks-details p {
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.7;
}

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

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

.next-step {
    margin-bottom: 2rem;
}

.next-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.next-step p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.6;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--accent-green);
}

.btn-secondary {
    padding: 1rem 2rem;
    background-color: transparent;
    color: var(--primary-color);
    text-decoration: none;
    border: 2px solid var(--primary-color);
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

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

.thanks-visual {
    width: 40%;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
    background-color: var(--bg-medium);
}

.legal-page {
    padding: 4rem 5%;
    max-width: 900px;
    margin: 0 auto;
}

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

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

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

.legal-content h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.legal-content p {
    font-size: 1.05rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.legal-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.5rem;
}

.legal-content ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-medium);
    line-height: 1.6;
}

.legal-content ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.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(--text-dark);
    border-bottom: 2px solid var(--bg-medium);
}

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

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-text-block {
        width: 100%;
        padding-right: 0;
    }

    .hero-image-overlay {
        position: static;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .intro-asymmetric,
    .problem-amplification,
    .trust-content-split,
    .about-story-section,
    .approach-section-asymmetric,
    .contact-layout-asymmetric,
    .thanks-section {
        flex-direction: column;
    }

    .intro-column-narrow,
    .intro-column-wide,
    .problem-card-offset,
    .insight-block,
    .trust-text,
    .trust-visual,
    .story-column-left,
    .story-column-right,
    .approach-visual,
    .approach-content,
    .contact-info-primary,
    .contact-visual,
    .thanks-content,
    .thanks-visual {
        width: 100%;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .card-right-align {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-text-block h1,
    .about-text-primary h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 2rem;
    }

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

    .value-card:nth-child(n) {
        margin-top: 0;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }
}