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

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

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-asymmetric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
}

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: #8b4513;
    letter-spacing: -0.5px;
}

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

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

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

.hero-offset {
    display: flex;
    min-height: 85vh;
    padding: 60px 40px;
    background-color: #faf8f5;
    position: relative;
}

.hero-content-left {
    flex: 1;
    padding: 80px 60px 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 550px;
}

.hero-content-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content-left p {
    font-size: 18px;
    color: #5a6c7d;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    margin-top: -40px;
    margin-left: -60px;
    background-color: #d4a574;
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background-color: #8b4513;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-diagonal {
    padding: 100px 40px 100px 120px;
    background: linear-gradient(135deg, #ffffff 0%, #f5f1ed 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.intro-text-wide {
    transform: skewY(2deg);
    max-width: 900px;
    margin: 0 auto;
}

.intro-text-wide h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
    font-weight: 600;
}

.intro-text-wide p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.8;
}

.problem-section-shift {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    background-color: #ffffff;
    align-items: center;
}

.problem-card-float {
    flex: 1;
    padding: 50px;
    background-color: #faf8f5;
    border-left: 6px solid #8b4513;
    margin-top: -40px;
}

.problem-card-float h3 {
    font-size: 28px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.problem-card-float ul {
    list-style: none;
    padding-left: 0;
}

.problem-card-float li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #5a6c7d;
}

.problem-card-float li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.problem-image-aside {
    flex: 1;
    background-color: #c9a578;
    margin-bottom: -60px;
}

.problem-image-aside img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.services-irregular {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.services-irregular h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 70px;
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
}

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

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

.service-card.offset-3 {
    flex: 1 1 calc(45% - 20px);
    margin-top: -30px;
}

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

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
    background-color: #d4a574;
}

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 15px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 22px;
    color: #8b4513;
    font-weight: 700;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

.select-service:hover {
    background-color: #34495e;
}

.trust-block-slanted {
    display: flex;
    gap: 80px;
    padding: 120px 60px;
    background: linear-gradient(170deg, #8b4513 0%, #a0522d 100%);
    color: #ffffff;
    transform: skewY(-1.5deg);
    margin: 100px 0;
    align-items: center;
}

.trust-content {
    flex: 1;
    transform: skewY(1.5deg);
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #ffffff;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #f5f1ed;
}

.trust-image {
    flex: 1;
    transform: skewY(1.5deg);
    background-color: #d4a574;
}

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 450px;
}

.process-overlap {
    padding: 100px 40px;
    background-color: #ffffff;
    position: relative;
}

.process-overlap h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
}

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

.step {
    flex: 1 1 calc(50% - 25px);
    padding: 40px;
    background-color: #faf8f5;
    border-radius: 8px;
    position: relative;
    min-width: 300px;
}

.step:nth-child(odd) {
    margin-top: 0;
}

.step:nth-child(even) {
    margin-top: 40px;
}

.step h4 {
    font-size: 22px;
    color: #8b4513;
    margin-bottom: 15px;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.form-section-diagonal {
    padding: 120px 40px;
    background: linear-gradient(160deg, #f5f1ed 0%, #faf8f5 100%);
    transform: skewY(-1deg);
    margin: 80px 0;
}

.form-container {
    transform: skewY(1deg);
    max-width: 700px;
    margin: 0 auto;
    padding: 50px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.form-container p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

.selected-service-display {
    padding: 20px;
    background-color: #faf8f5;
    border-left: 4px solid #8b4513;
    margin-bottom: 30px;
}

.selected-service-display p {
    margin-bottom: 10px;
    font-size: 16px;
    color: #2c3e50;
}

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

form input,
form textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    padding: 16px 40px;
    background-color: #8b4513;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
    width: 100%;
}

.cta-submit:hover {
    background-color: #a0522d;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.disclaimer-text {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 13px;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
    font-style: italic;
}

.footer-asymmetric {
    display: flex;
    gap: 60px;
    padding: 80px 40px 40px 40px;
    background-color: #2c3e50;
    color: #ecf0f1;
}

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

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #ffffff;
}

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

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

.footer-column a:hover {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #ffffff;
    padding: 25px 40px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

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

.cookie-accept {
    background-color: #8b4513;
    color: #ffffff;
}

.cookie-accept:hover {
    opacity: 0.9;
}

.cookie-reject {
    background-color: transparent;
    border: 2px solid #ffffff;
    color: #ffffff;
}

.cookie-reject:hover {
    opacity: 0.8;
}

.about-hero-diagonal {
    padding: 100px 40px;
    background: linear-gradient(155deg, #8b4513 0%, #a0522d 100%);
    color: #ffffff;
    transform: skewY(-2deg);
}

.about-hero-content {
    transform: skewY(2deg);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #ffffff;
}

.about-hero-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #f5f1ed;
}

.about-story-offset {
    display: flex;
    gap: 70px;
    padding: 100px 40px;
    background-color: #ffffff;
    align-items: center;
}

.story-image-left {
    flex: 1;
    background-color: #d4a574;
    margin-top: -50px;
}

.story-image-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 500px;
}

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

.story-text-right h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.story-text-right p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.values-asymmetric {
    padding: 120px 40px;
    background-color: #faf8f5;
}

.values-asymmetric h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 70px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1 1 calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    min-width: 300px;
}

