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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #4a8ba6;
    --accent-color: #d97941;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #7a7a7a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.8rem 4rem 1.8rem 2.5rem;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.nav-left {
    margin-left: 2rem;
}

.nav-left .logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin-right: 1rem;
}

.ad-label {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.8rem;
    background-color: var(--bg-light);
    border-radius: 3px;
}

.nav-right a {
    color: var(--text-medium);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-offset {
    display: flex;
    align-items: center;
    min-height: 85vh;
    padding: 4rem 2rem 4rem 6rem;
    background-color: var(--bg-light);
    position: relative;
}

.hero-content-left {
    flex: 1;
    max-width: 550px;
    padding-right: 3rem;
    margin-left: 3rem;
    position: relative;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.8rem;
    font-weight: 800;
}

.hero-content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

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

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

.hero-image-right {
    flex: 1;
    position: relative;
    margin-left: -2rem;
    margin-top: 2rem;
    background-color: var(--secondary-color);
}

.hero-image-right img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 600px;
}

.intro-asymmetric {
    display: flex;
    align-items: center;
    padding: 6rem 3rem 6rem 8rem;
    background-color: var(--bg-white);
    gap: 4rem;
    position: relative;
}

.intro-block-offset {
    flex: 1;
    max-width: 520px;
    margin-right: 2rem;
}

.intro-block-offset h2 {
    font-size: 2.4rem;
    line-height: 1.3;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.intro-block-offset p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.intro-image-float {
    flex: 1;
    position: relative;
    margin-top: -3rem;
    margin-right: 4rem;
    background-color: var(--bg-light);
}

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

.story-section {
    padding: 7rem 2rem 8rem 2rem;
    background-color: var(--bg-light);
}

.story-content-irregular {
    max-width: 1400px;
    margin: 0 auto;
}

.story-content-irregular h2 {
    font-size: 2.6rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 700;
    margin-left: 3rem;
}

.story-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
    align-items: flex-start;
}

.story-card {
    background-color: var(--bg-white);
    padding: 0;
    width: 380px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.story-card.left-high {
    margin-top: -2rem;
    margin-left: 2rem;
}

.story-card.right-low {
    margin-top: 3rem;
    margin-right: 1rem;
}

.story-card.center-mid {
    margin-top: 0.5rem;
}

.story-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    background-color: var(--secondary-color);
}

.story-card h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin: 1.5rem 1.8rem 1rem 1.8rem;
    font-weight: 600;
}

.story-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin: 0 1.8rem 1.8rem 1.8rem;
}

.services-asymmetric {
    padding: 7rem 3rem 8rem 3rem;
    background-color: var(--bg-white);
}

.services-header-offset {
    max-width: 620px;
    margin: 0 0 5rem 5rem;
}

.services-header-offset h2 {
    font-size: 2.7rem;
    color: var(--text-dark);
    margin-bottom: 1.3rem;
    font-weight: 700;
}

.services-header-offset p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.services-layout-irregular {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    justify-content: center;
    align-items: flex-start;
}

.service-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    width: 340px;
    border-left: 4px solid var(--secondary-color);
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.service-card:hover {
    border-left-color: var(--accent-color);
    transform: translateX(5px);
}

.service-card.floating-left {
    margin-left: 3rem;
    margin-top: -1rem;
}

.service-card.floating-right {
    margin-right: 2rem;
    margin-top: 2rem;
}

.service-card.floating-center {
    margin-top: 0.5rem;
}

.service-card.floating-bottom-left {
    margin-left: 4rem;
    margin-top: 1.5rem;
}

