* {
    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: #FAFAFA;
}

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

.cookie-banner.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

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

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #D4A574;
    color: #FFF;
}

.btn-accept:hover {
    background-color: #C09563;
}

.btn-reject {
    background-color: #555;
    color: #FFF;
}

.btn-reject:hover {
    background-color: #666;
}

.nav-asymmetric {
    background-color: #FFF;
    padding: 20px 40px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2C2C2C;
}

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

.nav-links a {
    color: #555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 6px 12px;
    border: 1px solid #CCC;
    border-radius: 4px;
}

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

.hero-visual {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, rgba(250,250,250,1) 0%, rgba(250,250,250,0.8) 40%, rgba(250,250,250,0) 100%);
}

.hero-text-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin-left: 80px;
    padding: 60px 0;
}

.hero-text-offset h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2C2C2C;
}

.hero-text-offset p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8B7355;
    color: #FFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #6B5D4F;
}

.intro-offset {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.intro-left {
    flex: 1;
}

.intro-left img {
    width: 100%;
    border-radius: 8px;
}

.intro-right {
    flex: 1;
}

.intro-right h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.intro-right p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

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

.section-header-right {
    text-align: right;
    margin-bottom: 60px;
}

.section-header-right h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.section-header-right p {
    font-size: 18px;
    color: #555;
}

.cards-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #FFF;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
}

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

.card-offset-1 { margin-top: 0; }
.card-offset-2 { margin-top: 40px; }
.card-offset-3 { margin-top: 20px; }
.card-offset-4 { margin-top: 60px; }
.card-offset-5 { margin-top: 10px; }
.card-offset-6 { margin-top: 50px; }

.card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.card-content {
    padding: 24px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.card-content p {
    margin-bottom: 16px;
    color: #555;
    font-size: 15px;
}

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

.btn-select {
    width: 100%;
    padding: 12px;
    background-color: #D4A574;
    color: #FFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select:hover {
    background-color: #C09563;
}

.form-section-diagonal {
    display: flex;
    max-width: 1400px;
    margin: 120px auto;
    gap: 0;
}

.form-container {
    flex: 1;
    background-color: #FFF;
    padding: 60px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.form-header p {
    margin-bottom: 32px;
    color: #555;
    font-size: 16px;
}

.contact-form {
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #DDD;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 14px;
    background-color: #8B7355;
    color: #FFF;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #6B5D4F;
}

.form-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

.footer-minimal {
    background-color: #2C2C2C;
    color: #CCC;
    padding: 60px 40px 20px;
}

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

.footer-block h4 {
    color: #FFF;
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-block p {
    font-size: 14px;
}

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

.footer-block ul li {
    margin-bottom: 8px;
}

.footer-block ul li a {
    color: #CCC;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-block ul li a:hover {
    color: #D4A574;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 0;
    border-top: 1px solid #444;
    font-size: 13px;
    line-height: 1.6;
}

.footer-copyright {
    max-width: 1400px;
    margin: 20px auto 0;
    text-align: center;
    font-size: 13px;
}

.page-header-offset {
    max-width: 1400px;
    margin: 60px auto 40px;
    padding: 0 40px;
}

.page-header-offset h1 {
    font-size: 48px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.page-header-offset p {
    font-size: 18px;
    color: #555;
}

.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

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

.story-image-left img {
    width: 100%;
    border-radius: 8px;
}

.story-text-right {
    flex: 1;
    padding-right: 40px;
}

.story-text-right h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.story-text-right p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

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

.values-header-center {
    text-align: center;
    margin-bottom: 60px;
}

.values-header-center h2 {
    font-size: 40px;
    color: #2C2C2C;
}

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

.value-block {
    flex: 1 1 calc(33.333% - 27px);
    background-color: #FFF;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    min-width: 250px;
}

.value-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2C2C2C;
}

.value-block p {
    font-size: 15px;
    color: #555;
}

.block-1 { margin-top: 0; }
.block-2 { margin-top: 30px; }
.block-3 { margin-top: 15px; }

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

.details-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.detail-image {
    flex: 1;
}

.detail-image img {
    width: 100%;
    border-radius: 8px;
}

.detail-text {
    flex: 1;
}

.detail-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.detail-text p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

.team-intro {
    max-width: 900px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.team-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.team-intro p {
    font-size: 16px;
    color: #555;
}

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

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

.service-left {
    flex-direction: row;
}

.service-right {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.service-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

.service-pricing {
    margin: 24px 0;
    padding: 20px;
    background-color: #F5F5F5;
    border-radius: 4px;
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

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

.service-visual {
    flex: 1;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
}

.cta-bottom {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.cta-bottom h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.cta-bottom p {
    font-size: 16px;
    margin-bottom: 32px;
    color: #555;
}

.btn-cta-large {
    display: inline-block;
    padding: 16px 48px;
    background-color: #8B7355;
    color: #FFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.btn-cta-large:hover {
    background-color: #6B5D4F;
}

.contact-layout {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
    padding: 40px;
}

.contact-info-block h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2C2C2C;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #8B7355;
    font-weight: 600;
}

.info-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}

.info-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #F5F5F5;
    border-left: 4px solid #8B7355;
}

.info-note p {
    font-size: 14px;
    color: #555;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
}

.location-section {
    max-width: 1000px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #FFF;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2C2C2C;
}

.location-section p {
    font-size: 16px;
    color: #555;
}

.thanks-section {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 1;
    padding: 60px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #2C2C2C;
}

.thanks-content p {
    margin-bottom: 16px;
    font-size: 16px;
    color: #555;
}

.service-reference {
    font-weight: 600;
    color: #8B7355;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #8B7355;
    color: #FFF;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6B5D4F;
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #FFF;
    color: #8B7355;
    text-decoration: none;
    border: 2px solid #8B7355;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8B7355;
    color: #FFF;
}

.thanks-visual {
    flex: 1;
}

.thanks-visual img {
    width: 100%;
    border-radius: 8px;
}

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

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.legal-page > p {
    font-size: 14px;
    color: #888;
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2C2C2C;
}

.legal-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 20px;
    color: #333;
}

.legal-section p {
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-section ul {
    margin-left: 24px;
    margin-bottom: 12px;
}

.legal-section ul li {
    margin-bottom: 8px;
    font-size: 15px;
    color: #555;
}

.legal-section a {
    color: #8B7355;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-visual {
        position: relative;
        width: 100%;
        height: 300px;
    }

    .hero-text-offset {
        margin-left: 0;
        padding: 40px 20px;
    }

    .intro-offset,
    .about-story-split,
    .details-layout,
    .service-detail,
    .contact-layout,
    .thanks-section,
    .form-section-diagonal {
        flex-direction: column;
    }

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

    .service-card {
        margin-top: 0 !important;
    }

    .nav-links {
        gap: 15px;
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
}