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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.header-asymmetric {
    background: #ffffff;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #e1e8ed;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-block .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.35rem 0.75rem;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e1e8ed;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-list a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-list a:hover {
    color: #4A90E2;
}

.hero-asymmetric {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f8f9fa;
}

.hero-visual-layer {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    overflow: hidden;
}

.hero-visual-layer img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9);
}

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

.hero-title-large {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: #2c3e50;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.hero-intro {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #555;
    max-width: 520px;
    margin-bottom: 2rem;
}

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

.cta-primary:hover {
    background: #357ABD;
}

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

.cta-secondary:hover {
    background: #4A90E2;
    color: #ffffff;
}

.intro-overlap {
    position: relative;
    margin-top: -80px;
    z-index: 3;
    padding: 0 2rem;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.intro-text-block {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.intro-text-block h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.intro-stat-card {
    background: #4A90E2;
    color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    text-align: center;
    min-width: 220px;
    transform: translateY(40px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

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

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

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

.story-image-left {
    flex: 0 0 45%;
    background: #f0f0f0;
}

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

.story-content-right {
    flex: 1;
}

.story-content-right h3 {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-content-right p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #555;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.services-header-offset h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.services-intro {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

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

.card-elevated {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.service-card:nth-child(even) {
    transform: translateY(20px);
}

.service-card:nth-child(even):hover {
    transform: translateY(15px);
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e8e8e8;
}

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

.service-content {
    padding: 2rem;
}

.service-content h3,
.service-content h2 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

.service-content p {
    margin-bottom: 1rem;
    color: #555;
}

.service-list {
    margin: 1rem 0 1.5rem 1.5rem;
    color: #555;
}

.service-list li {
    margin-bottom: 0.5rem;
}

.service-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4A90E2;
    margin: 1.5rem 0 1rem;
}

.btn-service {
    width: 100%;
    padding: 0.9rem;
    background: #4A90E2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-service:hover {
    background: #357ABD;
}

.form-section-offset {
    padding: 6rem 2rem;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 10%;
}

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

.form-intro-block h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.booking-form {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 8px;
}

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

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

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

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

.form-group input[readonly] {
    background: #e9ecef;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: #4A90E2;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #357ABD;
}

.testimonials-irregular {
    padding: 6rem 2rem;
    background: #2c3e50;
    color: #ffffff;
}

.testimonials-container {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-heading {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.testimonial-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    background: rgba(255,255,255,0.08);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial-card:nth-child(2) {
    transform: translateY(30px);
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

.approach-visual {
    flex: 0 0 50%;
    background: #f0f0f0;
}

.approach-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

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

.link-inline {
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s;
}

.link-inline:hover {
    border-bottom-color: #4A90E2;
}

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

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

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

.footer-block h4,
.footer-block h5 {
    margin-bottom: 1rem;
    font-size: 1.15rem;
}

.footer-block p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #b0b8c1;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #b0b8c1;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a252f;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.btn-cookie,
.btn-cookie-alt {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-cookie {
    background: #4A90E2;
    color: #ffffff;
}

.btn-cookie:hover {
    background: #357ABD;
}

.btn-cookie-alt {
    background: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero-offset {
    padding: 6rem 2rem 4rem;
    background: #f8f9fa;
}

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

.page-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero-lead {
    font-size: 1.25rem;
    color: #555;
    max-width: 700px;
}

.about-story {
    padding: 6rem 2rem;
    background: #ffffff;
}

.story-container-irregular {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.story-text-main {
    max-width: 700px;
    margin-bottom: 3rem;
}

.story-text-main h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-text-main p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.story-image-float {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    background: #f0f0f0;
}

.story-image-float img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.values-section-staggered {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
}

.values-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.value-block {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.value-block:nth-child(odd) {
    transform: translateY(-15px);
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.value-block p {
    color: #555;
    line-height: 1.7;
}

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

.team-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
}

.team-intro {
    max-width: 600px;
    margin-bottom: 3rem;
}

.team-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.team-visual {
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 8px;
    background: #e8e8e8;
}

.team-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

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

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-item:nth-child(even) {
    padding-left: 5rem;
}

.timeline-year {
    font-size: 1.75rem;
    font-weight: 700;
    color: #4A90E2;
    min-width: 100px;
}

.timeline-content h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.6;
    opacity: 0.9;
}

.philosophy-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.philosophy-content-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.philosophy-text {
    flex: 1;
}

.philosophy-text h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.philosophy-text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: #555;
    line-height: 1.7;
}

.philosophy-highlight {
    flex: 0 0 400px;
    background: #4A90E2;
    color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    transform: translateY(40px);
}

.philosophy-highlight blockquote {
    font-size: 1.25rem;
    line-height: 1.6;
    font-style: italic;
}

.cta-section-offset {
    padding: 6rem 2rem;
    background: #ffffff;
}

.cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 3rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.cta-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.cta-container p {
    font-size: 1.15rem;
    color: #555;
    margin-bottom: 2rem;
}

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

.services-detailed {
    padding: 3rem 2rem;
}

.process-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.process-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.process-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.process-step:nth-child(even) {
    margin-left: 4rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #4A90E2;
    min-width: 70px;
}

.process-step h3 {
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

.contact-section-split {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-container-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

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

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.contact-item h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    color: #555;
    line-height: 1.7;
}

.contact-note {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 6px;
    margin-top: 2rem;
}

.contact-note p {
    color: #555;
    margin: 0;
}

.contact-visual {
    flex: 1;
    background: #e8e8e8;
}

.contact-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

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

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.faq-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 300px;
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.faq-item:nth-child(odd) {
    transform: translateY(-10px);
}

.faq-item h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

.next-steps-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.next-steps-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.step-card {
    flex: 1;
    min-width: 300px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.step-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.step-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-step {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    background: #4A90E2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-step:hover {
    background: #357ABD;
}

.thanks-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
    min-height: 70vh;
}

.thanks-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.thanks-content-center {
    flex: 1;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.thanks-content-center h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-lead {
    font-size: 1.15rem;
    text-align: center;
    color: #555;
    margin-bottom: 3rem;
}

.thanks-details {
    margin-bottom: 3rem;
}

.selected-service-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 6px;
    text-align: center;
}

.selected-service-info h3 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #555;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.step-num {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: #4A90E2;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.step-text p {
    color: #555;
    line-height: 1.6;
}

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

.btn-primary {
    padding: 1rem 2rem;
    background: #4A90E2;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.2s;
}

.btn-primary:hover {
    background: #357ABD;
}

.btn-secondary {
    padding: 1rem 2rem;
    background: transparent;
    color: #4A90E2;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #4A90E2;
    border-radius: 6px;
    transition: all 0.2s;
}

.btn-secondary:hover {
    background: #4A90E2;
    color: #ffffff;
}

.thanks-sidebar {
    flex: 0 0 350px;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.sidebar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.sidebar-card p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-page {
    padding: 4rem 2rem 6rem;
    background: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.75rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-updated {
    font-size: 0.95rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.35rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
}

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

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

.legal-content ul li {
    margin-bottom: 0.6rem;
    line-height: 1.6;
}

.legal-content a {
    color: #4A90E2;
    text-decoration: none;
}

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

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

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e1e8ed;
}

.cookie-table th {
    font-weight: 600;
    color: #2c3e50;
}

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

@media (max-width: 1024px) {
    .hero-visual-layer {
        width: 100%;
        opacity: 0.3;
    }

    .hero-title-large {
        font-size: 2.5rem;
    }

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

    .intro-stat-card {
        transform: translateY(0);
    }

    .story-grid-irregular {
        flex-direction: column;
    }

    .story-image-left {
        flex: auto;
    }

    .service-card {
        flex: 1 1 calc(50% - 2rem);
    }

    .approach-split {
        flex-direction: column;
    }

    .approach-visual {
        flex: auto;
    }

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

    .philosophy-highlight {
        flex: auto;
        transform: translateY(0);
    }

    .contact-container-asymmetric {
        flex-direction: column;
    }

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

    .thanks-sidebar {
        flex: auto;
    }

    .story-image-float {
        position: static;
        width: 100%;
        transform: none;
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-offset {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

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

    .hero-title-large {
        font-size: 2rem;
    }

    .hero-intro {
        font-size: 1.1rem;
    }

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

    .service-card:nth-child(even) {
        transform: translateY(0);
    }

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

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

    .values-grid-offset {
        flex-direction: column;
    }

    .value-block:nth-child(odd) {
        transform: translateY(0);
    }

    .testimonials-grid-offset {
        flex-direction: column;
    }

    .testimonial-card:nth-child(2) {
        transform: translateY(0);
    }

    .timeline-item:nth-child(even) {
        padding-left: 0;
    }

    .faq-grid-offset {
        flex-direction: column;
    }

    .faq-item:nth-child(odd) {
        transform: translateY(0);
    }

    .process-step:nth-child(even) {
        margin-left: 0;
    }

    .steps-cards {
        flex-direction: column;
    }
}