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

:root {
    --primary-color: #2C5F7C;
    --secondary-color: #7A9BAE;
    --accent-color: #D4A574;
    --text-dark: #1A2B3C;
    --text-light: #5A6B7C;
    --bg-light: #F8FAFB;
    --bg-white: #FFFFFF;
    --border-color: #E1E8ED;
}

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(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
}

.btn-cookie-accept {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

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

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

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

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

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

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

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

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

.ad-disclosure {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 0.3rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 600px;
    position: relative;
    z-index: 10;
    margin-left: 8%;
}

.hero-asymmetric h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
}

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

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--bg-light);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.intro-block-left {
    flex: 1;
    margin-left: 5%;
}

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

.intro-block-left p {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
}

.intro-visual-right {
    flex: 1;
    margin-right: -10%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.philosophy-stacked {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.philosophy-text-center {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

.philosophy-text-center h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.philosophy-text-center p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.7;
}

.philosophy-cards-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.card-offset {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: 300px;
}

.card-offset.card-1 {
    transform: translateY(-20px);
}

.card-offset.card-2 {
    transform: translateY(20px);
}

.card-offset.card-3 {
    transform: translateY(0);
}

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

.card-offset p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.services-header-offset {
    margin-left: 10%;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.services-header-offset p {
    font-size: 1.2rem;
    color: var(--text-light);
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 2rem);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card:nth-child(odd) {
    margin-top: 2rem;
}

.service-card img {
    width: 100%;
    height: 220px;
    background-color: var(--bg-light);
}

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

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

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

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

.btn-select-service {
    padding: 0.9rem 2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    width: 100%;
}

.btn-select-service:hover {
    background-color: #234A5E;
}

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

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 15%;
}

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

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

.form-intro p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.8rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-family: inherit;
    font-size: 1rem;
    color: var(--text-dark);
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    width: 100%;
}

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

.trust-section {
    padding: 6rem 2rem;
    background-color: var(--bg-white);
}

.trust-content-stacked {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content-stacked h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.testimonials-asymmetric {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    width: calc(33.333% - 1.5rem);
    min-width: 280px;
}

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

.testimonial-offset-2 {
    transform: translateY(15px);
}

.testimonial-offset-3 {
    transform: translateY(0);
}

.testimonial p {
    font-size: 1.05rem;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    color: var(--text-light);
    font-style: normal;
    font-size: 0.95rem;
}

.cta-final-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta-content-overlap {
    max-width: 800px;
    margin: 0 auto;
    margin-right: 15%;
    text-align: center;
    color: var(--bg-white);
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--text-dark);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
}

.cta-secondary:hover {
    background-color: #C99563;
    transform: translateY(-2px);
}

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

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

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

.footer-col-wide {
    flex: 2;
    min-width: 300px;
}

.footer-col h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--accent-color);
}

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

.footer-disclaimer {
    font-size: 0.85rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: var(--secondary-color);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--accent-color);
}

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

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

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

.page-hero-content p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

.story-text-left {
    flex: 1;
}

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

