:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #7c3aed;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #059669;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

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-dark);
    background-color: var(--bg-white);
}

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

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

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

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

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

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

.nav-menu li {
    padding: 0;
}

.nav-menu a {
    display: block;
    padding: 0.75rem 20px;
    color: var(--text-dark);
    font-weight: 500;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    font-weight: 600;
    border-radius: 8px;
    transition: var(--transition);
    text-align: center;
}

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

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

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

.btn-secondary:hover {
    background: #6d28d9;
    color: white;
}

.btn-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
}

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

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

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

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

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

.hero-graphic {
    margin-top: 2rem;
}

.page-hero {
    background: var(--bg-light);
    padding: 3rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.page-hero p {
    font-size: 1.125rem;
    color: var(--text-medium);
}

section {
    padding: 3rem 0;
}

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

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

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

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

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

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

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.philosophy-icon,
.service-icon,
.process-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1rem;
}

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

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

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

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

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

.service-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.service-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-icon {
    margin-bottom: 1.5rem;
}

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

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

.story-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.story-text p {
    margin-bottom: 1rem;
}

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

.benefit-large {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

.testimonial {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--text-dark);
}

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

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

.process-step {
    position: relative;
    padding-left: 4rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.industries-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.industry-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.insights-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

.insight-block {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
}

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

.faq-item {
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    font-size: 1.125rem;
    font-weight: 600;
    text-align: left;
    color: var(--text-dark);
}

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

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

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

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

.faq-answer p {
    color: var(--text-medium);
}

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

.cta-final h2 {
    color: white;
}

.cta-section {
    background: var(--bg-light);
    text-align: center;
}

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

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

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-section a {
    color: #d1d5db;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: white;
    padding: 1.5rem;
    box-shadow: var(--shadow-lg);
    display: none;
    z-index: 1000;
}

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

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

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

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

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

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 100%;
}

.cookie-modal-content h3 {
    margin-bottom: 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;
}

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

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 2rem;
    color: var(--text-medium);
    font-size: 0.875rem;
}

.mission-layout,
.office-content,
.text-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.value-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
}

.value-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
}

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

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

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

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

.team-grid,
.achievements-list,
.trust-categories {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.team-member,
.achievement-item,
.trust-category {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.service-full {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
}

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

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

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

.service-desc {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
}

.service-features ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

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

.benefits-comparison {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-block {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.process-detailed {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.comparison-table {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

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

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

.comparison-header {
    background: var(--bg-light);
    font-weight: 700;
}

.comparison-cell {
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

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

.comparison-cell.highlight {
    color: var(--success-color);
    font-weight: 600;
}

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

.contact-card {
    padding: 2rem;
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
}

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

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

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

.direction-item,
.reason-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

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

.company-block {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 8px;
}

.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-message {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin: 1.5rem 0 3rem;
}

.next-steps {
    margin: 3rem 0;
}

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

.step-card {
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.contact-reminder {
    max-width: 600px;
    margin: 3rem auto 0;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

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

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

.legal-intro {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin: 1.5rem 0;
}

.legal-date {
    color: var(--text-light);
    font-size: 0.875rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section {
    margin: 3rem 0;
}

.legal-section h2 {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
}

.legal-section h3 {
    margin-top: 2rem;
    font-size: 1.25rem;
}

.legal-section p {
    margin: 1rem 0;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    list-style: disc;
    margin: 0.5rem 0;
}

.cookie-table {
    margin: 2rem 0;
}

.cookie-table h3 {
    margin: 2rem 0 1rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

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

.cookie-table th {
    background: var(--bg-light);
    font-weight: 600;
}

@media (min-width: 768px) {
    .menu-toggle {
        display: none;
    }

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

    .nav-menu a {
        padding: 0.5rem 0;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        background: transparent;
    }

    .hero {
        padding: 5rem 0;
    }

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

    .hero-content {
        flex: 1;
    }

    .hero-content h1 {
        font-size: 2.75rem;
    }

    .hero-graphic {
        flex: 1;
        margin-top: 0;
    }

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

    section {
        padding: 5rem 0;
    }

    h2 {
        font-size: 2.25rem;
    }

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

    .stats-grid {
        flex-direction: row;
        justify-content: space-around;
    }

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

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

    .story-layout {
        flex-direction: row;
        align-items: center;
    }

    .story-text,
    .story-graphic {
        flex: 1;
    }

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

    .benefit-large {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .testimonial {
        flex: 1;
    }

    .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .process-step {
        flex: 1 1 calc(50% - 1rem);
    }

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

    .industry-item {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .insights-content {
        flex-direction: row;
    }

    .insight-block {
        flex: 1;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-content p {
        flex: 1;
    }

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

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

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

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

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

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

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

    .process-detailed {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

    .comparison-row {
        flex-direction: row;
    }

    .comparison-cell {
        flex: 1;
        border-right: 1px solid var(--border-color);
        border-bottom: none;
    }

    .comparison-cell:last-child {
        border-right: none;
    }

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

    .contact-card {
        flex: 1;
    }

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

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

    .company-details {
        flex-direction: row;
    }

    .company-block {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }

    .trust-categories {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-category {
        flex: 1 1 calc(50% - 0.75rem);
    }

    .achievements-list {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .achievement-item {
        flex: 1 1 calc(50% - 0.75rem);
    }
}

@media (min-width: 1024px) {
    .services-list .service-card {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

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

    .industries-grid .industry-item {
        flex: 1 1 calc(33.333% - 1rem);
    }

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

    .process-detailed .process-item {
        flex: 1 1 calc(20% - 1.6rem);
    }
}