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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #fafafa;
    overflow-x: hidden;
}

a {
    color: #2a5f8f;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #1a3f5f;
}

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

.nav-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1.2rem 0;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a3f5f;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background: #f0f0f0;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin: 0 1rem;
}

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

.nav-links a {
    font-weight: 500;
    color: #2c2c2c;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2a5f8f;
}

.hero-asymmetric {
    margin-top: 5rem;
    min-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 3rem 2rem;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    gap: 3rem;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 520px;
    padding-left: 8%;
    padding-top: 3rem;
    z-index: 10;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: #1a3f5f;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 1.25rem;
    color: #555;
    line-height: 1.8;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-right: -5%;
    margin-top: -2rem;
    background-color: #e8eff5;
    border-radius: 8px;
    overflow: hidden;
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    min-height: 500px;
}

.hero-cta-offset {
    max-width: 1400px;
    margin: 3rem auto 0;
    padding: 0 2rem;
    margin-left: 15%;
}

.cta-primary {
    display: inline-block;
    background: #2a5f8f;
    color: #fff;
    padding: 1.1rem 2.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(42, 95, 143, 0.3);
}

.cta-primary:hover {
    background: #1a3f5f;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(42, 95, 143, 0.4);
}

.cta-secondary {
    display: inline-block;
    background: #fff;
    color: #2a5f8f;
    padding: 1rem 2.2rem;
    border: 2px solid #2a5f8f;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #2a5f8f;
    color: #fff;
}

.story-irregular {
    max-width: 1300px;
    margin: 6rem auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
}

.story-block-left {
    flex: 1;
    max-width: 550px;
    margin-left: 5%;
}

.story-block-left h2 {
    font-size: 2.5rem;
    color: #1a3f5f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.story-block-left p {
    font-size: 1.1rem;
    color: #444;
    line-height: 1.9;
}

.story-image-right {
    flex: 1;
    background-color: #f5f7f9;
    border-radius: 8px;
    overflow: hidden;
    margin-right: -3%;
    margin-top: 2rem;
}

.story-image-right img {
    width: 100%;
    height: auto;
}

.problem-amplification {
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eff5 100%);
    padding: 5rem 2rem;
    margin: 4rem 0;
    position: relative;
}

.problem-card-offset {
    max-width: 650px;
    margin: 0 auto 3rem;
    padding: 2.5rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transform: translateX(-8%);
}

