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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e8e8e8;
    z-index: 1000;
}

.nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-bottom: 1px solid #f0f0f0;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    background: #f5f5f5;
    padding: 0.4rem 0.9rem;
    border-radius: 4px;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    padding: 0.9rem 5%;
    justify-content: flex-end;
}

.nav-links a {
    color: #4a4a4a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 3rem 5%;
}

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

.hero-text-block {
    flex: 1;
    padding-left: 3rem;
}

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

.hero-subtitle {
    font-size: 1.25rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-visual {
    flex: 1.2;
    position: relative;
    transform: translateY(-2rem);
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-primary {
    display: inline-block;
    background: #0066cc;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 102, 204, 0.3);
}

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

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

.intro-offset {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.intro-narrow {
    flex: 1;
    padding-right: 2rem;
}

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

.intro-narrow p {
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.intro-wide-image {
    flex: 1.5;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(3rem);
}

.intro-wide-image img {
    width: 100%;
    height: auto;
    display: block;
}

.problem-amplification {
    background: #1a1a1a;
    color: #ffffff;
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.problem-left {
    flex: 1.5;
    padding-right: 3rem;
}

.problem-left h3 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.problem-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #d4d4d4;
}

.problem-visual-right {
    flex: 1;
}

.insight-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 3rem 2.5rem;
    border-radius: 8px;
    text-align: center;
}

.insight-number {
    font-size: 4rem;
    font-weight: 800;
    color: #0066cc;
    margin-bottom: 1rem;
}

.insight-label {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #e0e0e0;
}

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

.services-header-offset {
    max-width: 700px;
    margin-bottom: 4rem;
    padding-left: 2rem;
}

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

.services-header-offset p {
    font-size: 1.15rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 3rem;
    transition: all 0.3s;
    background-color: #fafafa;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.service-card img {
    width: 100%;
    height: 280px;
    display: block;
}

.service-card h3 {
    font-size: 1.6rem;
    margin: 1.5rem 2rem 1rem 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    margin: 0 2rem 1rem 2rem;
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

.service-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    margin: 1.5rem 2rem;
}

.btn-select {
    width: calc(100% - 4rem);
    margin: 0 2rem 2rem 2rem;
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.card-offset-1 {
    margin-left: 0;
    max-width: 520px;
}

.card-offset-2 {
    margin-left: auto;
    margin-right: 8%;
    max-width: 520px;
}

.card-offset-3 {
    margin-left: 15%;
    max-width: 520px;
}

.card-offset-4 {
    margin-left: auto;
    margin-right: 5%;
    max-width: 520px;
}

.trust-building {
    background: #f8f9fa;
    padding: 6rem 5%;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.trust-content-left {
    flex: 1;
    padding-right: 2rem;
}

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

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

.trust-image-right {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.trust-image-right img {
    width: 100%;
    height: auto;
    display: block;
}

.testimonials-scattered {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-scattered h2 {
    font-size: 2.6rem;
    margin-bottom: 4rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.testimonial-block {
    background: #ffffff;
    border-left: 4px solid #0066cc;
    padding: 2.5rem 3rem;
    margin-bottom: 2.5rem;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c2c2c;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 1rem;
    color: #5a5a5a;
    font-weight: 600;
}

.block-1 {
    max-width: 700px;
    margin-left: 0;
}

.block-2 {
    max-width: 700px;
    margin-left: auto;
    margin-right: 10%;
}

.block-3 {
    max-width: 700px;
    margin-left: 15%;
}

.cta-section-offset {
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    padding: 5rem 5%;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: #e0e0e0;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: #5a5a5a;
    transition: color 0.2s;
}

.modal-close:hover {
    color: #1a1a1a;
}

.modal-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0066cc;
}

.selected-service-display {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 6px;
    font-weight: 600;
    color: #0066cc;
    font-size: 1.1rem;
}

.btn-submit {
    width: 100%;
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1.1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #0052a3;
}

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

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

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 1rem;
    line-height: 1.7;
}

.footer-links {
    flex: 2;
    display: flex;
    gap: 4rem;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #b0b0b0;
    text-decoration: none;
    margin-bottom: 0.7rem;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem auto;
    padding: 2rem 0;
    border-top: 1px solid #333;
    border-bottom: 1px solid #333;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    text-align: center;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 1.5rem;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 2px solid #0066cc;
    padding: 1.5rem 5%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1500;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    color: #2c2c2c;
    font-size: 0.95rem;
}

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

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

.btn-accept {
    background: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background: #0052a3;
}

.btn-reject {
    background: #e8e8e8;
    color: #2c2c2c;
}

.btn-reject:hover {
    background: #d0d0d0;
}

.page-header-offset {
    padding: 5rem 5% 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.page-header-offset h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 800;
}

.page-subtitle {
    font-size: 1.3rem;
    color: #5a5a5a;
    line-height: 1.6;
    max-width: 800px;
}

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

.story-image-left {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.story-image-left img {
    width: 100%;
    height: auto;
    display: block;
}

.story-content-right {
    flex: 1;
    padding-left: 2rem;
}

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

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

.philosophy-section {
    background: #f8f9fa;
    padding: 5rem 5%;
}

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

.philosophy-narrow h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-narrow p {
    font-size: 1.2rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.approach-blocks {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

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

.approach-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 2.5rem;
    border-radius: 8px;
    transition: all 0.3s;
    background-color: #fafafa;
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

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

.approach-card p {
    font-size: 1.05rem;
    color: #5a5a5a;
    line-height: 1.7;
}

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

.values-left {
    flex: 1;
    padding-right: 2rem;
}

.values-left h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
    font-weight: 700;
}

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

.values-list li {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.values-image-right {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.values-image-right img {
    width: 100%;
    height: auto;
    display: block;
}

.team-section {
    background: #f8f9fa;
    padding: 5rem 5%;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
    font-size: 1.1rem;
    color: #4a4a4a;
    line-height: 1.8;
}

.team-image-center {
    max-width: 1000px;
    margin: 0 auto;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.team-image-center img {
    width: 100%;
    height: auto;
    display: block;
}

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

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

.cta-about .cta-content p {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.services-intro {
    padding: 3rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-content-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    color: #4a4a4a;
    line-height: 1.8;
}

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

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

.service-layout-1 .service-visual {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.service-layout-1 .service-info {
    flex: 1;
    padding-left: 1rem;
}

.service-layout-2 .service-visual {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.service-layout-2 .service-info {
    flex: 1;
    padding-right: 1rem;
}

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

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

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

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

.service-features li {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 0.8rem;
    padding-left: 1.8rem;
    position: relative;
}

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

.service-price {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: #0066cc;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: #0052a3;
    transform: translateY(-2px);
}

.services-cta {
    background: #f8f9fa;
    padding: 5rem 5%;
    text-align: center;
}

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

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

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

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

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

.contact-item p {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-message {
    padding: 4rem 5%;
    background: #f8f9fa;
}

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

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

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

.services-overview-contact {
    padding: 5rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.services-overview-contact h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    color: #1a1a1a;
    font-weight: 700;
    text-align: center;
}

.services-quick-links {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.service-quick-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #e8e8e8;
    padding: 2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
    background-color: #fafafa;
}

.service-quick-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.service-quick-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-quick-card p {
    font-size: 1rem;
    color: #5a5a5a;
    line-height: 1.6;
}

.link-all-services {
    display: block;
    text-align: center;
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.link-all-services:hover {
    color: #0052a3;
}

.thanks-page {
    padding: 6rem 5%;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    min-height: 60vh;
}

.thanks-content {
    flex: 1.5;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.thanks-message {
    font-size: 1.2rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.service-confirmation {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.selected-service-confirm {
    font-size: 1.1rem;
    color: #2c2c2c;
}

.selected-service-confirm strong {
    color: #0066cc;
}

.thanks-next-steps {
    font-size: 1.05rem;
    color: #5a5a5a;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
}

.btn-home,
.btn-services {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home {
    background: #0066cc;
    color: #ffffff;
}

.btn-home:hover {
    background: #0052a3;
}

.btn-services {
    background: transparent;
    color: #0066cc;
    border: 2px solid #0066cc;
}

.btn-services:hover {
    background: #0066cc;
    color: #ffffff;
}

.thanks-visual {
    flex: 1;
    background-color: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    display: block;
}

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

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-intro {
    font-size: 1.15rem;
    color: #5a5a5a;
    margin-bottom: 3rem;
    line-height: 1.8;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c2c2c;
    font-weight: 600;
}

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

.legal-page ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-page li {
    font-size: 1.05rem;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 0.7rem;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e8e8e8;
    font-size: 0.95rem;
    color: #888;
    font-style: italic;
}

@media (max-width: 768px) {
    .hero-offset,
    .intro-offset,
    .problem-amplification,
    .trust-building,
    .about-story,
    .values-asymmetric,
    .service-detail,
    .contact-layout,
    .thanks-page {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .approach-grid,
    .services-quick-links,
    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }

    .card-offset-1,
    .card-offset-2,
    .card-offset-3,
    .card-offset-4,
    .block-1,
    .block-2,
    .block-3 {
        margin-left: 0;
        margin-right: 0;
        max-width: 100%;
    }
}