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

:root {
    --primary: #2c3e50;
    --secondary: #8b7355;
    --accent: #c9a97e;
    --light: #f4f1ed;
    --dark: #1a1a1a;
    --text: #333;
    --bg-fallback: #e8e4df;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--light);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s;
}

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

.cookie-btn.reject {
    background: transparent;
    color: white;
    border: 1px solid white;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.main-nav {
    background: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary);
}

.ad-disclosure {
    font-size: 11px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text);
    transition: color 0.3s;
    font-weight: 500;
}

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

.hero-offset {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--bg-fallback);
}

.hero-image-block {
    position: absolute;
    right: 0;
    top: 0;
    width: 65%;
    height: 100%;
    background: var(--bg-fallback);
}

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

.hero-text-overlay {
    position: relative;
    z-index: 10;
    max-width: 600px;
    padding: 60px;
    margin-left: 80px;
    background: white;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.hero-text-overlay h1 {
    font-size: 42px;
    line-height: 1.2;
    color: var(--primary);
    margin-bottom: 20px;
}

.hero-text-overlay p {
    font-size: 18px;
    color: var(--secondary);
}

.intro-asymmetric {
    padding: 120px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.text-block-offset {
    flex: 1;
    padding-left: 80px;
}

.text-block-offset h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 25px;
    line-height: 1.3;
}

.text-block-offset p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.image-block-float {
    flex: 1;
    background: var(--bg-fallback);
}

.image-block-float img {
    width: 100%;
    height: 500px;
}

.services-preview-scattered {
    padding: 100px 40px;
    background: #fafafa;
}

.services-preview-scattered h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
}

.services-grid-offset {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 30px;
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    align-items: center;
}

.service-card.card-left {
    flex-direction: row;
    margin-left: 0;
}

.service-card.card-right {
    flex-direction: row-reverse;
    margin-left: auto;
    max-width: 900px;
}

.service-card.card-center {
    flex-direction: row;
    max-width: 1000px;
    margin: 0 auto;
}

.service-card img {
    width: 320px;
    height: 240px;
    border-radius: 6px;
    flex-shrink: 0;
    background: var(--bg-fallback);
}

.service-card h3 {
    font-size: 26px;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.price-tag {
    font-size: 22px;
    color: var(--secondary);
    font-weight: bold;
}

.cta-inline {
    text-align: center;
    margin-top: 50px;
}

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

.btn-primary:hover {
    background: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.visual-break {
    position: relative;
    height: 500px;
    margin: 80px 0;
    background: var(--bg-fallback);
}

.image-wide {
    width: 100%;
    height: 100%;
}

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

.quote-overlay {
    position: absolute;
    bottom: 40px;
    left: 60px;
    max-width: 500px;
    background: rgba(255,255,255,0.95);
    padding: 40px;
    border-left: 4px solid var(--secondary);
}

.quote-overlay blockquote {
    font-size: 22px;
    font-style: italic;
    color: var(--primary);
    line-height: 1.5;
}

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

.approach-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    color: var(--primary);
    margin-bottom: 30px;
}

.approach-text p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.approach-list {
    list-style: none;
    padding-left: 0;
}

.approach-list li {
    padding: 15px 0;
    padding-left: 30px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    font-size: 16px;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary);
    font-weight: bold;
}

.approach-visual {
    flex: 1;
    background: var(--bg-fallback);
}

.approach-visual img {
    width: 100%;
    height: 600px;
}

.form-section {
    padding: 100px 40px;
    background: linear-gradient(135deg, #f5f5f5 0%, #fafafa 100%);
}

.form-container-offset {
    max-width: 700px;
    margin: 0 auto;
    margin-left: 100px;
    background: white;
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

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

.form-container-offset > p {
    font-size: 16px;
    color: #666;
    margin-bottom: 35px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

.btn-submit {
    padding: 15px 40px;
    background: var(--secondary);
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

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

.additional-services h2 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 50px;
    text-align: center;
}

.services-list-inline {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-item {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-item h3 {
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 15px;
}

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

.price-inline {
    font-size: 20px;
    color: var(--secondary);
    font-weight: bold;
}

.main-footer {
    background: var(--dark);
    color: white;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent);
}

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

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: #888;
    font-size: 13px;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    padding: 60px;
    text-align: center;
    background: white;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.thanks-container h1 {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-container p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-container .btn-primary {
    margin-top: 30px;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.page-content h2 {
    font-size: 28px;
    color: var(--primary);
    margin: 40px 0 20px;
}

.page-content h3 {
    font-size: 22px;
    color: var(--secondary);
    margin: 30px 0 15px;
}

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

.page-content ul, .page-content ol {
    margin: 20px 0 20px 30px;
    line-height: 1.8;
}

.page-content li {
    margin-bottom: 10px;
    color: #555;
}

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

.contact-grid {
    display: flex;
    gap: 60px;
    margin-top: 40px;
}

.contact-details {
    flex: 1;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 10px;
}

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

.contact-visual {
    flex: 1;
    background: var(--bg-fallback);
}

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

@media (max-width: 968px) {
    .hero-text-overlay {
        margin-left: 20px;
        padding: 40px;
    }

    .intro-asymmetric, .approach-grid, .contact-grid {
        flex-direction: column;
    }

    .text-block-offset {
        padding-left: 0;
    }

    .service-card {
        flex-direction: column !important;
        max-width: 100% !important;
    }

    .service-card img {
        width: 100%;
    }

    .form-container-offset {
        margin-left: 0;
    }

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

@media (max-width: 640px) {
    .hero-offset {
        height: auto;
        min-height: 500px;
    }

    .hero-image-block {
        width: 100%;
    }

    .hero-text-overlay {
        position: relative;
        margin: 20px;
    }

    .hero-text-overlay h1 {
        font-size: 28px;
    }

    .nav-container {
        padding: 15px 20px;
    }

    .form-container-offset {
        padding: 30px 20px;
    }
}