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

:root {
    --color-primary: #2c5f4f;
    --color-primary-dark: #1d4036;
    --color-primary-light: #3a7963;
    --color-secondary: #d4a574;
    --color-accent: #8b6f47;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-bg: #ffffff;
    --color-bg-alt: #f8f7f5;
    --color-bg-dark: #e8e6e3;
    --color-border: #d9d7d4;
    --font-main: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    --font-heading: Georgia, 'Times New Roman', serif;
    --transition: all 0.3s ease;
}

body {
    font-family: var(--font-main);
    color: var(--color-text);
    line-height: 1.7;
    font-size: 16px;
    background: var(--color-bg);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-text);
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.25rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--color-primary-dark);
}

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

ul {
    list-style: none;
}

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

.header {
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
}

.nav-brand a {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-primary);
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--color-text);
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--color-primary);
    transition: var(--transition);
}

.section {
    padding: 5rem 0;
}

.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    color: var(--color-bg);
    padding: 7rem 0;
    text-align: center;
}

.hero h1 {
    color: var(--color-bg);
    font-size: 3rem;
}

.hero-lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.page-hero {
    background: var(--color-bg-alt);
    padding: 4rem 0;
    text-align: center;
}

.lead {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 700px;
    margin: 0 auto 2rem;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    text-align: center;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    color: var(--color-bg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-bg);
    border-color: var(--color-bg);
}

.btn-secondary:hover {
    background: var(--color-bg);
    color: var(--color-primary);
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
}

.btn-text {
    background: transparent;
    border: none;
    padding: 0.5rem 1rem;
    color: var(--color-text-light);
}

.btn-text:hover {
    color: var(--color-text);
}

.section-intro,
.section-intro-center {
    max-width: 700px;
    margin-bottom: 3rem;
}

.section-intro-center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section h2 {
    margin-bottom: 3rem;
}

.philosophy {
    background: var(--color-bg-alt);
}

.philosophy-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.philosophy-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
}

.features-alt {
    background: var(--color-bg);
}

