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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #fafafa;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: white;
    padding: 20px;
    z-index: 1000;
    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: 300px;
    margin: 0;
}

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

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

.cookie-btn.accept {
    background-color: #8b6f47;
    color: white;
}

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

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

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

.header {
    background-color: white;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #8b6f47;
}

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

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

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

.nav a:hover {
    color: #8b6f47;
}

.hero {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 0 20px;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-text p {
    font-size: 22px;
    font-weight: 300;
}

.story-intro {
    padding: 80px 20px;
    background-color: white;
}

.lead-text {
    font-size: 24px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #444;
}

.problem-section {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

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

.split-image {
    flex: 1;
    background-color: #e8e3dc;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.split-content p {
    margin-bottom: 16px;
    color: #444;
}

.insight-section {
    padding: 80px 20px;
    background-color: white;
}

.insight-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    text-align: center;
}

.insight-section p {
    margin-bottom: 20px;
    font-size: 18px;
}

.insight-section a {
    color: #8b6f47;
    text-decoration: none;
}

.insight-section a:hover {
    text-decoration: underline;
}

.our-approach {
    padding: 80px 20px;
    background-color: #fafafa;
}

.our-approach h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

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

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.approach-card img {
    width: 100%;
    height: auto;
    display: block;
}

.approach-card h3 {
    padding: 20px 20px 10px;
    font-size: 24px;
    color: #2c2c2c;
}

.approach-card p {
    padding: 0 20px 20px;
    color: #555;
}

.testimonials {
    padding: 80px 20px;
    background-color: #8b6f47;
    color: white;
}

.testimonials h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 40px;
    color: white;
}

.testimonial {
    margin-bottom: 40px;
    background-color: rgba(255,255,255,0.1);
    padding: 30px;
    border-radius: 8px;
}

.testimonial p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.9;
}

.cta-section {
    padding: 80px 20px;
    background-color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #555;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #8b6f47;
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #6f5838;
}

.cta-button-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #8b6f47;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #8b6f47;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #8b6f47;
    color: white;
}

.services-preview {
    padding: 80px 20px;
    background-color: #f5f5f5;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    color: #555;
}

.services-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid #8b6f47;
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background-color: #8b6f47;
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
}

.service-card h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.service-card p {
    margin-bottom: 20px;
    color: #555;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #444;
}

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

.price {
    font-size: 32px;
    font-weight: 700;
    color: #8b6f47;
    margin-bottom: 20px;
}

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

.select-service-btn:hover {
    background-color: #6f5838;
}

.order-form-section {
    padding: 80px 20px;
    background-color: white;
}

.order-form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    text-align: center;
}

.order-form-section > .container-narrow > p {
    text-align: center;
    margin-bottom: 40px;
    color: #555;
}

.order-form {
    max-width: 600px;
    margin: 0 auto;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #f5f5f5;
}

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

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

.final-cta {
    padding: 60px 20px;
    background-color: #fafafa;
    text-align: center;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.final-cta a {
    color: #8b6f47;
    text-decoration: none;
    font-weight: 600;
}

.final-cta a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 40px 20px;
    background-color: #f0f0f0;
}

.disclaimer {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

.footer {
    background-color: #2c2c2c;
    color: white;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    margin-bottom: 16px;
    font-size: 18px;
}

.footer-col p {
    color: #ccc;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a:hover {
    color: white;
}

.references {
    margin-bottom: 30px;
    padding-top: 30px;
    border-top: 1px solid #444;
}

.references h4 {
    margin-bottom: 16px;
    font-size: 16px;
}

.references ol {
    padding-left: 20px;
}

.references li {
    margin-bottom: 8px;
    font-size: 14px;
}

.references a {
    color: #8b6f47;
    text-decoration: none;
}

.references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 20px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 14px;
}

.page-hero {
    background-color: #8b6f47;
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
}

.about-content {
    padding: 60px 20px;
    background-color: white;
}

.about-content img {
    width: 100%;
    height: auto;
    margin: 40px 0;
    border-radius: 8px;
}

.about-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.about-content p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.7;
    color: #444;
}

.cta-inline {
    margin-top: 60px;
    padding: 40px;
    background-color: #f5f5f5;
    border-radius: 8px;
    text-align: center;
}

.cta-inline h3 {
    font-size: 28px;
    margin-bottom: 12px;
}

.cta-inline p {
    margin-bottom: 24px;
}

.services-detailed {
    padding: 60px 20px;
    background-color: white;
}

.services-detailed .service-card img {
    width: 100%;
    height: auto;
    border-radius: 8px 8px 0 0;
    margin: -30px -30px 20px -30px;
    width: calc(100% + 60px);
}

.info-section {
    padding: 60px 20px;
    background-color: #fafafa;
}

.info-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
}

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

.faq-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c2c2c;
}

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

.contact-content {
    padding: 60px 20px;
    background-color: white;
}

.contact-layout {
    display: flex;
    gap: 60px;
}

.contact-main {
    flex: 2;
}

.contact-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-main > p {
    margin-bottom: 40px;
    font-size: 18px;
    color: #555;
}

.contact-info-block {
    margin-bottom: 40px;
}

.contact-info-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #8b6f47;
}

.contact-info-block p {
    margin-bottom: 12px;
    line-height: 1.6;
    color: #444;
}

.contact-info-block .note {
    font-size: 14px;
    color: #666;
    font-style: italic;
}

.contact-sidebar {
    flex: 1;
}

.sidebar-card {
    background-color: #f5f5f5;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.sidebar-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

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

.simple-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 16px;
}

.simple-list li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #444;
}

.simple-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #8b6f47;
}

.sidebar-btn {
    display: block;
    padding: 12px 20px;
    background-color: #8b6f47;
    color: white;
    text-decoration: none;
    text-align: center;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.sidebar-btn:hover {
    background-color: #6f5838;
}

.map-section {
    padding: 60px 20px;
    background-color: #fafafa;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
    text-align: center;
}

.map-section > .container > p {
    text-align: center;
    margin-bottom: 30px;
    color: #555;
}

.map-placeholder {
    background-color: #e0e0e0;
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder p {
    font-size: 18px;
    color: #666;
}

.thanks-section {
    padding: 100px 20px;
    background-color: white;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #8b6f47;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 50px;
    color: #555;
}

.thanks-details {
    max-width: 700px;
    margin: 0 auto 50px;
    text-align: left;
}

.service-confirmation {
    background-color: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.service-confirmation strong {
    color: #8b6f47;
}

.thanks-details h2 {
    font-size: 28px;
    margin-bottom: 20px;
    text-align: center;
}

.thanks-steps {
    padding-left: 20px;
}

.thanks-steps li {
    margin-bottom: 16px;
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.thanks-info {
    margin-bottom: 40px;
}

.thanks-info h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.thanks-info p {
    font-size: 16px;
    color: #555;
}

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

.legal-page {
    padding: 60px 20px;
    background-color: white;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.legal-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c2c2c;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #444;
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.7;
    color: #444;
}

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

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
    color: #444;
}

.legal-page a {
    color: #8b6f47;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #e0e0e0;
}

.cookies-table th {
    background-color: #f5f5f5;
    font-weight: 600;
    color: #2c2c2c;
}

.cookies-table td {
    color: #444;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 18px;
    }

    .split-layout {
        flex-direction: column;
    }

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

    .services-layout {
        flex-direction: column;
    }

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

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

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

    .contact-layout {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}