* {
    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: #2a2a2a;
    background-color: #fafafa;
}

.navbar-asymmetric {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.brand-mark {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f4f;
    letter-spacing: -0.5px;
}

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

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

.nav-links a:hover,
.nav-links a.active {
    color: #2c5f4f;
}

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

.hero-asymmetric {
    margin-top: 80px;
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #e8e5e1;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    width: 100%;
    position: relative;
    z-index: 2;
}

.hero-text-block {
    max-width: 550px;
    margin-left: 8%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-text-block p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    height: 70%;
    background-size: cover;
    background-position: center;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    z-index: 1;
    background-color: #d4cfca;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5f4f;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c5f4f;
    color: #ffffff;
}

.intro-offset {
    padding: 8rem 2rem;
    background-color: #ffffff;
}

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

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

.intro-left h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    line-height: 1.2;
    font-weight: 700;
}

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

.intro-right-image {
    flex: 1;
    transform: translateY(-40px);
}

.intro-right-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.services-irregular {
    padding: 7rem 2rem;
    background-color: #f5f3f0;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding-left: 15%;
}

.services-header-offset h2 {
    font-size: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    width: calc(50% - 1.5rem);
    min-width: 320px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.card-offset-1 {
    transform: translateX(-5%);
}

.card-offset-2 {
    transform: translateX(5%) translateY(40px);
}

.card-offset-3 {
    transform: translateX(3%) translateY(-30px);
}

.card-offset-4 {
    transform: translateX(-3%);
}

.service-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-info p {
    font-size: 1rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.7;
}

.price-tag {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c5f4f;
}

.cta-inline-offset {
    max-width: 1400px;
    margin: 4rem auto 0;
    text-align: center;
    padding-left: 20%;
}

.consultation-block {
    padding: 8rem 2rem;
    background-color: #2c5f4f;
    position: relative;
}

.consultation-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.consultation-form-wrapper {
    flex: 1.2;
    background-color: #ffffff;
    padding: 3.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateX(-5%);
}

.consultation-form-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.consultation-form-wrapper > p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #555;
}

.consultation-visual {
    flex: 1;
    position: relative;
    transform: translateY(80px);
}

.consultation-visual img {
    width: 100%;
    height: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

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

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

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2a2a2a;
}

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

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: #2c5f4f;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-submit:hover {
    background-color: #234b3d;
    transform: translateY(-2px);
}

.why-choose-offset {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

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

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

.reasons-layout {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.reason-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f8f6;
}

.reason-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
    font-weight: 700;
}

.reason-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

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

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

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

.footer-col h3,
.footer-col h4 {
    color: #ffffff;
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.footer-col p {
    margin-bottom: 0.8rem;
    color: #b0b0b0;
    line-height: 1.7;
}

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

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

.footer-col ul li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #2c5f4f;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0a0a0;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    z-index: 10000;
    box-shadow: 0 -5px 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: 300px;
    margin: 0;
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

.btn-accept {
    background-color: #2c5f4f;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234b3d;
}

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

.btn-reject:hover {
    border-color: #999;
}

.page-hero-offset {
    margin-top: 80px;
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #2c5f4f 0%, #1a3a2f 100%);
    position: relative;
}

.page-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 8%;
}

.page-hero-content h1 {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

.page-hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
}