.split-content {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-visual {
    flex: 1;
}

.split-visual img {
    width: 100%;
}

.feature-list {
    list-style: none;
    margin-top: 1.5rem;
}

.feature-list li {
    padding-left: 2rem;
    position: relative;
    margin-bottom: 0.75rem;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.services-highlight {
    background: var(--color-bg);
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.service-icon img {
    width: 100%;
    height: 100%;
}

.service-card h3 {
    margin-bottom: 1rem;
}

.service-price {
    display: block;
    margin-top: 1.5rem;
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.125rem;
}

.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.benefits-visual {
    background: var(--color-bg-alt);
}

.benefits-columns {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-col {
    flex: 1;
    min-width: 280px;
}

.stats {
    background: var(--color-primary);
    color: var(--color-bg);
}

.stats h2 {
    color: var(--color-bg);
}

.stats-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.testimonials {
    background: var(--color-bg);
}

.testimonials-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.testimonial-text {
    margin-bottom: 1.5rem;
}

.testimonial-text p {
    font-style: italic;
    margin-bottom: 0;
}

.testimonial-author strong {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
}

.testimonial-author span {
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.process {
    background: var(--color-bg-alt);
}

.process-steps {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 250px;
}

.process-number {
    display: inline-block;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-bg);
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.industries {
    background: var(--color-bg);
}

.industries-flex {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.industry-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
}

.faq {
    background: var(--color-bg-alt);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
}

.faq-question:hover {
    background: var(--color-bg-alt);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--color-primary);
    transition: var(--transition);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    margin: 0;
}

.trust {
    background: var(--color-bg);
}

.trust-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.trust-item img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.cta-final {
    background: var(--color-bg-alt);
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: var(--color-bg);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-about,
.cta-services,
.cta-contact {
    background: var(--color-bg-alt);
}

.footer {
    background: var(--color-primary-dark);
    color: var(--color-bg);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer h4 {
    color: var(--color-bg);
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    opacity: 0.8;
}

.story,
.values-detailed,
.team,
.milestones,
.approach,
.trust-indicators,
.why-different {
    padding: 4rem 0;
}

.content-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-block {
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    border-left: 4px solid var(--color-primary);
}

.team-intro {
    max-width: 700px;
    margin: 0 auto 3rem;
    text-align: center;
}

.team-members {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.member-card {
    flex: 1;
    min-width: 280px;
    background: var(--color-bg-alt);
    padding: 2rem;
    border-radius: 8px;
}

.member-role {
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid var(--color-border);
}

.timeline-item:last-child {
    border-bottom: none;
}

.timeline-year {
    flex-shrink: 0;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.approach-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.approach-item {
    flex: 1;
    min-width: 250px;
}

.indicators-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.indicator {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    text-align: center;
}

.services-detailed {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-detail {
    background: var(--color-bg-alt);
    padding: 2.5rem;
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.service-header {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.service-icon-large {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}

.service-icon-large img {
    width: 100%;
    height: 100%;
}

.service-title-block h3 {
    margin-bottom: 0.5rem;
}

.service-price-large {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-primary);
}

.service-description h4 {
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.service-description ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.service-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
    margin-top: 1.5rem;
}

.service-benefits {
    background: var(--color-bg-alt);
}

.benefits-comparison {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-box {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background: var(--color-bg);
    border-radius: 8px;
    border: 1px solid var(--color-border);
}

.service-process {
    background: var(--color-bg);
}

.process-horizontal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-card {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

.process-num {
    display: inline-block;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    color: var(--color-bg);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 60px;
    margin-bottom: 1rem;
}

.faq-services {
    background: var(--color-bg-alt);
}

.comparison {
    background: var(--color-bg);
}

.comparison-table {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.comparison-col {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    border: 2px solid var(--color-border);
}

.comparison-col.highlight {
    background: var(--color-primary);
    color: var(--color-bg);
    border-color: var(--color-primary);
}

.comparison-col.highlight h3,
.comparison-col.highlight ul {
    color: var(--color-bg);
}

.comparison-col ul {
    list-style: none;
    margin-top: 1rem;
}

.comparison-col ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
}

.comparison-col ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    font-weight: bold;
}

.contact-info {
    padding: 4rem 0;
}

.contact-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    text-align: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.contact-icon img {
    width: 100%;
    height: 100%;
}

.contact-note {
    font-size: 0.875rem;
    color: var(--color-text-light);
    margin-top: 1rem;
}

.about-location {
    background: var(--color-bg-alt);
}

.location-content {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.location-block {
    flex: 1;
    min-width: 300px;
}

.visit-tips {
    background: var(--color-bg);
}

.tips-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.tip-item {
    flex: 1;
    min-width: 250px;
}

.faq-contact {
    background: var(--color-bg-alt);
}

.thank-you-section {
    padding: 6rem 0;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-icon img {
    width: 100%;
    height: 100%;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.thank-you-info {
    margin-top: 3rem;
    padding: 2rem;
    background: var(--color-bg-alt);
    border-radius: 8px;
    text-align: left;
}

.thank-you-info ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 1rem;
}

.legal-page {
    padding: 4rem 0;
}

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

.legal-intro {
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.legal-content h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-size: 1.75rem;
}

.legal-content h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-content ul {
    list-style: disc;
}

.legal-content ol {
    list-style: decimal;
}

.legal-content li {
    margin-bottom: 0.5rem;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid var(--color-border);
}

.legal-table th {
    background: var(--color-bg-alt);
    font-weight: 600;
}

.legal-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-primary-dark);
    color: var(--color-bg);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background: var(--color-bg);
    max-width: 600px;
    width: 100%;
    border-radius: 12px;
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-border);
}

.cookie-modal-header h3 {
    margin: 0;
}

.cookie-modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
    padding: 0;
    width: 30px;
    height: 30px;
}

.cookie-modal-close:hover {
    color: var(--color-text);
}

.cookie-modal-body {
    padding: 1.5rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.25rem;
}

.cookie-option p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--color-text-light);
}

.cookie-modal-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--color-border);
    text-align: center;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--color-bg);
        flex-direction: column;
        padding: 1rem;
        border-top: 1px solid var(--color-border);
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        gap: 0;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 4rem 0;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero-lead {
        font-size: 1rem;
    }

    .section {
        padding: 3rem 0;
    }

    .philosophy-grid,
    .services-grid,
    .benefits-columns,
    .stats-grid,
    .testimonials-grid,
    .process-steps,
    .industries-flex,
    .trust-grid {
        gap: 1.5rem;
    }

    .split-content {
        flex-direction: column;
        gap: 2rem;
    }

    .service-header {
        flex-direction: column;
        gap: 1rem;
    }

    .comparison-table {
        flex-direction: column;
    }

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
    }

    .cookie-actions button,
    .cookie-actions .btn {
        flex: 1;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

    .cta-box {
        padding: 2rem 1.5rem;
    }
}