.problem-card-offset h3 {
    font-size: 2rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.problem-card-offset p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.problem-stats-overlap {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    transform: translateX(10%);
}

.stat-card {
    background: #2a5f8f;
    color: #fff;
    padding: 2rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    min-width: 240px;
    box-shadow: 0 6px 18px rgba(42, 95, 143, 0.3);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.95;
    display: block;
}

.insight-section {
    max-width: 1300px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.insight-wrapper {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.insight-content-offset {
    flex: 1.2;
    padding-right: 2rem;
    margin-top: 3rem;
}

.insight-content-offset h2 {
    font-size: 2.3rem;
    color: #1a3f5f;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.insight-content-offset p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.insight-image-stack {
    flex: 0.8;
    background-color: #f5f7f9;
    border-radius: 8px;
    overflow: hidden;
    margin-top: -2rem;
}

.trust-elements {
    background: #fafafa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.trust-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    align-items: stretch;
}

.trust-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
}

.trust-offset-1 {
    transform: translateY(-1.5rem);
}

.trust-offset-2 {
    transform: translateY(1.5rem);
}

.trust-offset-3 {
    flex-basis: 100%;
    transform: translateX(5%);
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
    overflow: hidden;
    background-color: #e8eff5;
}

.trust-card h4 {
    font-size: 1.4rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.trust-card p {
    color: #555;
    line-height: 1.8;
}

.testimonials-overlap {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.testimonials-overlap h2 {
    font-size: 2.5rem;
    color: #1a3f5f;
    text-align: center;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    background: #f0f4f8;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2a5f8f;
    min-width: 280px;
}

.testimonial-offset-1 {
    transform: translateY(-1rem);
}

.testimonial-offset-2 {
    transform: translateY(1rem);
}

.testimonial p {
    font-size: 1.05rem;
    color: #333;
    font-style: italic;
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.benefits-reveal {
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.benefits-header-offset {
    max-width: 750px;
    margin: 0 auto 4rem;
    text-align: center;
    padding-left: 5%;
}

.benefits-header-offset h2 {
    font-size: 2.8rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.benefits-header-offset p {
    font-size: 1.15rem;
    color: #555;
}

.services-asymmetric-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    flex: 1;
    min-width: 300px;
    max-width: 450px;
    display: flex;
    flex-direction: column;
}

.service-card-offset-1 {
    transform: translateY(-2rem);
}

.service-card-offset-2 {
    transform: translateY(1.5rem);
}

.service-card-offset-3 {
    transform: translateY(-1rem);
}

.service-card-offset-4 {
    transform: translateY(2rem);
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #e8eff5;
}

.service-card h3 {
    font-size: 1.6rem;
    color: #1a3f5f;
    margin: 1.5rem 1.5rem 1rem;
}

.service-card p {
    color: #555;
    line-height: 1.7;
    margin: 0 1.5rem 1.5rem;
    flex-grow: 1;
}

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2a5f8f;
    margin: 1rem 1.5rem;
}

.btn-select-service {
    background: #2a5f8f;
    color: #fff;
    border: none;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 1.5rem 1.5rem;
    border-radius: 6px;
}

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

.form-section-offset {
    background: linear-gradient(135deg, #e8eff5 0%, #f5f7f9 100%);
    padding: 6rem 2rem;
    margin: 5rem 0;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 8px;
    padding: 3rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    transform: translateX(-5%);
}

.form-intro {
    margin-bottom: 2.5rem;
}

.form-intro h2 {
    font-size: 2.3rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.05rem;
    color: #555;
    line-height: 1.8;
}

.contact-form-irregular {
    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: #2c2c2c;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    padding: 0.9rem 1rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: #2a5f8f;
    color: #fff;
    border: none;
    padding: 1.2rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    margin-top: 1rem;
}

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

.final-cta-overlap {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    background: #1a3f5f;
    border-radius: 8px;
    text-align: center;
    transform: translateX(3%);
}

.final-cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 2rem;
}

.final-cta-content .cta-secondary {
    background: #fff;
    color: #1a3f5f;
    border-color: #fff;
}

.final-cta-content .cta-secondary:hover {
    background: #f0f4f8;
}

.footer-asymmetric {
    background: #2c2c2c;
    color: #ddd;
    padding: 4rem 2rem 2rem;
}

.footer-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.footer-block-1 {
    transform: translateY(-1rem);
}

.footer-block-2 {
    transform: translateY(0.5rem);
}

.footer-block-3 {
    transform: translateY(-0.5rem);
}

.footer-block-4 {
    flex-basis: 100%;
    transform: translateX(5%);
    max-width: 600px;
}

.footer-block h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-block p {
    line-height: 1.7;
    color: #bbb;
}

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

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

.footer-block a {
    color: #bbb;
    transition: color 0.3s ease;
}

.footer-block a:hover {
    color: #fff;
}

.references {
    list-style: decimal;
    padding-left: 1.5rem;
}

.references li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(28, 28, 28, 0.98);
    color: #fff;
    padding: 1.5rem 2rem;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #2a5f8f;
    color: #fff;
}

.btn-accept:hover {
    background: #1a3f5f;
}

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

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

.about-hero-offset {
    margin-top: 5rem;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eff5 100%);
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: #555;
}

.about-story-irregular {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-content-left {
    flex: 1;
    max-width: 600px;
}

.story-content-left h2 {
    font-size: 2.3rem;
    color: #1a3f5f;
    margin-bottom: 1.5rem;
}

.story-content-left p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.9;
    margin-bottom: 1.2rem;
}

.story-image-overlap-right {
    flex: 1;
    background-color: #e8eff5;
    border-radius: 8px;
    overflow: hidden;
    transform: translateX(3%) translateY(-2rem);
}

.about-approach {
    background: #fafafa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.approach-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.approach-header h2 {
    font-size: 2.5rem;
    color: #1a3f5f;
}

.approach-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.approach-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 280px;
}

.approach-offset-1 {
    transform: translateY(-1.5rem);
}

.approach-offset-2 {
    transform: translateY(1rem);
}

.approach-offset-3 {
    transform: translateY(-0.5rem);
}

.approach-card h3 {
    font-size: 1.5rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.approach-card p {
    color: #555;
    line-height: 1.8;
}

.team-section-asymmetric {
    max-width: 1200px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.team-section-asymmetric h2 {
    font-size: 2.5rem;
    color: #1a3f5f;
    text-align: center;
    margin-bottom: 3rem;
}

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

.team-block {
    background: #f0f4f8;
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
}

.team-offset-1 {
    transform: translateY(-1rem);
}

.team-offset-2 {
    transform: translateY(1.5rem);
}

.team-offset-3 {
    flex-basis: 100%;
    padding: 0;
    overflow: hidden;
    background-color: #e8eff5;
    transform: translateX(-5%);
}

.team-block h4 {
    font-size: 1.4rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.team-block p {
    color: #555;
    line-height: 1.8;
}

.values-offset {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 3rem 2rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    transform: translateX(5%);
}

.values-content h2 {
    font-size: 2.3rem;
    color: #1a3f5f;
    margin-bottom: 2rem;
}

.values-list-irregular {
    list-style: none;
    padding-left: 0;
}

.values-list-irregular li {
    padding: 1.2rem 0 1.2rem 2.5rem;
    position: relative;
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
    border-bottom: 1px solid #eee;
}

.values-list-irregular li:last-child {
    border-bottom: none;
}

.values-list-irregular li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2a5f8f;
    font-weight: 700;
    font-size: 1.3rem;
}

.services-hero-offset {
    margin-top: 5rem;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #e8eff5 0%, #f5f7f9 100%);
    text-align: center;
}

.services-hero-offset h1 {
    font-size: 3rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.services-hero-offset p {
    font-size: 1.2rem;
    color: #555;
}

.services-detailed-asymmetric {
    max-width: 1300px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.service-detail-block {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
}

.service-detail-offset-1 {
    transform: translateX(-3%);
}

.service-detail-offset-2 {
    transform: translateX(3%);
}

.service-detail-offset-3 {
    transform: translateX(-2%);
}

.service-detail-offset-4 {
    transform: translateX(2%);
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
}

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

.service-detail-content h2 {
    font-size: 2.2rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    color: #2a5f8f;
    margin: 2rem 0 1rem;
}

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

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

.service-detail-content ul li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #444;
    line-height: 1.7;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2a5f8f;
    font-weight: 700;
}

.service-pricing-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f0f4f8;
    border-radius: 6px;
}

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

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2a5f8f;
}

.services-cta-offset {
    max-width: 800px;
    margin: 6rem auto;
    padding: 3rem 2rem;
    background: #f0f4f8;
    border-radius: 8px;
    text-align: center;
    transform: translateX(-5%);
}

.services-cta-offset h2 {
    font-size: 2rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.services-cta-offset p {
    font-size: 1.05rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-hero-offset {
    margin-top: 5rem;
    padding: 5rem 2rem 3rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eff5 100%);
    text-align: center;
}

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

.contact-hero-offset p {
    font-size: 1.2rem;
    color: #555;
}

.contact-info-asymmetric {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.contact-block {
    flex: 1;
}

.contact-offset-1 {
    transform: translateY(-2rem);
}

.contact-offset-2 {
    background-color: #e8eff5;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(2rem);
}

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

.contact-detail h3 {
    font-size: 1.3rem;
    color: #1a3f5f;
    margin-bottom: 0.8rem;
}

.contact-detail p {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.8;
}

.contact-process {
    background: #fafafa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.contact-process h2 {
    font-size: 2.5rem;
    color: #1a3f5f;
    text-align: center;
    margin-bottom: 3rem;
}

.process-steps-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.process-step {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 240px;
}

.process-step-offset-1 {
    transform: translateY(-1rem);
}

.process-step-offset-2 {
    transform: translateY(0.5rem);
}

.process-step-offset-3 {
    transform: translateY(-0.8rem);
}

.process-step-offset-4 {
    transform: translateY(1.2rem);
}

.process-step-offset-5 {
    transform: translateY(-0.5rem);
}

.step-number {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #2a5f8f;
    margin-bottom: 1rem;
}

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

.process-step p {
    color: #555;
    line-height: 1.7;
}

.contact-faq-offset {
    max-width: 1000px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.contact-faq-offset h2 {
    font-size: 2.3rem;
    color: #1a3f5f;
    margin-bottom: 2.5rem;
    text-align: center;
}

.faq-irregular {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background: #f0f4f8;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2a5f8f;
}

.faq-item h3 {
    font-size: 1.3rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.faq-item p {
    color: #444;
    line-height: 1.8;
}

.thanks-hero {
    margin-top: 5rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f0f4f8 0%, #e8eff5 100%);
}

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

.thanks-content-center h1 {
    font-size: 3rem;
    color: #1a3f5f;
    margin-bottom: 1.5rem;
}

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

#selected-service-display {
    font-weight: 700;
    color: #2a5f8f;
    font-size: 1.3rem;
}

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

.btn-secondary {
    display: inline-block;
    background: #fff;
    color: #2a5f8f;
    padding: 1rem 2rem;
    border: 2px solid #2a5f8f;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #2a5f8f;
    color: #fff;
}

.thanks-next-steps {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.thanks-next-steps h2 {
    font-size: 2.3rem;
    color: #1a3f5f;
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-icon {
    display: inline-block;
    font-size: 2rem;
    font-weight: 800;
    color: #2a5f8f;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    color: #1a3f5f;
    margin-bottom: 0.8rem;
}

.step-card p {
    color: #555;
    line-height: 1.7;
}

.legal-content {
    max-width: 900px;
    margin: 5rem auto 3rem;
    padding: 0 2rem;
}

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a3f5f;
    margin-bottom: 1rem;
}

.legal-content h2 {
    font-size: 2rem;
    color: #1a3f5f;
    margin: 2.5rem 0 1rem;
}

.legal-content h3 {
    font-size: 1.5rem;
    color: #2a5f8f;
    margin: 2rem 0 1rem;
}

.legal-content h4 {
    font-size: 1.2rem;
    color: #2a5f8f;
    margin: 1.5rem 0 0.8rem;
}

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

.legal-content ul,
.legal-content ol {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-content li {
    margin-bottom: 0.8rem;
    color: #444;
}

.legal-content em {
    color: #666;
    font-size: 0.95rem;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.cookies-table th {
    background: #f0f4f8;
    color: #1a3f5f;
    font-weight: 600;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
    }

    .hero-offset-content {
        flex-direction: column;
    }

    .hero-text-block {
        padding-left: 0;
    }

    .hero-text-block h1 {
        font-size: 2.2rem;
    }

    .hero-image-overlap {
        margin-right: 0;
    }

    .hero-cta-offset {
        margin-left: 0;
    }

    .story-irregular,
    .about-story-irregular,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .story-block-left {
        margin-left: 0;
    }

    .story-image-right,
    .story-image-overlap-right {
        margin-right: 0;
        transform: translateX(0);
    }

    .insight-wrapper {
        flex-direction: column;
    }

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

    .problem-card-offset,
    .problem-stats-overlap,
    .form-container-asymmetric,
    .values-offset,
    .services-cta-offset {
        transform: translateX(0);
    }

    .final-cta-overlap {
        transform: translateX(0);
    }

    .service-card-offset-1,
    .service-card-offset-2,
    .service-card-offset-3,
    .service-card-offset-4 {
        transform: translateY(0);
    }

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