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

:root {
    --primary-color: #2d3142;
    --secondary-color: #4f5d75;
    --accent-color: #bfc0c0;
    --highlight-color: #ef8354;
    --bg-light: #f8f9fa;
    --text-dark: #1a1a1a;
    --text-muted: #6c757d;
    --white: #ffffff;
    --border-radius: 8px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: var(--bg-light);
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    border-bottom: 1px solid var(--accent-color);
}

.floating-nav {
    position: fixed;
    top: 50px;
    left: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background-color: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 100px 20px 80px 320px;
    overflow: hidden;
}

.hero-content-offset {
    max-width: 550px;
    z-index: 2;
    position: relative;
    margin-top: -60px;
}

.hero-content-offset h1 {
    font-size: 56px;
    line-height: 1.1;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-content-offset p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%) rotate(3deg);
    width: 700px;
    height: 550px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: var(--accent-color);
}

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

.cta-primary {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--white);
    padding: 16px 38px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d96a3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(239, 131, 84, 0.3);
}

.intro-diagonal {
    display: flex;
    align-items: center;
    padding: 120px 80px 100px 320px;
    gap: 80px;
    background-color: var(--bg-light);
    position: relative;
}

.intro-diagonal::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
    background-color: var(--bg-light);
    transform: skewY(-2deg);
}

.intro-block-left {
    flex: 1;
    max-width: 500px;
}

.intro-block-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}

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

.intro-visual-right {
    flex: 1;
    max-width: 450px;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--accent-color);
}

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

.services-scattered {
    padding: 100px 80px 100px 320px;
}

.section-header-irregular {
    margin-bottom: 60px;
    margin-left: 120px;
}

.section-header-irregular h2 {
    font-size: 42px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    width: calc(33.333% - 27px);
    display: flex;
    flex-direction: column;
    background-color: var(--accent-color);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin: 20px 25px 12px;
    font-weight: 600;
}

.service-card p {
    font-size: 15px;
    color: var(--text-muted);
    margin: 0 25px 18px;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: var(--highlight-color);
    margin: 0 25px 15px;
}

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

.select-service-btn:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.offset-1 {
    margin-top: 20px;
}

.offset-2 {
    margin-top: -40px;
}

.offset-3 {
    margin-top: 60px;
}

.offset-4 {
    margin-top: -20px;
}

.offset-5 {
    margin-top: 40px;
}

.form-overlap {
    padding: 100px 80px 100px 320px;
    background-color: var(--bg-light);
    position: relative;
}

.form-container {
    max-width: 600px;
    margin-left: 150px;
    background-color: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    transform: rotate(-1deg);
}

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

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

.form-row label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 15px;
}

.form-row input,
.form-row textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--accent-color);
    border-radius: var(--border-radius);
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus {
    outline: none;
    border-color: var(--highlight-color);
}

.submit-btn {
    background-color: var(--highlight-color);
    color: var(--white);
    border: none;
    padding: 16px 40px;
    border-radius: var(--border-radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

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

#selected-service-display {
    margin-top: 20px;
    padding: 15px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    font-size: 15px;
    color: var(--primary-color);
    font-weight: 500;
}

.trust-block-irregular {
    padding: 120px 80px 100px 320px;
    display: flex;
    align-items: center;
    gap: 100px;
}

.trust-content-left {
    flex: 1;
    max-width: 550px;
}

.trust-content-left h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
}

.trust-content-left p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.trust-image-offset {
    flex: 1;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--accent-color);
}

.trust-image-offset img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-split {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 60px 80px 30px 320px;
}

.footer-main {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    color: var(--accent-color);
    line-height: 1.6;
}

.footer-col a {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--highlight-color);
}

.footer-bottom {
    border-top: 1px solid var(--secondary-color);
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: var(--accent-color);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
}

.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 {
    margin: 0;
    font-size: 14px;
    color: var(--text-dark);
}

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: var(--highlight-color);
    color: var(--white);
}

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

.cookie-btn.reject {
    background-color: var(--accent-color);
    color: var(--text-dark);
}

.cookie-btn.reject:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.about-hero-offset {
    padding: 140px 80px 80px 320px;
    background-color: var(--bg-light);
}

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

.about-header-irregular h1 {
    font-size: 52px;
    color: var(--primary-color);
    font-weight: 800;
    line-height: 1.1;
}

.about-image-diagonal {
    max-width: 900px;
    margin-left: auto;
    margin-right: 100px;
    border-radius: 20px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    background-color: var(--accent-color);
}

.about-image-diagonal img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-asymmetric {
    padding: 120px 80px 100px 320px;
    display: flex;
    gap: 90px;
    align-items: center;
}

.story-block-left {
    flex: 1;
    max-width: 550px;
}

.story-block-left h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.story-block-left p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-visual-overlap {
    flex: 1;
    max-width: 480px;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(3deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--accent-color);
}

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

.values-scattered {
    padding: 100px 80px 100px 320px;
    background-color: var(--bg-light);
}

.values-scattered h2 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 60px;
    margin-left: 100px;
    font-weight: 700;
}

.values-grid-irregular {
    display: flex;
    gap: 50px;
    justify-content: flex-start;
}

.value-card {
    background-color: var(--white);
    padding: 40px 35px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    flex: 1;
    max-width: 350px;
}

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

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

.position-1 {
    margin-top: 30px;
}

.position-2 {
    margin-top: -30px;
}