.about-narrative {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

.narrative-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.narrative-image-left {
    flex: 1;
    transform: translateX(-5%);
}

.narrative-image-left img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.narrative-text-right {
    flex: 1.2;
}

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

.narrative-text-right p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.philosophy-block {
    padding: 6rem 2rem;
    background-color: #f5f3f0;
}

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

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

.philosophy-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.philosophy-card {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.philosophy-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c5f4f;
    font-weight: 700;
}

.philosophy-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.team-overview {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

.team-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.team-visual {
    margin-bottom: 3rem;
}

.team-visual img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.team-details {
    display: flex;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-stat {
    text-align: center;
    min-width: 200px;
}

.team-stat h3 {
    font-size: 3rem;
    color: #2c5f4f;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-stat p {
    font-size: 1.1rem;
    color: #555;
}

.approach-section {
    padding: 6rem 2rem;
    background-color: #f5f3f0;
}

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

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

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

.step-item {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: #ffffff;
    border-left: 4px solid #2c5f4f;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f4f;
    margin-bottom: 1rem;
}

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

.step-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.values-offset {
    padding: 7rem 2rem;
    background-color: #ffffff;
}

.values-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.values-wrapper h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-item {
    padding: 2rem;
    background-color: #f9f8f6;
    border-left: 5px solid #2c5f4f;
    transform: translateX(3%);
}

.value-item:nth-child(even) {
    transform: translateX(-3%);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-intro {
    max-width: 1000px;
    margin: 0 auto 4rem;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

.service-full-card {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: #f9f8f6;
    padding: 3rem;
}

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

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

.service-full-image img {
    width: 100%;
    height: auto;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

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

.service-full-content h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-full-content > p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 1.8rem;
    position: relative;
    color: #555;
    line-height: 1.6;
}

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

.pricing-block {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5f4f;
}

.price-note {
    font-size: 0.9rem;
    color: #666;
}

.pricing-notes {
    padding: 4rem 2rem;
    background-color: #f5f3f0;
}

.notes-content {
    max-width: 900px;
    margin: 0 auto;
}

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

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

.notes-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.notes-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.cta-services {
    padding: 5rem 2rem;
    background-color: #2c5f4f;
    text-align: center;
}

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

.cta-services-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-services-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.contact-main {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.contact-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info-section {
    flex: 1;
}

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

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

.contact-detail-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
    font-weight: 700;
}

.contact-detail-block p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.contact-note {
    font-size: 0.9rem;
    color: #777;
    font-style: italic;
}

.contact-visual-block {
    flex: 1;
}

.contact-visual-block img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.contact-process {
    padding: 6rem 2rem;
    background-color: #f5f3f0;
}

.process-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.process-step {
    flex: 1;
    min-width: 240px;
    padding: 2rem;
    background-color: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
}

.step-marker {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #2c5f4f;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

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

.process-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.faq-section {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.faq-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

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

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

.faq-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #f9f8f6;
    border-left: 4px solid #2c5f4f;
}

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

.faq-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.areas-served {
    padding: 5rem 2rem;
    background-color: #f5f3f0;
}

.areas-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

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

.areas-content > p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.areas-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.areas-list span {
    padding: 0.6rem 1.5rem;
    background-color: #ffffff;
    border-radius: 4px;
    color: #2a2a2a;
    font-size: 0.95rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.thanks-section {
    margin-top: 80px;
    padding: 6rem 2rem;
    background-color: #ffffff;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.next-steps {
    margin-bottom: 3rem;
    text-align: left;
}

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

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

.thanks-step {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: #f9f8f6;
    border-left: 4px solid #2c5f4f;
}

.thanks-step h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c5f4f;
    font-weight: 700;
}

.thanks-step p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.7;
}

.thanks-service-info {
    padding: 1.5rem;
    background-color: #f0f8f5;
    border-radius: 4px;
    margin-bottom: 2rem;
    font-size: 1.05rem;
    color: #2c5f4f;
}

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

.thanks-visual {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.meanwhile-section {
    padding: 4rem 2rem;
    background-color: #f5f3f0;
}

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

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

.meanwhile-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.meanwhile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.meanwhile-links a {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.meanwhile-links a:hover {
    color: #234b3d;
    text-decoration: underline;
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

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

.legal-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2.5rem;
    font-style: italic;
}

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

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

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

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

.legal-content ul li {
    margin-bottom: 0.8rem;
    color: #555;
    line-height: 1.7;
}

.legal-content a {
    color: #2c5f4f;
    text-decoration: none;
    font-weight: 600;
}

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

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

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

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

    .intro-wrapper,
    .narrative-layout,
    .consultation-content,
    .contact-layout,
    .service-full-card {
        flex-direction: column;
    }

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

    .intro-right-image,
    .narrative-image-left,
    .consultation-form-wrapper {
        transform: none;
    }

    .consultation-visual {
        transform: none;
    }

    .service-card {
        width: 100%;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4 {
        transform: none;
    }

    .services-header-offset,
    .cta-inline-offset {
        padding-left: 0;
    }

    .value-item {
        transform: none !important;
    }

    .nav-links {
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .page-hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links a {
        font-size: 0.85rem;
    }

    .ad-disclosure {
        font-size: 0.7rem;
    }

    .reasons-layout,
    .philosophy-grid,
    .approach-steps,
    .team-details,
    .process-steps,
    .faq-grid,
    .steps-list {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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