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

:root {
    --color-primary: #1a1a1a;
    --color-secondary: #2a2a2a;
    --color-accent: #c9a961;
    --color-text: #333;
    --color-text-light: #666;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f5f5;
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

body {
    font-family: var(--font-primary);
    color: var(--color-text);
    line-height: 1.6;
    background: var(--color-bg);
}

.ad-disclosure {
    background: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 6%;
    background: var(--color-primary);
    position: sticky;
    top: 41px;
    z-index: 999;
}

.nav-brand {
    font-size: 28px;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--color-accent);
}

.hero-offset {
    display: flex;
    min-height: 85vh;
    position: relative;
}

.hero-content-left {
    width: 45%;
    padding: 120px 6% 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 28px;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    font-weight: 800;
    color: var(--color-primary);
    letter-spacing: -1.5px;
}

.hero-content-left p {
    font-size: 20px;
    color: var(--color-text-light);
    max-width: 480px;
}

.hero-image-right {
    width: 55%;
    position: relative;
    overflow: hidden;
}

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

.cta-hero {
    display: inline-block;
    padding: 18px 42px;
    background: var(--color-primary);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
}

.cta-hero:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.intro-diagonal {
    display: flex;
    align-items: center;
    padding: 100px 6%;
    gap: 60px;
    position: relative;
}

.intro-text-block {
    flex: 1;
    padding-left: 40px;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-weight: 700;
}

.intro-text-block p {
    font-size: 18px;
    margin-bottom: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.intro-image-overlap {
    flex: 1;
    transform: translateY(-40px);
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
}

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

.services-irregular {
    padding: 120px 6% 100px;
    background: var(--color-bg-alt);
}

.services-header-offset {
    margin-bottom: 70px;
    padding-left: 60px;
}

.services-header-offset h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 700;
}

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

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    display: flex;
    flex-direction: column;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
}

.card-large {
    width: calc(60% - 16px);
}

.card-offset {
    width: calc(40% - 16px);
    transform: translateY(40px);
}

.card-small {
    width: calc(35% - 16px);
}

.card-medium {
    width: calc(32% - 16px);
    transform: translateY(-30px);
}

.card-tall {
    width: calc(33% - 16px);
}

.service-image {
    height: 280px;
    overflow: hidden;
}

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

.service-info {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-info h3 {
    font-size: 26px;
    color: var(--color-primary);
    font-weight: 600;
}

.service-info p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-accent);
    margin-top: 8px;
}

.btn-select-service {
    padding: 14px 28px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select-service:hover {
    background: var(--color-accent);
    transform: translateX(4px);
}

.form-section-offset {
    display: flex;
    min-height: 700px;
    position: relative;
}

.form-container {
    width: 50%;
    padding: 80px 6%;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 700;
}

.form-container p {
    font-size: 17px;
    color: var(--color-text-light);
    margin-bottom: 40px;
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.form-field label {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text);
}

.form-field input {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    font-family: var(--font-primary);
    transition: border-color 0.3s;
}

.form-field input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.selected-service-display {
    padding: 14px 16px;
    background: var(--color-bg-alt);
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 16px;
    color: var(--color-text-light);
    min-height: 52px;
    display: flex;
    align-items: center;
}

.selected-service-display.has-service {
    color: var(--color-primary);
    border-color: var(--color-accent);
    background: #fff9f0;
}

.btn-submit {
    padding: 16px 32px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 16px;
}

.btn-submit:hover:not(:disabled) {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.form-image-side {
    width: 50%;
    overflow: hidden;
    transform: translateX(-40px);
    box-shadow: -30px 0 60px rgba(0,0,0,0.2);
}

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

.trust-diagonal {
    padding: 100px 6%;
    background: var(--color-primary);
    color: #fff;
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-diagonal > * {
    transform: skewY(2deg);
}

.trust-diagonal h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
}

.trust-grid {
    display: flex;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-accent);
    font-weight: 600;
}

.trust-item p {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,0.85);
}

.disclaimer-section {
    padding: 60px 6%;
    background: #fff9f0;
    border-top: 2px solid var(--color-accent);
    border-bottom: 2px solid var(--color-accent);
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
    text-align: center;
}

.footer-asymmetric {
    background: var(--color-secondary);
    color: rgba(255,255,255,0.8);
}

.footer-main {
    display: flex;
    gap: 80px;
    padding: 70px 6% 50px;
}

.footer-brand {
    flex: 1.5;
}

.footer-brand h3 {
    font-size: 26px;
    color: var(--color-accent);
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-brand p {
    font-size: 15px;
    line-height: 1.6;
}

.footer-links,
.footer-legal {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links h4,
.footer-legal h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}

.footer-links a,
.footer-legal a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    padding: 24px 6%;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary);
    padding: 24px 6%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 9999;
    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: 32px;
}

