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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-gray: #ecf0f1;
    --border-color: #ddd;
    --white: #fff;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

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

ul {
    list-style-position: inside;
    margin-bottom: 1rem;
}

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

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

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

.logo:hover {
    color: var(--secondary-color);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 1rem;
    gap: 0.5rem;
}

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

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    display: block;
    padding: 0.75rem;
    color: var(--text-color);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    background-color: var(--bg-light);
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

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

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

.btn-secondary {
    background-color: var(--accent-color);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: #c0392b;
    color: var(--white);
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.hero {
    padding: 3rem 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.hero-content h1 {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.hero-content {
    margin-bottom: 2rem;
}

.hero-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.page-hero {
    padding: 3rem 0;
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
}

.page-hero h1 {
    color: var(--white);
}

section {
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.philosophy-grid,
.services-showcase,
.benefits-grid,
.team-grid,
.values-grid,
.industries-grid,
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.philosophy-item,
.service-card,
.benefit-card,
.team-member,
.value-item,
.value-card,
.industry-card,
.trust-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.philosophy-item:hover,
.service-card:hover,
.benefit-card:hover,
.team-member:hover,
.value-card:hover,
.industry-card:hover,
.trust-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.philosophy-icon svg,
.value-icon svg,
.team-avatar svg,
.contact-icon svg {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
}

.service-card.featured {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li {
    color: var(--white);
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-card.featured .service-features li::before {
    color: var(--white);
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.service-card.featured .service-price {
    color: var(--white);
}

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

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

.stat-item {
    text-align: center;
    flex: 1 1 120px;
}

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

.stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.approach-steps,
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step,
.process-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number,
.process-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 60px;
}

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

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

.testimonial {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--secondary-color);
}

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

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

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

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
}

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

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

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    text-align: left;
    background-color: var(--white);
    border: none;
    padding: 1.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    position: relative;
    padding-right: 3rem;
}

.faq-question::after {
    content: "+";
    position: absolute;
    right: 1.5rem;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

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

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

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

.faq-item.active .faq-answer {
    max-height: 500px;
}

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

.cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    text-align: center;
}

.cta h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

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

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

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

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

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

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

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

.footer-col p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
}

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    z-index: 2000;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--white);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.cookie-modal-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

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

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

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
}

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

.cookie-modal-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.story-content,
.location-content,
.approach-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-visual svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    position: relative;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    min-width: 80px;
}

.timeline-content {
    flex: 1;
}

.contact-grid,
.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-card,
.direction-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.contact-card h2 {
    margin-top: 1rem;
}

.contact-note {
    color: var(--text-light);
    font-size: 0.9rem;
}

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.company-detail strong {
    display: block;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
}

.visit-content p {
    max-width: 800px;
    margin-bottom: 1.5rem;
}

.service-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-bottom: 2rem;
}

.service-item.highlighted {
    border: 3px solid var(--secondary-color);
}

.service-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.service-price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

.service-details {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 1.5rem 0;
}

.service-detail {
    margin-bottom: 1rem;
}

.service-detail:last-child {
    margin-bottom: 0;
}

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

.comparison-table {
    display: flex;
    flex-direction: column;
    gap: 0;
    overflow-x: auto;
}

.comparison-row {
    display: flex;
    border-bottom: 1px solid var(--border-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-header {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

.comparison-cell {
    flex: 1;
    padding: 1rem;
    min-width: 120px;
}

.comparison-cell:first-child {
    min-width: 180px;
}

.thank-you-hero {
    padding: 4rem 0;
}

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

.thank-you-icon svg {
    width: 120px;
    height: 120px;
    margin-bottom: 2rem;
}

.thank-you-text {
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon svg {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
}

.legal-content {
    padding: 2rem 0;
}

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

.legal-text h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-text ul {
    margin-left: 2rem;
    list-style-position: outside;
}

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

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

.cookies-table {
    background-color: var(--white);
    box-shadow: var(--shadow);
    border-radius: 5px;
    overflow: hidden;
}

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

.cookies-table th {
    background-color: var(--primary-color);
    color: var(--white);
    font-weight: 600;
}

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

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

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 0.5rem;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero .container {
        display: flex;
        align-items: center;
        gap: 3rem;
    }

    .philosophy-grid,
    .values-grid,
    .industries-grid,
    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .philosophy-item,
    .value-item,
    .industry-card,
    .trust-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .services-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .service-card.featured {
        flex: 1 1 100%;
    }

    .benefits-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .benefit-text,
    .benefits-list {
        flex: 1;
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(50% - 1rem);
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .footer-grid {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-col {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

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

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

    .story-content,
    .location-content {
        flex-direction: row;
        align-items: flex-start;
    }

    .story-content > *,
    .location-content > * {
        flex: 1;
    }

    .approach-content {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .approach-block {
        flex: 1 1 calc(50% - 1rem);
    }

    .contact-grid,
    .directions-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-card,
    .direction-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .service-header {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .thank-you-actions {
        flex-direction: row;
        justify-content: center;
    }

    .steps-grid {
        flex-direction: row;
    }

    .step-card {
        flex: 1;
    }

    .benefits-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .benefit-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 40px;
    }

    .philosophy-item,
    .value-item,
    .industry-card,
    .trust-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .team-member {
        flex: 1 1 calc(25% - 1.5rem);
    }

    .approach-block {
        flex: 1 1 calc(50% - 1rem);
    }
}