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

:root {
    --primary-color: #1a5490;
    --secondary-color: #2ecc71;
    --dark-gray: #2c3e50;
    --light-gray: #ecf0f1;
    --accent-color: #e74c3c;
    --text-color: #333;
    --white: #ffffff;
    --border-color: #ddd;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
}

.header-asymmetric {
    background-color: var(--white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-area {
    flex: 0 0 auto;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #999;
    padding: 0.3rem 0.7rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #fafafa;
}

.hero-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    min-height: 70vh;
}

.hero-text-block {
    flex: 1 1 45%;
    padding-left: 5%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-intro {
    font-size: 1.3rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.5;
}

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

.cta-primary:hover {
    background-color: #143d6b;
    transform: translateY(-2px);
}

.hero-image-shifted {
    flex: 1 1 50%;
    position: relative;
    transform: translateX(8%);
}

.hero-image-shifted img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    object-fit: cover;
}

.intro-diagonal {
    background: linear-gradient(135deg, var(--light-gray) 0%, #ffffff 100%);
    padding: 5rem 2rem;
    transform: skewY(-2deg);
    margin: 3rem 0;
}

.diagonal-content {
    transform: skewY(2deg);
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.text-column-narrow {
    flex: 1 1 55%;
}

.text-column-narrow h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.text-column-narrow p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.image-stack {
    flex: 1 1 40%;
}

.image-stack img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    object-fit: cover;
}

.services-overlap {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-title-offset {
    margin-bottom: 3rem;
    margin-left: 10%;
}

.section-title-offset h2 {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.subtitle {
    font-size: 1.2rem;
    color: #777;
}

.service-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
}

.card-large {
    flex: 1 1 calc(60% - 1rem);
}

.card-small {
    flex: 1 1 calc(35% - 1rem);
}

.card-wide {
    flex: 1 1 calc(55% - 1rem);
}

.card-medium {
    flex: 1 1 calc(40% - 1rem);
}

.card-tall {
    flex: 1 1 100%;
    flex-direction: row;
}

.card-visual {
    background-color: var(--light-gray);
    flex-shrink: 0;
}

.card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.card-text {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-tall .card-visual {
    flex: 1 1 40%;
}

.card-tall .card-text {
    flex: 1 1 60%;
}

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

.card-text p {
    color: #666;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.price-tag {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.select-service:hover {
    background-color: #27ae60;
}

.trust-block-rotated {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem;
    margin: 4rem 0;
    transform: rotate(-1deg);
}

.trust-content {
    transform: rotate(1deg);
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-inline {
    font-size: 1.4rem;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 2rem;
    border-left: 4px solid var(--secondary-color);
    padding-left: 2rem;
}

.testimonial-inline p {
    margin-bottom: 1rem;
}

.testimonial-inline cite {
    font-style: normal;
    font-size: 1rem;
    opacity: 0.9;
}

.trust-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.85;
}

.form-section-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-intro-text {
    flex: 1 1 35%;
    padding-top: 3rem;
}

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

.form-intro-text p {
    font-size: 1.1rem;
    color: #666;
}

.form-container-offset {
    flex: 1 1 60%;
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

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

.service-display {
    background-color: var(--white);
    padding: 1.2rem;
    border-radius: 6px;
    border: 2px solid var(--secondary-color);
    margin-bottom: 1rem;
}

.service-display p {
    margin: 0;
    font-weight: 600;
    color: var(--dark-gray);
}

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

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

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

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

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

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

.why-choose-overlap {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.overlap-image {
    flex: 1 1 40%;
    transform: translateX(-5%);
}

.overlap-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
    object-fit: cover;
}

.overlap-text-block {
    flex: 1 1 55%;
    background-color: var(--light-gray);
    padding: 3rem;
    border-radius: 10px;
}

.overlap-text-block h2 {
    font-size: 2.3rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    color: #555;
    border-bottom: 1px solid var(--border-color);
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.3rem;
}

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

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

.footer-col {
    flex: 1 1 200px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

.disclaimer-text {
    font-size: 0.85rem;
    line-height: 1.5;
    opacity: 0.75;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
    text-align: center;
    opacity: 0.7;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: var(--white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}

.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 1 60%;
    margin: 0;
}

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

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

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

.btn-accept:hover {
    background-color: #27ae60;
}

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

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

.about-hero-split {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.about-text-large h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.lead-text {
    font-size: 1.3rem;
    color: #666;
    line-height: 1.6;
}

.story-section-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.story-container {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-left {
    flex: 1 1 45%;
    background-color: var(--light-gray);
}

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.story-text-right {
    flex: 1 1 50%;
}

.story-text-right h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

.story-text-right p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.values-asymmetric {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    background-color: var(--light-gray);
}

.section-title-centered {
    text-align: center;
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 3rem;
}

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

.value-block {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

.value-tall {
    flex: 1 1 calc(30% - 1rem);
}

.value-wide {
    flex: 1 1 calc(65% - 1rem);
}

.value-medium {
    flex: 1 1 calc(55% - 1rem);
}

.value-small {
    flex: 1 1 calc(40% - 1rem);
}

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

.value-block p {
    color: #666;
    line-height: 1.6;
}

.team-showcase {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.team-intro-offset {
    margin-bottom: 3rem;
    margin-left: 8%;
}

.team-intro-offset h2 {
    font-size: 2.8rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.team-intro-offset p {
    font-size: 1.1rem;
    color: #777;
}

.team-layout-staggered {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.team-member {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
}

.member-image {
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.member-info h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.member-info p {
    color: #666;
    font-size: 0.95rem;
}

.approach-section {
    background: linear-gradient(to bottom, #ffffff, var(--light-gray));
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.approach-content-offset {
    max-width: 1000px;
    margin: 0 auto;
}

.approach-content-offset h2 {
    font-size: 2.8rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
}

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

.step-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    display: flex;
    gap: 2rem;
    align-items: center;
}

.step-left {
    align-self: flex-start;
    max-width: 70%;
}

.step-right {
    align-self: flex-end;
    max-width: 70%;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 80px;
}

.step-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.step-card p {
    color: #666;
}

.cta-section-diagonal {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem;
    text-align: center;
    transform: skewY(-2deg);
    margin: 4rem 0;
}

.cta-content {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-cta-secondary:hover {
    background-color: var(--light-gray);
    transform: translateY(-2px);
}

.services-hero-offset {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.services-title-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.3rem;
    color: #777;
}

.services-detailed-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

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

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

.card-position-center {
    flex-direction: column;
}

.service-detail-image {
    flex: 1 1 45%;
    background-color: var(--light-gray);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.service-detail-content {
    flex: 1 1 50%;
    padding: 3rem;
}

.service-detail-content-wide {
    width: 100%;
    padding: 3rem;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.service-detail-image-inline {
    flex: 0 0 300px;
    background-color: var(--light-gray);
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image-inline img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.service-text-inline {
    flex: 1;
}

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

.service-detail-content p,
.service-text-inline p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.service-features ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

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

.service-pricing-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 1.5rem 0;
}

.price-label {
    font-size: 1rem;
    color: #777;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.guarantee-section-asymmetric {
    background-color: var(--light-gray);
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.guarantee-content-offset {
    max-width: 1200px;
    margin: 0 auto;
}

.guarantee-content-offset h2 {
    font-size: 2.5rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.guarantee-intro {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.guarantee-blocks {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 8px;
}

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

.guarantee-item p {
    color: #666;
}

.cta-services-bottom {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--dark-gray);
    color: var(--white);
}

.cta-bottom-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-bottom-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-cta-primary:hover {
    background-color: #27ae60;
}

.contact-hero-asymmetric {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.contact-intro-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.contact-lead {
    font-size: 1.3rem;
    color: #666;
}

.contact-info-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-layout-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.contact-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.contact-primary {
    flex: 1 1 calc(45% - 1.5rem);
}

.contact-secondary {
    flex: 1 1 calc(50% - 1.5rem);
}

.contact-tertiary {
    flex: 1 1 100%;
}

.contact-card h2 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 1.5rem;
}

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

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

.detail-item p {
    color: #666;
    margin-bottom: 0.3rem;
}

.email-display {
    font-weight: 600;
    color: var(--text-color);
}

.response-timeline {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem;
    background-color: var(--light-gray);
    border-radius: 6px;
}

.timeline-time {
    font-weight: 600;
    color: var(--primary-color);
}

.timeline-action {
    color: #666;
}

.service-cities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin: 1.5rem 0;
}

.service-cities li {
    padding: 0.5rem 1rem;
    background-color: var(--light-gray);
    border-radius: 5px;
    color: #555;
}

.service-note {
    font-size: 0.95rem;
    color: #777;
    font-style: italic;
}

.contact-visual-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.visual-content-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    background-color: var(--light-gray);
    border-radius: 12px;
    overflow: hidden;
}

.visual-image-side {
    flex: 1 1 50%;
    background-color: var(--border-color);
}

.visual-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.visual-text-side {
    flex: 1 1 45%;
    padding: 3rem;
}

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

.visual-text-side p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.faq-section-offset {
    max-width: 1200px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.faq-title {
    font-size: 2.8rem;
    color: var(--dark-gray);
    text-align: center;
    margin-bottom: 3rem;
}

.faq-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 8px;
}

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

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.contact-cta-bottom {
    text-align: center;
    padding: 4rem 2rem;
    background-color: var(--primary-color);
    color: var(--white);
    margin-top: 5rem;
}

.cta-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-wrapper p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

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

.btn-contact-primary:hover {
    background-color: var(--light-gray);
}

.thanks-hero-asymmetric {
    max-width: 1000px;
    margin: 0 auto;
    padding: 5rem 2rem;
    text-align: center;
}

.thanks-content-offset {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.thanks-icon svg {
    width: 80px;
    height: 80px;
}

.thanks-content-offset h1 {
    font-size: 3rem;
    color: var(--dark-gray);
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
}

.service-confirmation {
    background-color: var(--light-gray);
    padding: 1.5rem 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.service-confirmation p {
    font-size: 1.1rem;
    color: var(--dark-gray);
}

.next-steps-section {
    background-color: var(--light-gray);
    padding: 4rem 2rem;
    margin: 3rem 0;
}

.next-steps-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

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

.timeline-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
}

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

.step-content h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
}

.helpful-info-offset {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.helpful-content-asymmetric {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.info-block-left {
    flex: 1 1 50%;
}

.info-block-left h2 {
    font-size: 2.2rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.info-block-left p {
    color: #666;
    margin-bottom: 1.5rem;
}

.prep-checklist {
    list-style: none;
}

.prep-checklist li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
    border-bottom: 1px solid var(--border-color);
}

.prep-checklist li:before {
    content: "▸";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.info-visual-right {
    flex: 1 1 45%;
    background-color: var(--light-gray);
}

.info-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

.extra-resources-section {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

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

.resource-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    background-color: var(--light-gray);
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.resource-card h3 {
    font-size: 1.5rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
}

.resource-card p {
    color: #666;
    margin-bottom: 1.5rem;
}

.btn-resource {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-resource:hover {
    background-color: #143d6b;
}

.email-check-notice {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    margin-top: 4rem;
}

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

.notice-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.notice-content p {
    font-size: 1.1rem;
    opacity: 0.95;
}

.legal-page {
    background-color: var(--white);
    padding: 3rem 2rem;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 3rem;
}

.legal-section {
    margin-bottom: 3rem;
}

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

.legal-section h3 {
    font-size: 1.4rem;
    color: var(--dark-gray);
    margin-bottom: 0.8rem;
    margin-top: 1.5rem;
}

.legal-section p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: #143d6b;
}

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

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

.cookie-table th {
    background-color: var(--light-gray);
    color: var(--dark-gray);
    font-weight: 600;
}

.cookie-table td {
    color: #555;
}

.btn-cookie-reset {
    padding: 0.8rem 1.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    transition: background-color 0.3s ease;
}

.btn-cookie-reset:hover {
    background-color: #143d6b;
}

@media (max-width: 768px) {
    .hero-offset {
        flex-direction: column;
        padding: 3rem 1.5rem;
    }

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

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

    .hero-image-shifted {
        transform: none;
    }

    .nav-wrapper {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .diagonal-content {
        flex-direction: column;
    }

    .service-grid-asymmetric .service-card {
        flex: 1 1 100%;
    }

    .card-tall {
        flex-direction: column;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .why-choose-overlap {
        flex-direction: column;
    }

    .overlap-image {
        transform: none;
    }

    .story-container {
        flex-direction: column;
    }

    .values-grid-irregular .value-block {
        flex: 1 1 100%;
    }

    .approach-steps-irregular .step-card {
        max-width: 100%;
        align-self: stretch;
    }

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

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

    .service-detail-content-wide {
        flex-direction: column;
    }

    .contact-layout-irregular .contact-card {
        flex: 1 1 100%;
    }

    .visual-content-split {
        flex-direction: column;
    }

    .faq-grid-asymmetric .faq-item {
        flex: 1 1 100%;
    }

    .helpful-content-asymmetric {
        flex-direction: column;
    }

    .resources-grid .resource-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}