.story-text-left p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-image-right {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.values-offset {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.values-offset h2 {
    font-size: 2.5rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 4rem;
}

.values-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-block {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 8px;
    width: calc(50% - 1rem);
    min-width: 280px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.value-block.value-1 {
    transform: translateX(-20px);
}

.value-block.value-2 {
    transform: translateX(20px);
}

.value-block.value-3 {
    transform: translateX(20px);
}

.value-block.value-4 {
    transform: translateX(-20px);
}

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

.value-block p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-section {
    padding: 6rem 2rem;
}

.approach-content-center {
    max-width: 800px;
    margin: 0 auto 4rem;
    text-align: center;
}

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

.approach-content-center p {
    font-size: 1.15rem;
    color: var(--text-light);
}

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

.step-card {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-offset-1 {
    margin-left: 0;
}

.step-offset-2 {
    margin-left: 5%;
}

.step-offset-3 {
    margin-left: 10%;
}

.step-offset-4 {
    margin-left: 15%;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    flex-shrink: 0;
}

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

.step-card p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.expertise-image-left {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

.expertise-text-right {
    flex: 1;
    margin-right: 5%;
}

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

.expertise-text-right p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.mission-section {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

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

.mission-content-full h2 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.mission-statement {
    font-size: 1.3rem;
    color: var(--text-light);
    line-height: 1.8;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
}

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

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

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

.page-hero-services p {
    font-size: 1.2rem;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.service-detail-asymmetric.service-left .service-detail-image {
    order: 1;
}

.service-detail-asymmetric.service-left .service-detail-content {
    order: 2;
}

.service-detail-asymmetric.service-right .service-detail-image {
    order: 2;
}

.service-detail-asymmetric.service-right .service-detail-content {
    order: 1;
}

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--bg-light);
}

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

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

.service-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-includes {
    margin-bottom: 2rem;
}

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

.service-includes ul {
    list-style: none;
    padding-left: 0;
}

.service-includes ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: var(--text-light);
    line-height: 1.6;
}

.service-includes ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

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

.service-pricing-block .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--accent-color);
}

.service-pricing-block button {
    padding: 0.9rem 2rem;
    flex: 1;
}

.services-cta {
    padding: 5rem 2rem;
    background-color: var(--bg-light);
}

.services-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

.services-cta-content p {
    font-size: 1.15rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.contact-hero {
    padding: 5rem 2rem 3rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

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

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

.contact-info-asymmetric {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-block {
    background-color: var(--bg-light);
    padding: 2.5rem;
    border-radius: 8px;
    width: calc(33.333% - 2rem);
    min-width: 280px;
}

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

.contact-detail {
    color: var(--text-dark);
    line-height: 1.7;
}

.contact-detail p {
    margin-bottom: 0.5rem;
}

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

.email-note,
.hours-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.7rem;
}

.hours-row .day {
    font-weight: 500;
}

.hours-row .time {
    color: var(--text-light);
}

.contact-approach {
    padding: 5rem 2rem;
    background-color: var(--bg-white);
}

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

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

.approach-steps-simple {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.approach-step {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
}

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

.approach-step p {
    color: var(--text-light);
    line-height: 1.6;
}

.contact-faq {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--bg-light);
}

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

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

.faq-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

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

.faq-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.contact-cta {
    padding: 5rem 2rem;
    text-align: center;
}

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

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

.email-highlight {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.thanks-message {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.service-confirmation {
    font-size: 1.1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 3rem;
}

.thanks-next-steps {
    background-color: var(--bg-light);
    padding: 3rem;
    border-radius: 8px;
    margin-bottom: 3rem;
    text-align: left;
}

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

.step-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

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

.step-item p {
    flex: 1;
    color: var(--text-dark);
    line-height: 1.6;
}

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

.btn-return {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
    display: inline-block;
}

.btn-return:hover {
    background-color: #234A5E;
}

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    font-weight: 600;
    border-radius: 6px;
    font-size: 1.05rem;
    display: inline-block;
}

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

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

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

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

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

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

.legal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul li,
.legal-content ol li {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

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

.legal-content a:hover {
    color: #234A5E;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
        padding: 3rem 1.5rem;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
    }

    .hero-image-overlap {
        position: relative;
        right: 0;
        top: 0;
        width: 100%;
        height: 400px;
        margin-top: 2rem;
    }

    .intro-offset,
    .about-story-asymmetric,
    .expertise-asymmetric,
    .service-detail-asymmetric {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-block-left,
    .form-container-asymmetric,
    .page-hero-offset {
        margin-left: 0;
    }

    .intro-visual-right {
        margin-right: 0;
    }

    .service-card {
        width: calc(50% - 1.5rem);
    }

    .value-block {
        width: 100%;
        transform: none;
    }

    .step-offset-1,
    .step-offset-2,
    .step-offset-3,
    .step-offset-4 {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .hero-asymmetric h1 {
        font-size: 2.2rem;
    }

    .nav-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .service-card,
    .testimonial,
    .contact-block {
        width: 100%;
    }

    .philosophy-cards-irregular,
    .testimonials-asymmetric,
    .contact-info-asymmetric {
        flex-direction: column;
    }

    .card-offset,
    .testimonial {
        transform: none;
    }

    .service-pricing-block {
        flex-direction: column;
        gap: 1rem;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .btn-return,
    .btn-secondary {
        width: 100%;
    }
}