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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.ad-disclosure {
    background-color: #f5f5f5;
    color: #666666;
    font-size: 0.8rem;
    padding: 0.5rem 2rem;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

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

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

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-offset {
    width: 45%;
    padding: 8rem 5% 4rem 5%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #fafafa;
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.hero-content-offset p {
    font-size: 1.25rem;
    color: #4a4a4a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-image-split {
    width: 55%;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

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

.cta-primary:hover {
    background-color: #0052a3;
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #333333;
}

.cta-tertiary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0066cc;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-tertiary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

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

.intro-narrow {
    width: 50%;
    padding-right: 3rem;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.intro-visual-block {
    width: 50%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #e0e0e0;
}

.problem-asymmetric {
    display: flex;
    padding: 5rem 5%;
    background-color: #f9f9f9;
    gap: 5rem;
    align-items: center;
}

.problem-image-left {
    width: 40%;
}

.problem-image-left img {
    width: 100%;
    border-radius: 8px;
}

.problem-text-right {
    width: 60%;
    padding-left: 2rem;
}

.problem-text-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.problem-text-right p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

.services-preview-cards h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.cards-staggered {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.card-offset {
    width: calc(50% - 1.25rem);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-offset:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.card-offset img {
    width: 100%;
    display: block;
}

.card-offset h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.card-offset p {
    font-size: 1rem;
    color: #4a4a4a;
    margin: 0 1.5rem 1.5rem 1.5rem;
    line-height: 1.7;
}

.price-tag {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
    margin: 0 1.5rem 1.5rem 1.5rem;
}

.insight-split {
    display: flex;
    min-height: 500px;
}

.insight-visual {
    width: 50%;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.insight-content {
    width: 50%;
    padding: 4rem;
    background-color: #1a1a1a;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.insight-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #e0e0e0;
}

.testimonials-asymmetric {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

.testimonials-asymmetric h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.testimonial-blocks {
    display: flex;
    gap: 3rem;
}

.testimonial-left,
.testimonial-right {
    width: 50%;
    background-color: #ffffff;
    padding: 2.5rem;
    border-left: 4px solid #0066cc;
    border-radius: 4px;
}

.testimonial-left p,
.testimonial-right p {
    font-size: 1.15rem;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-left cite,
.testimonial-right cite {
    font-size: 0.95rem;
    color: #666666;
    font-style: normal;
}

.cta-full-asymmetric {
    padding: 6rem 5%;
    background-color: #0066cc;
    color: #ffffff;
}

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

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

.cta-content-layered p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

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

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

.form-group label {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input,
.form-group select {
    padding: 1rem;
    font-size: 1rem;
    border: 2px solid #ffffff;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.95);
    color: #1a1a1a;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #1a1a1a;
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.disclaimer-section {
    padding: 3rem 5%;
    background-color: #f5f5f5;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #666666;
    line-height: 1.7;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 5% 2rem 5%;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-block p {
    font-size: 0.95rem;
    color: #cccccc;
    line-height: 1.7;
}

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

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

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

.footer-block ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 10000;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

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

.cookie-content a {
    color: #66a3ff;
    text-decoration: underline;
}

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

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

.cookie-btn.accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

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

.about-text-offset {
    width: 50%;
    padding: 4rem 5%;
    background-color: #f9f9f9;
}

.about-text-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.about-text-offset p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.about-image-block {
    width: 50%;
    height: 60vh;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.about-story-asymmetric {
    display: flex;
    padding: 6rem 5%;
    gap: 4rem;
    align-items: flex-start;
}

.story-content-wide {
    width: 55%;
}

.story-content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.story-content-wide p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.story-visual-offset {
    width: 45%;
}

.story-visual-offset img {
    width: 100%;
    border-radius: 8px;
}

.values-grid-asymmetric {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

.values-grid-asymmetric h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.values-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.value-card-offset {
    width: calc(33.333% - 1.67rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.value-card-offset h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.value-card-offset p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.team-asymmetric {
    display: flex;
    min-height: 500px;
}

.team-visual {
    width: 45%;
    background-size: cover;
    background-position: center;
    background-color: #e0e0e0;
}

.team-text {
    width: 55%;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.team-text h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.team-text p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1.2rem;
}

.approach-layered {
    padding: 6rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
}

.approach-layered h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

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

.step-offset {
    width: calc(50% - 1.25rem);
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.step-offset h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.step-offset p {
    font-size: 1rem;
    color: #cccccc;
    line-height: 1.7;
}

.cta-about {
    padding: 4rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.cta-about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.services-hero {
    padding: 6rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.services-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 1.3rem;
    color: #4a4a4a;
}

.service-detail-asymmetric {
    display: flex;
    padding: 5rem 5%;
    gap: 4rem;
    align-items: center;
}

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

.service-image-left {
    width: 45%;
}

.service-image-left img {
    width: 100%;
    border-radius: 8px;
}

.service-content-right {
    width: 55%;
}

.service-content-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-content-right p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.8;
}

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

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

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.service-cta {
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #0052a3;
}

.services-overview {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

.services-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

.pricing-table {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background-color: #ffffff;
    margin-bottom: 1rem;
    border-radius: 4px;
    border-left: 4px solid #0066cc;
}

.service-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1a1a1a;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #0066cc;
}

.cta-services {
    padding: 5rem 5%;
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
}

.cta-services h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-services p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 5%;
    background-color: #f9f9f9;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

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

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

.contact-info-block h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-info-block > p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 3rem;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-item p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.no-link {
    pointer-events: none;
    user-select: text;
}

.contact-visual-offset {
    width: 50%;
}

.contact-visual-offset img {
    width: 100%;
    border-radius: 8px;
}

.contact-approach {
    padding: 6rem 5%;
    background-color: #f9f9f9;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

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

.approach-step {
    flex: 1;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.approach-step h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.approach-step p {
    font-size: 0.95rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-cta-section {
    padding: 5rem 5%;
    background-color: #ffffff;
    text-align: center;
}

.contact-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-cta-section p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

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

.thanks-content {
    width: 55%;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.thanks-visual {
    width: 45%;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
}

.next-steps {
    padding: 5rem 5%;
    background-color: #f9f9f9;
}

.next-steps h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

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

.next-step-card {
    flex: 1;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.next-step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #0066cc;
}

.next-step-card p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333333;
}

.legal-content p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .intro-offset,
    .problem-asymmetric,
    .insight-split,
    .about-hero-split,
    .about-story-asymmetric,
    .team-asymmetric,
    .service-detail-asymmetric,
    .contact-layout-asymmetric,
    .thanks-section {
        flex-direction: column;
    }

    .hero-content-offset,
    .hero-image-split,
    .intro-narrow,
    .intro-visual-block,
    .problem-image-left,
    .problem-text-right,
    .insight-visual,
    .insight-content,
    .about-text-offset,
    .about-image-block,
    .story-content-wide,
    .story-visual-offset,
    .team-visual,
    .team-text,
    .service-image-left,
    .service-content-right,
    .contact-info-block,
    .contact-visual-offset,
    .thanks-content,
    .thanks-visual {
        width: 100%;
    }

    .hero-image-split,
    .intro-visual-block,
    .about-image-block,
    .team-visual {
        min-height: 400px;
    }

    .card-offset,
    .value-card-offset,
    .step-offset {
        width: 100%;
    }

    .approach-steps-horizontal,
    .next-steps-grid {
        flex-direction: column;
    }

    .nav-links {
        gap: 1.5rem;
    }

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

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

@media (max-width: 768px) {
    .hero-content-offset h1,
    .about-text-offset h1,
    .services-hero h1,
    .contact-hero h1,
    .thanks-content h1 {
        font-size: 2.5rem;
    }

    .intro-narrow h2,
    .problem-text-right h2,
    .testimonials-asymmetric h2,
    .cta-content-layered h2,
    .values-grid-asymmetric h2,
    .team-text h2,
    .approach-layered h2,
    .cta-about h2,
    .services-overview h2,
    .service-content-right h2,
    .cta-services h2,
    .contact-info-block h2,
    .approach-content h2,
    .contact-cta-section h2,
    .next-steps h2,
    .legal-page h1 {
        font-size: 2rem;
    }

    .nav-links {
        display: none;
    }

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

    .testimonial-left,
    .testimonial-right {
        width: 100%;
    }
}