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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f6f3;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2419;
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

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

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: #8B7355;
    color: #fff;
    cursor: pointer;
    border-radius: 4px;
    font-size: 14px;
    transition: background-color 0.3s;
}

.btn-cookie:hover {
    background-color: #6f5b44;
}

.btn-cookie.btn-secondary {
    background-color: transparent;
    border: 1px solid #8B7355;
}

.btn-cookie.btn-secondary:hover {
    background-color: rgba(139, 115, 85, 0.1);
}

.header-main {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ad-disclosure {
    background-color: #f0ebe5;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #666;
    border-bottom: 1px solid #e0dbd5;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #8B7355;
    letter-spacing: -0.5px;
}

.nav-main {
    display: flex;
    gap: 35px;
}

.nav-main a {
    text-decoration: none;
    color: #333;
    font-size: 15px;
    transition: color 0.3s;
    position: relative;
}

.nav-main a:hover {
    color: #8B7355;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #333;
}

.hero-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    display: flex;
    min-height: 600px;
}

.hero-content-offset {
    position: relative;
    z-index: 10;
    flex: 0 0 55%;
    padding-right: 60px;
    display: flex;
    align-items: center;
}

.hero-text-block {
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-top: -40px;
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c2419;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 18px;
    color: #5a5147;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

.hero-image-overlap {
    position: absolute;
    right: 40px;
    top: 120px;
    width: 48%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.intro-offset {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.intro-grid {
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-card-left {
    flex: 1;
    padding-left: 60px;
}

.intro-card-left h2 {
    font-size: 38px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.intro-card-left p {
    font-size: 17px;
    color: #5a5147;
    line-height: 1.8;
}

.intro-visual-right {
    flex: 0 0 45%;
    height: 400px;
    overflow: hidden;
    margin-top: -60px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.intro-visual-right img {
    width: 100%;
    height: 100%;
}

.services-asymmetric {
    max-width: 1400px;
    margin: 140px auto;
    padding: 0 40px;
}

.section-header-offset {
    max-width: 600px;
    margin-bottom: 80px;
    margin-left: 120px;
}

.section-header-offset h2 {
    font-size: 42px;
    color: #2c2419;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-offset p {
    font-size: 18px;
    color: #5a5147;
}

.services-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: flex-start;
}

.service-card {
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.service-card-1 {
    flex: 0 0 calc(60% - 20px);
    margin-top: 0;
}

.service-card-2 {
    flex: 0 0 calc(40% - 20px);
    margin-top: 60px;
}

.service-card-3 {
    flex: 0 0 calc(45% - 20px);
    margin-top: -40px;
}

.service-card-4 {
    flex: 0 0 calc(55% - 20px);
    margin-top: 20px;
}

.service-card-5 {
    flex: 0 0 calc(50% - 20px);
    margin-top: -30px;
}

.service-card-6 {
    flex: 0 0 calc(50% - 20px);
    margin-top: 40px;
}

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

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    color: #2c2419;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-info p {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.select-service {
    padding: 12px 28px;
    background-color: #8B7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #6f5b44;
    transform: translateX(4px);
}

.form-section-offset {
    max-width: 1400px;
    margin: 160px auto;
    padding: 0 40px;
}

.form-container-irregular {
    background-color: #fff;
    padding: 80px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
    margin-left: 100px;
    max-width: 800px;
}

.form-header {
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 36px;
    color: #2c2419;
    margin-bottom: 12px;
    font-weight: 700;
}

.form-header p {
    font-size: 16px;
    color: #5a5147;
}

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

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

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: #2c2419;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 1px solid #d4c4b0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

.btn-submit {
    padding: 16px 40px;
    background-color: #8B7355;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    align-self: flex-start;
}

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

.quality-overlap {
    background-color: #2c2419;
    color: #fff;
    padding: 120px 40px;
    margin-top: 100px;
    position: relative;
}

.quality-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.quality-text-block {
    flex: 1;
}

.quality-text-block h2 {
    font-size: 40px;
    margin-bottom: 24px;
    font-weight: 700;
}

.quality-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #d4c4b0;
    margin-bottom: 16px;
}

.quality-stats {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.stat-item {
    background-color: rgba(255,255,255,0.05);
    padding: 28px;
    border-left: 4px solid #8B7355;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #8B7355;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #d4c4b0;
}

.disclaimer-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.disclaimer-content {
    background-color: #f0ebe5;
    padding: 40px;
    border-left: 4px solid #8B7355;
}

.disclaimer-text {
    font-size: 14px;
    color: #5a5147;
    line-height: 1.8;
}

.footer-main {
    background-color: #2c2419;
    color: #d4c4b0;
    padding: 80px 40px 40px;
    margin-top: 100px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 20px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-column h4 {
    font-size: 16px;
    color: #fff;
    margin-bottom: 16px;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

.footer-column ul li a {
    color: #d4c4b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #8B7355;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 196, 176, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #9B8777;
}

.page-hero-offset {
    max-width: 1400px;
    margin: 60px auto 100px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-end;
}

.page-hero-content {
    flex: 0 0 45%;
    padding-top: 80px;
}

.page-hero-content h1 {
    font-size: 52px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.1;
}

.page-hero-content p {
    font-size: 19px;
    color: #5a5147;
    line-height: 1.6;
}

.page-hero-visual {
    flex: 1;
    height: 450px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,0.12);
    margin-top: 40px;
}

.page-hero-visual img {
    width: 100%;
    height: 100%;
}

.about-story {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.story-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
}

.story-block-1 {
    flex: 0 0 55%;
    padding-right: 40px;
}

.story-block-1 h2 {
    font-size: 36px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-block-1 p {
    font-size: 16px;
    color: #5a5147;
    line-height: 1.8;
    margin-bottom: 16px;
}

.story-image-offset {
    flex: 0 0 40%;
    height: 380px;
    overflow: hidden;
    margin-top: -80px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

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

.story-block-2 {
    flex: 0 0 100%;
    padding: 60px;
    background-color: #fff;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    margin-top: -40px;
    margin-left: 80px;
    max-width: 900px;
}

.story-block-2 h2 {
    font-size: 32px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-block-2 p {
    font-size: 16px;
    color: #5a5147;
    line-height: 1.8;
    margin-bottom: 16px;
}

.team-asymmetric {
    max-width: 1400px;
    margin: 140px auto;
    padding: 0 40px;
}

.team-header-offset {
    max-width: 700px;
    margin-bottom: 80px;
    margin-left: 60px;
}

.team-header-offset h2 {
    font-size: 40px;
    color: #2c2419;
    margin-bottom: 16px;
    font-weight: 700;
}

.team-header-offset p {
    font-size: 17px;
    color: #5a5147;
    line-height: 1.7;
}

.team-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.team-member {
    background-color: #fff;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    overflow: hidden;
}

.team-member-1 {
    flex: 0 0 calc(45% - 20px);
    margin-top: 0;
}

.team-member-2 {
    flex: 0 0 calc(55% - 20px);
    margin-top: 60px;
}

.team-member-3 {
    flex: 0 0 calc(50% - 20px);
    margin-top: -40px;
    margin-left: auto;
}

.member-image {
    height: 320px;
    overflow: hidden;
}

.member-image img {
    width: 100%;
    height: 100%;
}

.member-info {
    padding: 32px;
}

.member-info h3 {
    font-size: 22px;
    color: #2c2419;
    margin-bottom: 12px;
    font-weight: 600;
}

.member-info p {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.6;
}

.values-offset {
    background-color: #f0ebe5;
    padding: 100px 40px;
}

.values-content-irregular {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 80px;
}

.values-content-irregular h2 {
    font-size: 40px;
    color: #2c2419;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.04);
}

.value-item h3 {
    font-size: 24px;
    color: #2c2419;
    margin-bottom: 12px;
    font-weight: 600;
}

.value-item p {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.7;
}

.workshop-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.workshop-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.workshop-text {
    flex: 1;
}

.workshop-text h2 {
    font-size: 38px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.workshop-text p {
    font-size: 16px;
    color: #5a5147;
    line-height: 1.8;
    margin-bottom: 16px;
}

.cta-inline {
    display: inline-block;
    margin-top: 16px;
    padding: 14px 32px;
    background-color: #8B7355;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-inline:hover {
    background-color: #6f5b44;
    transform: translateX(4px);
}

.workshop-image {
    flex: 0 0 48%;
    height: 440px;
    overflow: hidden;
    box-shadow: 0 14px 44px rgba(0,0,0,0.1);
}

.workshop-image img {
    width: 100%;
    height: 100%;
}

.page-hero-services {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 50px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-hero-content p {
    font-size: 18px;
    color: #5a5147;
    max-width: 700px;
    margin: 0 auto;
}

.services-detail {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-detail-1 {
    margin-left: 0;
}

.service-detail-2 {
    margin-left: 80px;
}

.service-detail-3 {
    margin-left: -40px;
}

.service-detail-4 {
    margin-left: 60px;
}

.service-detail-5 {
    margin-left: 20px;
}

.service-detail-6 {
    margin-left: -60px;
}

.service-detail-visual {
    flex: 0 0 45%;
    height: 420px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.service-detail-visual img {
    width: 100%;
    height: 100%;
}

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

.service-detail-content h2 {
    font-size: 34px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 16px;
    color: #5a5147;
    line-height: 1.8;
    margin-bottom: 16px;
}

.service-features {
    margin: 32px 0;
}

.service-features h3 {
    font-size: 18px;
    color: #2c2419;
    margin-bottom: 12px;
    font-weight: 600;
}

.service-features ul {
    list-style: none;
    padding-left: 0;
}

.service-features ul li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    font-size: 15px;
    color: #5a5147;
}

.service-features ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8B7355;
    font-size: 20px;
}

.service-pricing {
    margin-top: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.price-tag {
    font-size: 24px;
    color: #8B7355;
    font-weight: 700;
}

.services-cta {
    background-color: #2c2419;
    padding: 100px 40px;
    text-align: center;
}

.services-cta-content h2 {
    font-size: 38px;
    color: #fff;
    margin-bottom: 16px;
    font-weight: 700;
}

.services-cta-content p {
    font-size: 17px;
    color: #d4c4b0;
    margin-bottom: 32px;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #fff;
    border: 2px solid #8B7355;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-secondary:hover {
    background-color: #8B7355;
    transform: translateY(-2px);
}

.contact-hero {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 50px;
    color: #2c2419;
    margin-bottom: 16px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 18px;
    color: #5a5147;
}

.contact-content {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-info-offset {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-card {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.contact-card-1 {
    margin-left: 0;
}

.contact-card-2 {
    margin-left: 40px;
}

.contact-card-3 {
    margin-left: 20px;
}

.contact-card h2 {
    font-size: 24px;
    color: #2c2419;
    margin-bottom: 16px;
    font-weight: 600;
}

.contact-card p {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.7;
}

.contact-note {
    margin-top: 12px;
    font-style: italic;
    color: #8B7355;
}

.contact-visual {
    flex: 0 0 45%;
    height: 500px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    margin-top: 60px;
}

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

.location-info {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.location-content {
    background-color: #f0ebe5;
    padding: 60px;
}

.location-content h2 {
    font-size: 32px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.location-content p {
    font-size: 16px;
    color: #5a5147;
    line-height: 1.8;
    margin-bottom: 32px;
}

.directions {
    display: flex;
    gap: 40px;
}

.direction-item {
    flex: 1;
    background-color: #fff;
    padding: 32px;
}

.direction-item h3 {
    font-size: 20px;
    color: #2c2419;
    margin-bottom: 12px;
    font-weight: 600;
}

.direction-item p {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.6;
    margin: 0;
}

.visit-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.visit-content {
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
    margin-left: 60px;
}

.visit-content h2 {
    font-size: 32px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.visit-content p {
    font-size: 16px;
    color: #5a5147;
    line-height: 1.8;
    margin-bottom: 16px;
}

.thanks-section {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
}

.thanks-content {
    text-align: center;
    background-color: #fff;
    padding: 80px 60px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    color: #2c2419;
    margin-bottom: 20px;
    font-weight: 700;
}

.thanks-message {
    font-size: 18px;
    color: #5a5147;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f0ebe5;
    padding: 24px;
    margin-bottom: 40px;
    border-radius: 4px;
}

.thanks-details p {
    font-size: 16px;
    color: #2c2419;
    margin-bottom: 8px;
}

.thanks-details strong {
    color: #8B7355;
}

.thanks-next-steps {
    margin: 60px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    color: #2c2419;
    margin-bottom: 40px;
    font-weight: 700;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 32px;
}

.step-item {
    flex: 1;
    padding: 32px;
    background-color: #f0ebe5;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #8B7355;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-item h3 {
    font-size: 20px;
    color: #2c2419;
    margin-bottom: 12px;
    font-weight: 600;
}

.step-item p {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.6;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8B7355;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #8B7355;
    border: 2px solid #8B7355;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-secondary:hover {
    background-color: #8B7355;
    color: #fff;
    transform: translateY(-2px);
}

.thanks-additional {
    max-width: 1000px;
    margin: 80px auto;
    padding: 0 40px;
}

.additional-content h2 {
    font-size: 32px;
    color: #2c2419;
    margin-bottom: 16px;
    font-weight: 700;
}

.additional-content p {
    font-size: 16px;
    color: #5a5147;
    margin-bottom: 32px;
}

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

.link-card {
    flex: 1;
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

.link-card h3 {
    font-size: 22px;
    color: #2c2419;
    margin-bottom: 12px;
    font-weight: 600;
}

.link-card p {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.6;
    margin: 0;
}

.legal-page {
    max-width: 1000px;
    margin: 60px auto 100px;
    padding: 0 40px;
}

.legal-content {
    background-color: #fff;
    padding: 60px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.legal-content h1 {
    font-size: 42px;
    color: #2c2419;
    margin-bottom: 32px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 24px;
    color: #2c2419;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    color: #2c2419;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content p {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-intro {
    font-size: 17px;
    color: #5a5147;
    margin-bottom: 32px;
    line-height: 1.7;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-content ul li {
    font-size: 15px;
    color: #5a5147;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e0dbd5;
    font-size: 14px;
    color: #9B8777;
}

.cookie-table {
    margin: 24px 0;
}

.cookie-row {
    display: flex;
    gap: 20px;
    padding: 16px;
    background-color: #f8f6f3;
    margin-bottom: 12px;
}

.cookie-name {
    flex: 0 0 150px;
    font-weight: 600;
    color: #2c2419;
    font-size: 14px;
}

.cookie-desc {
    flex: 1;
    font-size: 14px;
    color: #5a5147;
}

.cookie-duration {
    flex: 0 0 100px;
    font-size: 14px;
    color: #8B7355;
    text-align: right;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 20px;
    }

    .hero-content-offset {
        flex: 1;
        padding-right: 0;
    }

    .hero-text-block {
        padding: 40px;
    }

    .hero-image-overlap {
        position: relative;
        right: auto;
        top: auto;
        width: 100%;
        margin-top: 40px;
    }

    .intro-grid {
        flex-direction: column;
        gap: 40px;
    }

    .intro-card-left {
        padding-left: 0;
    }

    .intro-visual-right {
        flex: 1;
        margin-top: 0;
    }

    .services-irregular {
        justify-content: center;
    }

    .service-card-1,
    .service-card-2,
    .service-card-3,
    .service-card-4,
    .service-card-5,
    .service-card-6 {
        flex: 0 0 100%;
        margin-top: 0 !important;
    }

    .form-container-irregular {
        margin-left: 0;
        padding: 40px;
    }

    .quality-content {
        flex-direction: column;
        gap: 60px;
    }

    .quality-stats {
        flex: 1;
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }

    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }

    .page-hero-offset {
        flex-direction: column;
        gap: 40px;
    }

    .page-hero-content {
        flex: 1;
        padding-top: 0;
    }

    .page-hero-visual {
        flex: 1;
        margin-top: 0;
    }

    .story-irregular {
        gap: 40px;
    }

    .story-block-1 {
        flex: 0 0 100%;
        padding-right: 0;
    }

    .story-image-offset {
        flex: 0 0 100%;
        margin-top: 0;
    }

    .story-block-2 {
        margin-left: 0;
        padding: 40px;
    }

    .team-grid-irregular {
        justify-content: center;
    }

    .team-member-1,
    .team-member-2,
    .team-member-3 {
        flex: 0 0 100%;
        margin-top: 0 !important;
        margin-left: 0 !important;
    }

    .values-content-irregular {
        padding-left: 0;
    }

    .values-grid {
        justify-content: center;
    }

    .value-item {
        flex: 0 0 100%;
    }

    .workshop-content {
        flex-direction: column;
        gap: 40px;
    }

    .workshop-image {
        flex: 1;
    }

    .service-detail-item {
        flex-direction: column;
        gap: 40px;
        margin-left: 0 !important;
    }

    .service-detail-2 .service-detail-visual,
    .service-detail-4 .service-detail-visual,
    .service-detail-6 .service-detail-visual {
        order: -1;
    }

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

    .service-pricing {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-content {
        flex-direction: column;
        gap: 40px;
    }

    .contact-visual {
        flex: 1;
        margin-top: 0;
    }

    .contact-card-1,
    .contact-card-2,
    .contact-card-3 {
        margin-left: 0;
    }

    .directions {
        flex-direction: column;
    }

    .visit-content {
        margin-left: 0;
        padding: 40px;
    }

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

    .additional-links {
        flex-direction: column;
    }

    .legal-content {
        padding: 40px;
    }

    .cookie-row {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-name,
    .cookie-duration {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .nav-main {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s;
        z-index: 999;
    }

    .nav-main.active {
        left: 0;
    }

    .nav-main a {
        padding: 12px 0;
        border-bottom: 1px solid #f0ebe5;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .team-header-offset {
        margin-left: 0;
    }

    .footer-column {
        flex: 0 0 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

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