.position-3 {
    margin-top: 50px;
}

.workshop-offset {
    padding: 120px 80px 100px 320px;
    display: flex;
    gap: 90px;
    align-items: center;
}

.workshop-image-left {
    flex: 1;
    max-width: 480px;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    background-color: var(--accent-color);
}

.workshop-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.workshop-content-right {
    flex: 1;
    max-width: 550px;
}

.workshop-content-right h2 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.workshop-content-right p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-diagonal {
    padding: 80px 80px 80px 320px;
    background-color: var(--bg-light);
    text-align: center;
}

.cta-diagonal h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-diagonal p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

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

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

.services-hero-diagonal {
    padding: 140px 80px 80px 320px;
    background-color: var(--bg-light);
    max-width: 800px;
}

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

.services-hero-diagonal p {
    font-size: 19px;
    color: var(--text-muted);
    line-height: 1.6;
}

.services-detailed {
    padding: 80px 80px 100px 320px;
}

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

.service-detail-image {
    flex: 1;
    max-width: 450px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    background-color: var(--accent-color);
}

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

.service-detail-content {
    flex: 1;
    max-width: 550px;
}

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

.service-detail-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-detail-content ul {
    list-style: none;
    margin-bottom: 20px;
}

.service-detail-content ul li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 10px 0;
    border-bottom: 1px solid var(--accent-color);
    line-height: 1.6;
}

.note {
    font-size: 14px;
    color: var(--text-muted);
    font-style: italic;
}

.offset-a {
    margin-left: 60px;
}

.offset-b {
    margin-right: 60px;
}

.offset-c {
    margin-left: 100px;
}

.offset-d {
    margin-right: 80px;
}

.offset-e {
    margin-left: 40px;
}

.pricing-note-offset {
    padding: 80px 80px 100px 420px;
    background-color: var(--bg-light);
    max-width: 900px;
}

.pricing-note-offset h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.pricing-note-offset p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.cta-tertiary {
    display: inline-block;
    background-color: var(--highlight-color);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.cta-tertiary:hover {
    background-color: #d96a3a;
    transform: translateY(-2px);
}

.contact-hero-irregular {
    padding: 140px 80px 60px 320px;
    background-color: var(--bg-light);
}

.contact-hero-irregular h1 {
    font-size: 52px;
    color: var(--primary-color);
    font-weight: 800;
    margin-left: 80px;
}

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

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

.contact-block {
    margin-bottom: 45px;
}

.contact-block h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

.email-display {
    color: var(--text-dark);
    font-weight: 500;
}

.note-small {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 15px;
    font-style: italic;
}

.contact-visual-diagonal {
    flex: 1;
    max-width: 500px;
    border-radius: 15px;
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    margin-top: 60px;
    background-color: var(--accent-color);
}

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

.directions-offset {
    padding: 80px 80px 100px 420px;
    background-color: var(--bg-light);
    max-width: 900px;
}

.directions-offset h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.directions-content p {
    font-size: 17px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

.directions-content ul {
    list-style: none;
    margin-top: 25px;
}

.directions-content ul li {
    font-size: 16px;
    color: var(--text-dark);
    padding: 12px 0;
    border-bottom: 1px solid var(--accent-color);
}

.cta-contact-irregular {
    padding: 80px 80px 100px 320px;
    text-align: center;
}

.cta-contact-irregular h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-contact-irregular p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 35px;
}

.thanks-content-centered {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 80px;
}

.thanks-message {
    max-width: 700px;
    text-align: center;
    background-color: var(--white);
    padding: 60px 50px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.thanks-message h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-weight: 700;
}

.thanks-message p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 25px;
    line-height: 1.7;
}

.service-confirmed {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius);
    font-size: 17px;
    color: var(--primary-color);
    margin: 25px 0;
}

.next-steps {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
}

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

.legal-content {
    padding: 100px 80px 80px 320px;
    max-width: 1000px;
}

.legal-content h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

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

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

.legal-section h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 12px;
    margin-top: 20px;
    font-weight: 600;
}

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

.legal-section ul {
    list-style: disc;
    margin-left: 30px;
    margin-bottom: 15px;
}

.legal-section ul li {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 50px;
    font-style: italic;
}

@media (max-width: 1024px) {
    .floating-nav {
        position: static;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
        top: auto;
        left: auto;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-asymmetric,
    .intro-diagonal,
    .services-scattered,
    .form-overlap,
    .trust-block-irregular,
    .footer-split,
    .about-hero-offset,
    .story-asymmetric,
    .values-scattered,
    .workshop-offset,
    .cta-diagonal,
    .services-hero-diagonal,
    .services-detailed,
    .pricing-note-offset,
    .contact-hero-irregular,
    .contact-layout-asymmetric,
    .directions-offset,
    .cta-contact-irregular,
    .legal-content {
        padding-left: 40px;
        padding-right: 40px;
    }

    .service-card {
        width: calc(50% - 20px);
    }

    .hero-image-overlap {
        width: 500px;
        height: 400px;
    }

    .intro-diagonal,
    .story-asymmetric,
    .workshop-offset,
    .trust-block-irregular,
    .contact-layout-asymmetric,
    .service-detail-block {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 40px;
    }
}

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

    .service-card {
        width: 100%;
    }

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

    .section-header-irregular,
    .about-header-irregular {
        margin-left: 0;
    }

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

    .cookie-buttons {
        justify-content: center;
    }
}