:root {
    --primary-color: #2d5a4d;
    --primary-dark: #1f3e35;
    --primary-light: #4a8270;
    --accent-color: #c8a882;
    --text-color: #2c2c2c;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --bg-accent: #f4f0eb;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 12px rgba(0, 0, 0, 0.15);
}

* {
    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: var(--text-color);
    background-color: var(--bg-color);
}

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

.header {
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

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

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

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    margin: 4px 0;
    transition: 0.3s;
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--bg-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu.active {
        left: 0;
    }
}

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

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.lead {
    font-size: 1.2rem;
    opacity: 0.95;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: #b89770;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

section {
    padding: 4rem 0;
}

h1, h2, h3, h4 {
    color: var(--primary-color);
    line-height: 1.3;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.philosophy-section,
.story-section {
    background-color: var(--bg-light);
}

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

.content-block p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

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

.services-featured {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-featured-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-color);
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.link-arrow {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
}

.link-arrow:after {
    content: ' →';
}

.statistics-section {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    color: white;
}

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

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

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}

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

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

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

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

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

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

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

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--accent-color);
    color: var(--text-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.knowledge-section {
    background-color: var(--bg-accent);
}

.knowledge-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

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

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

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

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

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.5rem 1.5rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 250px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.team-section {
    background-color: var(--bg-accent);
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.team-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.team-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

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

.approach-section {
    background-color: var(--bg-light);
}

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

.approach-principles {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.principle-item {
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 4px;
}

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

.milestones-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.milestone-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 100px;
}

.milestone-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.philosophy-detail-section {
    background-color: var(--bg-light);
}

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

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.industry-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

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

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

.services-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: flex;
    flex-direction: column;
}

.service-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-top: auto;
    padding-top: 1rem;
}

.service-duration {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

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

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    flex: 1 1 calc(50% - 2rem);
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 8px;
}

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

.contact-info-section {
    background-color: var(--bg-color);
}

.contact-grid {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-main {
    flex: 2;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-method a:hover {
    text-decoration: underline;
}

.method-note {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.contact-sidebar {
    flex: 1;
}

.info-box {
    padding: 2rem;
    background-color: var(--bg-accent);
    border-radius: 8px;
}

.info-box h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.directions-section {
    background-color: var(--bg-light);
}

.directions-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.direction-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 8px;
}

.company-details-section {
    background-color: var(--bg-color);
}

.company-info {
    max-width: 600px;
    margin: 2rem auto 0;
}

.company-info p {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.additional-info-section {
    background-color: var(--bg-accent);
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    flex: 1;
    min-width: 280px;
    padding: 1.5rem;
    background-color: var(--bg-color);
    border-radius: 8px;
}

.thank-you-section {
    background-color: var(--bg-light);
    padding: 5rem 0;
}

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

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

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

.next-steps-section {
    background-color: var(--bg-color);
}

.steps-grid {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
}

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

.while-waiting-section {
    background-color: var(--bg-accent);
}

.content-suggestions {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

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

.legal-content-section {
    background-color: var(--bg-color);
}

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

.legal-content h2 {
    text-align: left;
    margin-top: 3rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin: 1rem 0 1rem 2rem;
    line-height: 1.8;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    margin: 1rem 0;
    border-collapse: collapse;
    background-color: var(--bg-light);
    border-radius: 4px;
    overflow: hidden;
}

.cookie-table td {
    padding: 0.75rem;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

.cookie-settings-link {
    text-align: center;
    margin-top: 3rem;
}

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

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

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

.footer-col h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

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

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

.cookie-modal-content {
    background-color: var(--bg-color);
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

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

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

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

.cookie-option span {
    font-weight: 600;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero-content h1,
    .page-hero h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .benefits-grid,
    .services-featured,
    .testimonials-grid,
    .process-steps,
    .knowledge-grid,
    .values-grid,
    .team-highlights,
    .industries-grid,
    .trust-indicators,
    .services-grid,
    .benefits-list,
    .directions-content,
    .info-grid,
    .steps-grid,
    .content-suggestions {
        flex-direction: column;
    }

    .service-card,
    .value-card,
    .benefit-item,
    .industry-item {
        flex: 1 1 100%;
    }

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

    .milestone-item {
        flex-direction: column;
        gap: 0.5rem;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-modal-buttons {
        flex-direction: column;
    }

    .thank-you-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        flex-direction: column;
    }
}