.service-card.floating-bottom-right {
    margin-right: 3rem;
    margin-top: -0.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.service-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.service-select-btn {
    display: inline-block;
    padding: 0.85rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-select-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

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

.form-container-irregular {
    max-width: 650px;
    margin: 0 0 0 4rem;
}

.form-container-irregular h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container-irregular > p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

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

.form-field label {
    font-size: 0.95rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.9rem 1rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    background-color: var(--bg-white);
    color: var(--text-dark);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.submit-btn {
    padding: 1.1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    border: none;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    align-self: flex-start;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.trust-section-asymmetric {
    display: flex;
    align-items: flex-start;
    padding: 7rem 2rem 7rem 5rem;
    background-color: var(--bg-white);
    gap: 4rem;
}

.trust-content-offset {
    flex: 1;
    max-width: 700px;
    margin-right: 3rem;
}

.trust-content-offset h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

.trust-blocks-irregular {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-block h3 {
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.trust-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.trust-image-float {
    flex: 1;
    position: relative;
    margin-top: 4rem;
    margin-right: 2rem;
    background-color: var(--bg-light);
}

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

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

.disclaimer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

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

.footer-content-irregular {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    flex-wrap: wrap;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
    max-width: 300px;
}

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

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

.footer-section ul li a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.footer-bottom p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.7);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26,26,26,0.95);
    color: var(--bg-white);
    padding: 1.5rem 2rem;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.cookie-content {
    max-width: 1000px;
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 3px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cookie-btn.accept {
    background-color: var(--accent-color);
    color: var(--bg-white);
}

.cookie-btn.accept:hover {
    background-color: #c26835;
    transform: translateY(-1px);
}

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

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

.about-hero-offset {
    padding: 6rem 3rem 4rem 7rem;
    background-color: var(--bg-light);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 1.3rem;
    color: var(--text-medium);
}

.about-story-asymmetric {
    display: flex;
    align-items: center;
    padding: 6rem 2rem 6rem 5rem;
    background-color: var(--bg-white);
    gap: 4rem;
}

.about-text-block-left {
    flex: 1;
    max-width: 600px;
    margin-right: 2rem;
}

.about-text-block-left h2 {
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.about-text-block-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.about-image-right {
    flex: 1;
    margin-right: 3rem;
    background-color: var(--bg-light);
}

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

.about-philosophy-irregular {
    display: flex;
    align-items: flex-start;
    padding: 6rem 3rem 6rem 8rem;
    background-color: var(--bg-light);
    gap: 4rem;
}

.philosophy-content-offset {
    flex: 1;
    max-width: 650px;
}

.philosophy-content-offset h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.philosophy-content-offset p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.3rem;
}

.philosophy-image-float {
    flex: 1;
    margin-top: -2rem;
    margin-right: 4rem;
    background-color: var(--secondary-color);
}

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

.team-section-asymmetric {
    padding: 7rem 3rem 7rem 3rem;
    background-color: var(--bg-white);
}

.team-header {
    margin: 0 0 4rem 4rem;
}

.team-header h2 {
    font-size: 2.6rem;
    color: var(--text-dark);
    font-weight: 700;
}

.team-grid-irregular {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.team-member-card {
    background-color: var(--bg-light);
    padding: 2.5rem 2rem;
    width: 340px;
}

.team-member-card.offset-top {
    margin-top: -1.5rem;
    margin-left: 2rem;
}

.team-member-card.offset-bottom {
    margin-top: 2.5rem;
}

.team-member-card.offset-center {
    margin-top: 0.5rem;
    margin-right: 1.5rem;
}

.team-member-card h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.team-role {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member-card p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.values-section-offset {
    padding: 6rem 3rem 7rem 6rem;
    background-color: var(--bg-light);
}

.values-section-offset h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 4rem;
    font-weight: 700;
    margin-left: 2rem;
}

.values-layout-irregular {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-left: 3rem;
}

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

.value-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    max-width: 700px;
}

.cta-section-asymmetric {
    padding: 7rem 3rem 7rem 8rem;
    background-color: var(--bg-white);
}

.cta-content-offset {
    max-width: 600px;
    margin-left: 3rem;
}

.cta-content-offset h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
}

.cta-button-large {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button-large:hover {
    background-color: #c26835;
    transform: translateY(-2px);
}

.services-hero-offset {
    padding: 6rem 3rem 4rem 7rem;
    background-color: var(--bg-light);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.services-hero-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.services-hero-content p {
    font-size: 1.3rem;
    color: var(--text-medium);
}

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

.service-detail-card {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin-bottom: 5rem;
    background-color: var(--bg-white);
    padding: 3rem;
}

.service-detail-card.left-offset {
    margin-left: 2rem;
    background-color: var(--bg-light);
}

.service-detail-card.right-offset {
    margin-right: 2rem;
    margin-left: 4rem;
}

.service-detail-card.center-offset {
    margin-left: 3rem;
    margin-right: 3rem;
    background-color: var(--bg-light);
}

.service-detail-image {
    flex: 1;
    min-width: 400px;
    background-color: var(--secondary-color);
}

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

.service-detail-content {
    flex: 1;
    max-width: 600px;
}

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

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

.service-includes h3,
.service-for-whom h3,
.service-available-topics h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-includes ul li {
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-medium);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
}

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

.service-for-whom p,
.service-available-topics p {
    font-size: 0.98rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

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

.service-price-large {
    font-size: 2.2rem;
    color: var(--primary-color);
    font-weight: 700;
}

.service-duration {
    font-size: 1rem;
    color: var(--text-light);
}

.service-cta-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--accent-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.service-cta-btn:hover {
    background-color: #c26835;
    transform: translateY(-2px);
}

.comparison-section-asymmetric {
    padding: 5rem 3rem 6rem 6rem;
    background-color: var(--bg-light);
}

.comparison-content {
    max-width: 800px;
    margin-left: 3rem;
}

.comparison-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.comparison-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.comparison-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.comparison-content a:hover {
    color: var(--accent-color);
}

.contact-hero-offset {
    padding: 6rem 3rem 4rem 7rem;
    background-color: var(--bg-light);
    min-height: 40vh;
    display: flex;
    align-items: center;
}

.contact-hero-content h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 1.3rem;
    color: var(--text-medium);
}

.contact-content-asymmetric {
    display: flex;
    gap: 5rem;
    padding: 6rem 3rem 6rem 6rem;
    background-color: var(--bg-white);
    align-items: flex-start;
}

.contact-info-block {
    flex: 1;
    max-width: 500px;
}

.contact-info-block h2 {
    font-size: 2.3rem;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.6rem;
    font-weight: 600;
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-note {
    font-size: 0.92rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.8rem;
}

.contact-map-placeholder {
    flex: 1;
    background-color: var(--bg-light);
    padding: 3rem;
    margin-top: 2rem;
}

.map-info p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1.2rem;
}

.contact-faq-offset {
    padding: 6rem 3rem 6rem 7rem;
    background-color: var(--bg-light);
}

.faq-content {
    max-width: 900px;
    margin-left: 3rem;
}

.faq-content h2 {
    font-size: 2.4rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-item {
    margin-bottom: 2.5rem;
}

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

.faq-item p {
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-cta-asymmetric {
    padding: 5rem 3rem 5rem 8rem;
    background-color: var(--bg-white);
}

.contact-cta-content {
    max-width: 700px;
    margin-left: 2rem;
}

.contact-cta-content h2 {
    font-size: 2.2rem;
    color: var(--text-dark);
    margin-bottom: 1.2rem;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
}

.contact-cta-content a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.contact-cta-content a:hover {
    color: var(--accent-color);
}

.thanks-section-asymmetric {
    display: flex;
    align-items: center;
    min-height: 70vh;
    padding: 6rem 3rem 6rem 7rem;
    background-color: var(--bg-light);
    gap: 4rem;
}

.thanks-content-offset {
    flex: 1;
    max-width: 650px;
}

.thanks-content-offset h1 {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.thanks-main-text {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

.thanks-info-block {
    background-color: var(--bg-white);
    padding: 2rem;
    margin-bottom: 2.5rem;
}

.thanks-info-block h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.8rem;
}

#selected-service-info {
    font-weight: 600;
    color: var(--primary-color);
}

.thanks-next-steps h3 {
    font-size: 1.4rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 600;
}

.thanks-next-steps ul {
    list-style: none;
    margin-bottom: 2.5rem;
}

.thanks-next-steps ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.6rem;
}

.thanks-next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

.thanks-next-steps a {
    color: var(--primary-color);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.thanks-next-steps a:hover {
    color: var(--accent-color);
}

.btn-back-home {
    display: inline-block;
    padding: 1rem 2.2rem;
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-back-home:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.thanks-image-float {
    flex: 1;
    margin-top: -3rem;
    margin-right: 3rem;
    background-color: var(--secondary-color);
}

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

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

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

.legal-content h1 {
    font-size: 2.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 800;
}

.legal-intro {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 3rem;
}

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

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

.legal-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 1rem;
}

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: 0.6rem;
}

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

.legal-content a:hover {
    color: var(--accent-color);
}

.legal-footer {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    font-style: italic;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .about-story-asymmetric,
    .about-philosophy-irregular,
    .trust-section-asymmetric,
    .contact-content-asymmetric,
    .thanks-section-asymmetric {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-block-offset,
    .about-text-block-left,
    .philosophy-content-offset,
    .trust-content-offset,
    .contact-info-block,
    .thanks-content-offset {
        max-width: 100%;
        margin: 0;
        padding-right: 0;
    }

    .hero-image-right,
    .intro-image-float,
    .about-image-right,
    .philosophy-image-float,
    .trust-image-float,
    .thanks-image-float {
        margin: 2rem 0 0 0;
        width: 100%;
    }

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

    .service-detail-image {
        min-width: 100%;
        width: 100%;
    }

    .services-layout-irregular,
    .story-grid-offset,
    .team-grid-irregular {
        justify-content: center;
    }

    .service-card,
    .story-card,
    .team-member-card {
        margin: 0;
    }
}

@media (max-width: 768px) {
    .nav-asymmetric {
        flex-direction: column;
        padding: 1.5rem;
        gap: 1rem;
    }

    .nav-left,
    .nav-right {
        margin: 0;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-offset,
    .services-asymmetric,
    .form-section-offset,
    .about-hero-offset,
    .services-hero-offset,
    .contact-hero-offset,
    .thanks-section-asymmetric,
    .legal-page-section {
        padding: 3rem 1.5rem;
    }

    .hero-content-left h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .thanks-content-offset h1 {
        font-size: 2.2rem;
    }

    .services-header-offset,
    .form-container-irregular,
    .comparison-content,
    .faq-content,
    .contact-cta-content {
        margin: 0;
    }

    .service-card,
    .story-card,
    .team-member-card {
        width: 100%;
        max-width: 400px;
    }

    .service-detail-card {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-content-left h1 {
        font-size: 1.8rem;
    }

    .service-price {
        font-size: 1.5rem;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}