.cookie-content p {
    color: rgba(255,255,255,0.9);
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-cookie-accept:hover {
    background: #d4b56f;
    transform: translateY(-2px);
}

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-cookie-reject:hover {
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.about-hero-split {
    display: flex;
    min-height: 70vh;
}

.about-hero-content {
    width: 60%;
    overflow: hidden;
}

.about-hero-content img {
    width: 100%;
    height: 100%;
    display: block;
}

.about-hero-text {
    width: 40%;
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--color-bg-alt);
}

.about-hero-text h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-weight: 800;
}

.about-hero-text p {
    font-size: 19px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.story-asymmetric {
    padding: 100px 6%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.story-text-large {
    width: calc(55% - 30px);
    padding-right: 40px;
}

.story-text-large h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: var(--color-primary);
    font-weight: 700;
}

.story-text-large p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.story-image-offset {
    width: calc(45% - 30px);
    transform: translateY(60px);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
}

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

.story-text-small {
    width: calc(50% - 30px);
    padding-left: 40px;
    transform: translateY(-40px);
}

.story-text-small h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 600;
}

.story-text-small p {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.values-diagonal {
    padding: 100px 6%;
    background: var(--color-bg-alt);
}

.values-diagonal h2 {
    font-size: 46px;
    margin-bottom: 70px;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
}

.values-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.value-card {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.value-large {
    width: calc(60% - 16px);
}

.value-offset {
    width: calc(40% - 16px);
    transform: translateY(40px);
}

.value-small {
    width: calc(35% - 16px);
}

.value-tall {
    width: calc(65% - 16px);
    transform: translateY(-30px);
}

.value-card h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 600;
}

.value-card p {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.team-offset {
    padding: 100px 6%;
    background: #fff;
}

.team-offset h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 700;
}

.team-intro {
    font-size: 19px;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.team-description {
    max-width: 900px;
    padding-left: 60px;
}

.team-description p {
    font-size: 17px;
    margin-bottom: 22px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.cta-about-asymmetric {
    padding: 100px 6%;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.cta-content-offset {
    max-width: 700px;
    margin-left: 80px;
    color: #fff;
}

.cta-content-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-offset p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.services-hero-diagonal {
    padding: 100px 6% 60px;
    background: linear-gradient(to bottom right, var(--color-bg-alt), #ffffff);
    text-align: center;
}

.services-hero-diagonal h1 {
    font-size: 54px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 800;
}

.services-hero-diagonal p {
    font-size: 20px;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed-asymmetric {
    padding: 80px 6%;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-detail-large,
.service-detail-offset,
.service-detail-small,
.service-detail-tall,
.service-detail-wide {
    display: flex;
    gap: 50px;
    align-items: center;
}

.service-detail-offset {
    flex-direction: row-reverse;
    transform: translateX(40px);
}

.service-detail-small {
    transform: translateY(-30px);
}

.service-detail-tall .service-detail-content {
    padding-right: 60px;
}

.service-detail-image {
    flex: 1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.service-detail-price {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    margin: 28px 0;
}

.process-asymmetric {
    padding: 100px 6%;
    background: var(--color-bg-alt);
}

.process-asymmetric h2 {
    font-size: 44px;
    margin-bottom: 70px;
    text-align: center;
    color: var(--color-primary);
    font-weight: 700;
}

.process-steps-irregular {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: relative;
}

.step-large {
    flex: 1.5;
}

.step-offset {
    flex: 1;
    transform: translateY(40px);
}

.step-small {
    flex: 1;
    transform: translateY(-20px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--color-accent);
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 24px;
}

.process-step h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 600;
}

.process-step p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.cta-services-diagonal {
    padding: 100px 6%;
    background: var(--color-primary);
    color: #fff;
    text-align: center;
}

.cta-services-diagonal h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-services-diagonal p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.9;
}

.btn-cta-large {
    display: inline-block;
    padding: 18px 48px;
    background: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-cta-large:hover {
    background: #d4b56f;
    transform: translateY(-2px);
}

.contact-hero-offset {
    padding: 100px 6% 60px;
    background: var(--color-bg-alt);
    text-align: center;
}

.contact-hero-offset h1 {
    font-size: 54px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 800;
}

.contact-hero-offset p {
    font-size: 20px;
    color: var(--color-text-light);
}

.contact-info-asymmetric {
    padding: 80px 6%;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.contact-main-block {
    width: calc(50% - 30px);
    padding-right: 40px;
}

.contact-main-block h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--color-primary);
    font-weight: 700;
}

.contact-detail-group {
    margin-bottom: 40px;
}

.contact-detail-group h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--color-primary);
    font-weight: 600;
}

.contact-detail-group p {
    font-size: 17px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-email {
    color: var(--color-text) !important;
    font-weight: 500;
}

.contact-secondary-block {
    width: calc(50% - 30px);
    background: var(--color-bg-alt);
    padding: 40px;
    border-radius: 8px;
    transform: translateY(60px);
}

.contact-secondary-block h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 600;
}

.contact-secondary-block p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.contact-image-diagonal {
    width: 100%;
    height: 400px;
    margin-top: 60px;
    transform: translateX(-40px);
    box-shadow: 20px 20px 60px rgba(0,0,0,0.15);
    border-radius: 8px;
    overflow: hidden;
}

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

.location-section-offset {
    padding: 100px 6%;
    background: var(--color-bg-alt);
}

.location-section-offset h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 700;
    text-align: center;
}

.location-section-offset > p {
    font-size: 18px;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.location-details {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-item {
    flex: 1;
    background: #fff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.location-item:nth-child(2) {
    transform: translateY(30px);
}

.location-item h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: var(--color-primary);
    font-weight: 600;
}

.location-item p {
    font-size: 16px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.cta-contact-asymmetric {
    padding: 100px 6%;
    background: var(--color-primary);
    color: #fff;
}

.cta-contact-asymmetric h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    padding-left: 60px;
}

.cta-contact-asymmetric p {
    font-size: 19px;
    margin-bottom: 36px;
    opacity: 0.9;
    padding-left: 60px;
}

.btn-cta-contact {
    display: inline-block;
    padding: 18px 42px;
    background: var(--color-accent);
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 4px;
    transition: all 0.3s;
    margin-left: 60px;
}

.btn-cta-contact:hover {
    background: #d4b56f;
    transform: translateY(-2px);
}

.thanks-hero-offset {
    display: flex;
    min-height: 80vh;
    align-items: center;
}

.thanks-content {
    width: 55%;
    padding: 80px 6%;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 800;
}

.thanks-content > p {
    font-size: 20px;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 600;
}

.thanks-details p {
    font-size: 17px;
    margin-bottom: 14px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.thanks-info {
    margin-bottom: 40px;
    background: var(--color-bg-alt);
    padding: 32px;
    border-radius: 8px;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 600;
}

.thanks-info ul {
    list-style: none;
    padding: 0;
}

.thanks-info li {
    font-size: 16px;
    color: var(--color-text-light);
    padding: 8px 0 8px 28px;
    position: relative;
    line-height: 1.6;
}

.thanks-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 700;
    font-size: 18px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-thanks-primary,
.btn-thanks-secondary {
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 4px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-thanks-primary {
    background: var(--color-primary);
    color: #fff;
}

.btn-thanks-primary:hover {
    background: var(--color-accent);
    transform: translateY(-2px);
}

.btn-thanks-secondary {
    background: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-thanks-secondary:hover {
    background: var(--color-bg-alt);
    transform: translateY(-2px);
}

.thanks-image-side {
    width: 45%;
    overflow: hidden;
    transform: translateX(-30px);
    box-shadow: -20px 0 60px rgba(0,0,0,0.2);
}

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

.thanks-reassurance {
    padding: 80px 6%;
    background: var(--color-bg-alt);
    text-align: center;
}

.thanks-reassurance h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--color-primary);
    font-weight: 700;
}

.thanks-reassurance p {
    font-size: 18px;
    color: var(--color-text-light);
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 16px;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 6%;
}

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--color-primary);
    font-weight: 800;
}

.legal-update {
    font-size: 14px;
    color: var(--color-text-light);
    margin-bottom: 50px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--color-primary);
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin: 24px 0 14px;
    color: var(--color-primary);
    font-weight: 600;
}

.legal-section p {
    font-size: 16px;
    margin-bottom: 16px;
    color: var(--color-text-light);
    line-height: 1.8;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
    list-style: disc;
}

.legal-section li {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--color-text-light);
    line-height: 1.7;
}

.legal-section a {
    color: var(--color-accent);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--color-primary);
}

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

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

    .hero-offset,
    .intro-diagonal,
    .form-section-offset,
    .about-hero-split,
    .story-asymmetric,
    .contact-info-asymmetric,
    .services-detailed-asymmetric > div,
    .thanks-hero-offset {
        flex-direction: column;
    }

    .hero-content-left,
    .hero-image-right,
    .intro-text-block,
    .intro-image-overlap,
    .form-container,
    .form-image-side,
    .about-hero-content,
    .about-hero-text,
    .story-text-large,
    .story-image-offset,
    .story-text-small,
    .contact-main-block,
    .contact-secondary-block,
    .service-detail-image,
    .service-detail-content,
    .thanks-content,
    .thanks-image-side {
        width: 100%;
        transform: none;
    }

    .services-grid-asymmetric,
    .values-grid-irregular,
    .trust-grid,
    .process-steps-irregular,
    .location-details,
    .footer-main {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .trust-item,
    .process-step,
    .location-item {
        width: 100%;
        transform: none;
    }

    h1 {
        font-size: 36px !important;
    }

    h2 {
        font-size: 32px !important;
    }
}