.value-card.value-1 {
    margin-top: 0;
}

.value-card.value-2 {
    margin-top: 50px;
}

.value-card.value-3 {
    flex: 1 1 100%;
    margin-top: -20px;
}

.value-card h3 {
    font-size: 24px;
    color: #8b4513;
    margin-bottom: 15px;
}

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

.team-section-slanted {
    display: flex;
    gap: 70px;
    padding: 100px 60px;
    background: linear-gradient(165deg, #2c3e50 0%, #34495e 100%);
    color: #ffffff;
    transform: skewY(-1.5deg);
    margin: 80px 0;
    align-items: center;
}

.team-content {
    flex: 1;
    transform: skewY(1.5deg);
}

.team-content h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #ffffff;
}

.team-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #ecf0f1;
}

.team-image {
    flex: 1;
    transform: skewY(1.5deg);
    background-color: #c9a578;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 400px;
}

.approach-cards {
    padding: 100px 40px;
    background-color: #ffffff;
}

.approach-cards h2 {
    font-size: 42px;
    text-align: center;
    color: #2c3e50;
    margin-bottom: 60px;
}

.approach-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.approach-item {
    padding: 35px 45px;
    background-color: #faf8f5;
    border-left: 5px solid #8b4513;
}

.approach-item h4 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.7;
}

.services-hero {
    padding: 100px 40px 80px 40px;
    background-color: #faf8f5;
    text-align: center;
}

.services-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 25px;
}

.services-hero p {
    font-size: 18px;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.service-detail-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.service-detail-section-alt {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    align-items: center;
}

.service-detail-image {
    flex: 1;
    background-color: #d4a574;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    min-height: 450px;
}

.service-detail-content {
    flex: 1;
    padding: 30px;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
}

.service-price-large {
    font-size: 28px;
    color: #8b4513;
    font-weight: 700;
    margin-bottom: 25px;
}

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

.service-detail-content h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.service-detail-content li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    font-size: 15px;
    color: #5a6c7d;
}

.service-detail-content li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #8b4513;
    font-weight: bold;
}

.cta-services {
    padding: 100px 40px;
    background: linear-gradient(160deg, #8b4513 0%, #a0522d 100%);
    text-align: center;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #ffffff;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #f5f1ed;
}

.contact-hero {
    padding: 80px 40px;
    background-color: #faf8f5;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 20px;
}

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

.contact-info-offset {
    display: flex;
    gap: 60px;
    padding: 80px 40px;
    background-color: #ffffff;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    flex: 1;
    padding: 50px;
    background-color: #faf8f5;
    border-radius: 8px;
}

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

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

.contact-card h3 {
    font-size: 26px;
    color: #8b4513;
    margin-bottom: 25px;
}

.contact-card p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 12px;
}

.contact-card .email-display {
    background-color: #ffffff;
    padding: 12px 18px;
    border-radius: 4px;
    font-family: monospace;
    color: #2c3e50;
    display: inline-block;
    margin-top: 10px;
}

.thanks-hero {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 100px 40px;
    background: linear-gradient(155deg, #8b4513 0%, #a0522d 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
    color: #ffffff;
}

.thanks-hero p {
    font-size: 19px;
    max-width: 700px;
    margin-bottom: 20px;
    color: #f5f1ed;
    line-height: 1.7;
}

.thanks-service-info {
    margin: 40px 0;
    padding: 30px 40px;
    background-color: rgba(255,255,255,0.1);
    border-radius: 8px;
}

.thanks-service-info p {
    font-size: 17px;
    margin-bottom: 10px;
}

.thanks-cta {
    margin-top: 40px;
}

.legal-page {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 30px;
}

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

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

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

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

.legal-content li {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

@media (max-width: 968px) {
    .hero-offset {
        flex-direction: column;
    }

    .hero-image-overlap {
        margin-top: 40px;
        margin-left: 0;
        min-height: 400px;
    }

    .problem-section-shift {
        flex-direction: column;
    }

    .trust-block-slanted {
        flex-direction: column;
    }

    .footer-asymmetric {
        flex-direction: column;
    }

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

    .nav-links {
        flex-wrap: wrap;
    }

    .about-story-offset {
        flex-direction: column;
    }

    .team-section-slanted {
        flex-direction: column;
    }

    .service-detail-card {
        flex-direction: column;
    }

    .contact-info-offset {
        flex-direction: column;
    }
}