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

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

.ad-disclosure {
    background: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.floating-nav {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-brand {
    font-weight: 600;
    font-size: 18px;
    color: #2c3e50;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 25px;
}

.nav-menu a {
    text-decoration: none;
    color: #5a6c7d;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #8b7355;
}

.hero-offset {
    display: flex;
    min-height: 90vh;
    align-items: center;
    padding: 100px 60px 60px;
    position: relative;
}

.hero-content-left {
    width: 45%;
    padding-right: 60px;
    transform: translateY(-40px);
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #4a5568;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #8b7355;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s, background 0.3s;
}

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

.hero-image-right {
    width: 55%;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%) translateX(80px);
    border-radius: 20px 0 0 20px;
    overflow: hidden;
    box-shadow: -20px 20px 60px rgba(0, 0, 0, 0.15);
}

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

.story-block {
    padding: 120px 60px 80px;
    background: #f9f7f4;
    position: relative;
}

.story-narrow {
    max-width: 720px;
    margin: 0 0 0 80px;
}

.story-narrow h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.story-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
}

.story-narrow a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #8b7355;
}

.story-narrow a:hover {
    color: #6d5940;
    border-bottom-color: #6d5940;
}

.inline-visual {
    margin: 60px 0 0 auto;
    max-width: 600px;
    width: 60%;
    border-radius: 12px;
    overflow: hidden;
    transform: translateX(-100px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.inline-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.insight-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
}

.insight-image-left {
    width: 40%;
    transform: translateY(60px) translateX(-40px);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.insight-text-right {
    width: 60%;
    padding-left: 40px;
}

.insight-text-right h2 {
    font-size: 44px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.insight-text-right p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.insight-text-right a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #8b7355;
}

.testimonial-floating {
    padding: 80px 60px;
    background: #fff;
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
}

.testimonial-card-offset {
    width: 400px;
    padding: 40px;
    background: #f9f7f4;
    border-radius: 20px;
    transform: rotate(-2deg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.testimonial-card-offset blockquote {
    font-size: 17px;
    font-style: italic;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-card-offset cite {
    font-size: 14px;
    color: #6c757d;
    font-style: normal;
}

.benefits-staggered {
    padding: 100px 60px;
    background: #fefefe;
}

.benefits-staggered h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.benefits-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.benefit-card {
    width: 360px;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card.offset-1 {
    transform: translateY(-20px);
}

.benefit-card.offset-2 {
    transform: translateY(40px);
}

.benefit-card.offset-3 {
    transform: translateY(10px);
}

.benefit-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

.benefit-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 15px;
    margin: 0 25px 25px;
    color: #4a5568;
    line-height: 1.6;
}

.cta-inline-flow {
    padding: 60px 80px;
    background: #8b7355;
    margin: 0 60px;
    border-radius: 24px;
    transform: rotate(-1deg);
}

.cta-text-left {
    max-width: 600px;
}

.cta-text-left h2 {
    font-size: 38px;
    color: white;
    margin-bottom: 20px;
}

.cta-text-left p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.9);
}

.pricing-reveal {
    padding: 100px 60px;
    background: #f9f7f4;
}

.pricing-reveal h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.pricing-cards-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.price-card {
    width: 320px;
    padding: 40px 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.price-card.offset-left {
    transform: translateX(-20px) translateY(20px);
}

.price-card.offset-center {
    transform: translateY(-30px);
}

.price-card.offset-right {
    transform: translateX(20px) translateY(15px);
}

.price-card.offset-bottom {
    transform: translateY(40px);
}

.price-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.price-card p {
    font-size: 15px;
    color: #4a5568;
    margin-bottom: 25px;
    line-height: 1.6;
    min-height: 90px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #8b7355;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.select-service:hover {
    background: #6d5940;
    transform: translateY(-2px);
}

.form-section-offset {
    padding: 100px 60px;
    background: #fff;
}

.form-container-asymmetric {
    max-width: 700px;
    margin: 0 auto 0 100px;
    padding: 50px;
    background: #f9f7f4;
    border-radius: 24px;
    transform: rotate(-0.5deg);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 16px;
    margin-bottom: 30px;
    color: #4a5568;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #d1d5db;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #8b7355;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.trust-elements {
    padding: 80px 60px;
    background: #fefefe;
}

.trust-grid-scattered {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-item {
    width: 320px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.trust-item:nth-child(1) {
    transform: translateY(-15px) rotate(-1deg);
}

.trust-item:nth-child(2) {
    transform: translateY(20px) rotate(1deg);
}

.trust-item:nth-child(3) {
    transform: translateY(5px) rotate(-0.5deg);
}

.trust-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.trust-item p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

.references-section {
    padding: 60px 80px;
    background: #f9f7f4;
    margin: 40px 60px;
    border-radius: 20px;
}

.references-section h3 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.reference-list {
    padding-left: 20px;
}

.reference-list li {
    margin-bottom: 15px;
    line-height: 1.7;
}

.reference-list a {
    color: #8b7355;
    text-decoration: none;
}

.reference-list a:hover {
    text-decoration: underline;
}

footer {
    background: #2c3e50;
    color: white;
    padding: 60px 60px 30px;
}

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

.footer-section {
    flex: 1;
    min-width: 250px;
}

.footer-section h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: white;
}

.footer-section p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-section ul a:hover {
    color: white;
}

.disclaimer {
    max-width: 1200px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.98);
    padding: 25px 40px;
    z-index: 2000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    color: white;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.cookie-content a {
    color: #8b7355;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 30px;
    border: none;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 0.2s, background 0.3s;
}

.cookie-btn.accept {
    background: #8b7355;
    color: white;
}

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

.cookie-btn.reject {
    background: #6c757d;
    color: white;
}

.cookie-btn.reject:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

.page-hero-about {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f9f7f4 0%, #e8e4de 100%);
}

.hero-text-offset {
    max-width: 700px;
    margin-left: 100px;
    transform: translateY(20px);
}

.hero-text-offset h1 {
    font-size: 64px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.hero-text-offset p {
    font-size: 20px;
    color: #4a5568;
}

.about-story-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
}

.story-text-left {
    width: 55%;
    transform: translateY(-30px);
}

.story-text-left h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.story-text-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.story-image-right {
    width: 45%;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.philosophy-block {
    padding: 80px 60px;
    background: #f9f7f4;
}

.philosophy-content-narrow {
    max-width: 750px;
    margin: 0 auto 0 120px;
}

.philosophy-content-narrow h2 {
    font-size: 44px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.philosophy-content-narrow p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.values-scattered {
    padding: 100px 60px;
    background: white;
}

.values-scattered h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.values-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    justify-content: center;
}

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

.value-card.offset-a {
    transform: translateY(-25px) rotate(-1deg);
}

.value-card.offset-b {
    transform: translateY(30px) rotate(1.5deg);
}

.value-card.offset-c {
    transform: translateY(10px) rotate(-0.8deg);
}

.value-card h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.value-card p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.approach-section {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 70px;
    background: #fefefe;
}

.approach-visual-left {
    width: 45%;
    border-radius: 18px;
    overflow: hidden;
    transform: translateX(-40px) translateY(30px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.approach-visual-left img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.approach-text-right {
    width: 55%;
}

.approach-text-right h2 {
    font-size: 42px;
    margin-bottom: 28px;
    color: #1a1a1a;
}

.approach-text-right p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.commitment-block {
    padding: 80px 60px;
    background: #8b7355;
    margin: 60px;
    border-radius: 24px;
    transform: rotate(0.5deg);
}

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

.commitment-content h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 25px;
}

.commitment-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.7;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #8b7355;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.services-hero {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f9f7f4 0%, #e8e4de 100%);
    text-align: center;
}

.services-hero h1 {
    font-size: 58px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-hero p {
    font-size: 20px;
    color: #4a5568;
}

.services-grid-asymmetric {
    padding: 80px 60px;
    background: white;
}

.service-detail {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 50px;
    background: #fefefe;
    border-radius: 20px;
}

.service-detail.offset-1 {
    transform: translateX(-40px);
    background: #f9f7f4;
}

.service-detail.offset-2 {
    transform: translateX(40px);
}

.service-detail.offset-3 {
    transform: translateX(-30px);
    background: #f9f7f4;
}

.service-detail.offset-4 {
    transform: translateX(50px);
}

.service-detail.offset-5 {
    transform: translateX(-20px);
    background: #f9f7f4;
}

.service-detail.offset-6 {
    transform: translateX(35px);
}

.service-image {
    width: 40%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

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

.service-info {
    width: 60%;
}

.service-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding-left: 25px;
    margin-bottom: 10px;
    position: relative;
    font-size: 15px;
    color: #4a5568;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #8b7355;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    padding: 14px 35px;
    background: #8b7355;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: background 0.3s, transform 0.2s;
}

.service-cta:hover {
    background: #6d5940;
    transform: translateY(-2px);
}

.service-note {
    padding: 60px;
    background: #f9f7f4;
    margin: 0 60px 60px;
    border-radius: 20px;
    transform: rotate(-0.5deg);
}

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

.note-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.note-content p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-hero {
    padding: 140px 60px 80px;
    background: linear-gradient(135deg, #f9f7f4 0%, #e8e4de 100%);
    text-align: center;
}

.contact-hero h1 {
    font-size: 58px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.contact-hero p {
    font-size: 20px;
    color: #4a5568;
}

.contact-layout-asymmetric {
    display: flex;
    align-items: center;
    padding: 100px 60px;
    gap: 80px;
}

.contact-info-left {
    width: 50%;
    transform: translateY(-30px);
}

.contact-info-left h2 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background: #f9f7f4;
    border-radius: 12px;
}

.contact-note p {
    font-size: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.contact-visual-right {
    width: 50%;
    border-radius: 20px;
    overflow: hidden;
    transform: translateY(40px) translateX(30px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

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

.location-info {
    padding: 80px 60px;
    background: #f9f7f4;
}

.location-content {
    max-width: 800px;
    margin: 0 auto 0 100px;
}

.location-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.location-content p {
    font-size: 17px;
    margin-bottom: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.cta-section-contact {
    padding: 80px 60px;
    background: white;
}

.cta-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    background: #8b7355;
    border-radius: 24px;
    transform: rotate(-1deg);
}

.cta-content-centered h2 {
    font-size: 42px;
    color: white;
    margin-bottom: 20px;
}

.cta-content-centered p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: white;
    color: #8b7355;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.thanks-section {
    padding: 160px 60px 100px;
    background: linear-gradient(135deg, #f9f7f4 0%, #e8e4de 100%);
}

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

.thanks-content-centered h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.thanks-content-centered p {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-service-info {
    margin: 30px 0;
    padding: 20px;
    background: white;
    border-radius: 12px;
}

.thanks-service-info p {
    font-size: 17px;
    color: #2c3e50;
    margin: 0;
}

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

.thanks-btn {
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 500;
    transition: transform 0.3s, background 0.3s;
}

.thanks-btn.primary {
    background: #8b7355;
    color: white;
}

.thanks-btn.primary:hover {
    background: #6d5940;
    transform: translateY(-2px);
}

.thanks-btn.secondary {
    background: white;
    color: #8b7355;
    border: 2px solid #8b7355;
}

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

.thanks-info-block {
    padding: 80px 60px;
    background: white;
}

.info-asymmetric {
    display: flex;
    align-items: center;
    gap: 70px;
    max-width: 1200px;
    margin: 0 auto;
}

.info-text {
    width: 55%;
}

.info-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.info-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    line-height: 1.7;
}

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

.info-text ul li {
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    font-size: 16px;
    color: #4a5568;
}

.info-text ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b7355;
    font-weight: 700;
}

.info-visual {
    width: 45%;
    border-radius: 18px;
    overflow: hidden;
    transform: translateY(30px);
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.14);
}

.info-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.legal-page {
    padding: 140px 60px 80px;
    background: #fefefe;
}

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    margin-bottom: 10px;
    font-size: 16px;
    color: #4a5568;
    line-height: 1.7;
}

.legal-content a {
    color: #8b7355;
    text-decoration: none;
    border-bottom: 1px solid #8b7355;
}

.legal-content a:hover {
    color: #6d5940;
    border-bottom-color: #6d5940;
}

@media (max-width: 1024px) {
    .floating-nav {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
        gap: 20px;
    }

    .nav-menu {
        gap: 15px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 100px 40px 60px;
    }

    .hero-content-left {
        width: 100%;
        padding-right: 0;
        transform: none;
    }

    .hero-image-right {
        position: relative;
        width: 100%;
        transform: none;
        margin-top: 40px;
        border-radius: 20px;
    }

    .insight-asymmetric,
    .about-story-asymmetric,
    .approach-section,
    .contact-layout-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .insight-image-left,
    .insight-text-right,
    .story-text-left,
    .story-image-right,
    .approach-visual-left,
    .approach-text-right,
    .contact-info-left,
    .contact-visual-right,
    .service-image,
    .service-info {
        width: 100%;
        transform: none;
        padding-left: 0;
    }

    .service-detail {
        flex-direction: column;
        transform: none;
        padding: 30px;
    }

    .story-narrow,
    .philosophy-content-narrow,
    .hero-text-offset,
    .location-content {
        margin-left: 0;
        transform: none;
    }

    .form-container-asymmetric {
        margin: 0 auto;
        transform: none;
    }

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

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

@media (max-width: 768px) {
    .hero-content-left h1,
    .hero-text-offset h1 {
        font-size: 38px;
    }

    .benefits-staggered h2,
    .pricing-reveal h2,
    .services-hero h1,
    .contact-hero h1,
    .values-scattered h2 {
        font-size: 36px;
    }

    .benefit-card,
    .price-card,
    .value-card,
    .trust-item {
        width: 100%;
        transform: none;
    }

    .pricing-cards-asymmetric,
    .benefits-grid-asymmetric,
    .values-grid-asymmetric,
    .trust-grid-scattered {
        gap: 25px;
    }

    .floating-nav {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .nav-menu {
        flex-direction: column;
        gap: 10px;
    }

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

    .thanks-btn {
        width: 100%;
        text-align: center;
    }
}