:root {
    --primary-color: #2c5f8d;
    --primary-dark: #1a3a56;
    --primary-light: #4a7ba7;
    --secondary-color: #5a9fd4;
    --accent-color: #ff6b35;
    --text-color: #2d3436;
    --text-light: #636e72;
    --bg-color: #ffffff;
    --bg-gray: #f8f9fa;
    --bg-dark: #2d3436;
    --border-color: #dfe6e9;
    --success-color: #00b894;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
    --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-color);
    background-color: var(--bg-color);
}

.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-light);
}

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

ul {
    list-style-position: inside;
}

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

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    padding: 20px;
}

.nav.active {
    display: flex;
}

.nav-link {
    padding: 12px 0;
    color: var(--text-color);
    font-weight: 500;
    border-bottom: 1px solid var(--border-color);
}

.nav-link:last-child {
    border-bottom: none;
}

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

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

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

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

.section {
    padding: 60px 0;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-color);
    padding: 80px 0 60px;
    text-align: center;
}

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

.page-intro {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.95;
}

.legal-date {
    margin-top: 10px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-color) 100%);
    color: var(--bg-color);
    padding: 80px 0;
}

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

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

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.hero-visual {
    display: none;
}

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

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

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

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

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

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

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

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header {
    margin-bottom: 40px;
}

.section-header.centered {
    text-align: center;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 40px;
    text-align: center;
}

.philosophy-grid,
.values-grid,
.industries-grid,
.testimonials-grid,
.insights-grid,
.benefits-grid,
.indicators-grid,
.services-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.philosophy-card,
.value-card,
.industry-card,
.testimonial-card,
.insight-card,
.benefit-box,
.indicator-item,
.service-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.philosophy-card:hover,
.value-card:hover,
.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.philosophy-icon,
.value-icon {
    margin-bottom: 20px;
}

.philosophy-icon img,
.value-icon img {
    width: 60px;
    height: 60px;
}

.industry-card img,
.indicator-item img,
.benefit-box img {
    margin: 0 auto 15px;
}

.two-column-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.column-text ul {
    margin: 20px 0;
}

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

.feature-list li {
    padding: 10px 0 10px 30px;
    position: relative;
}

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

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

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

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 10px;
}

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

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.process-step {
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.step-number {
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

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

.testimonial-author strong {
    margin-bottom: 5px;
}

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

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

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

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

.faq-toggle::after {
    content: "+";
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

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

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

.faq-answer p {
    padding: 0 0 20px 0;
    color: var(--text-light);
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--bg-color);
}

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

.cta-content h2 {
    color: var(--bg-color);
    margin-bottom: 20px;
}

.cta-content p {
    margin-bottom: 30px;
    font-size: 1.1rem;
    opacity: 0.95;
}

.footer {
    background-color: var(--bg-dark);
    color: var(--bg-color);
    padding: 60px 0 20px;
}

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

.footer-column h3,
.footer-column h4 {
    color: var(--bg-color);
    margin-bottom: 15px;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--bg-dark);
    color: var(--bg-color);
    padding: 20px;
    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;
    flex-direction: column;
    gap: 20px;
    align-items: center;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}

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

.modal.show {
    display: flex;
}

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

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

.modal-header h3 {
    margin: 0;
}

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

.modal-body {
    padding: 20px;
}

.cookie-option {
    margin-bottom: 20px;
}

.cookie-option label {
    display: flex;
    gap: 15px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 5px;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.modal-footer {
    padding: 20px;
    border-top: 1px solid var(--border-color);
    text-align: right;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-member {
    text-align: center;
    padding: 20px;
}

.team-avatar {
    margin: 0 auto 20px;
    width: 120px;
    height: 120px;
}

.team-role {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 5px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 3px solid var(--bg-color);
}

.timeline-year {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.benefit-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

.benefit-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    flex-shrink: 0;
}

.service-icon {
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 20px 0;
}

.service-features {
    list-style: none;
    margin-top: 15px;
}

.service-features li {
    padding: 8px 0 8px 25px;
    position: relative;
    color: var(--text-light);
}

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

.process-flow {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.flow-step {
    text-align: center;
    padding: 25px;
    background-color: var(--bg-gray);
    border-radius: 8px;
}

.flow-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 15px;
}

.flow-arrow {
    text-align: center;
    font-size: 2rem;
    color: var(--primary-color);
    display: none;
}

.comparison-table {
    background-color: var(--bg-color);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

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

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

.comparison-cell {
    padding: 15px;
}

.comparison-row.header .comparison-cell {
    background-color: var(--primary-color);
    color: var(--bg-color);
    font-weight: bold;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-block {
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-item img {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 3px;
}

.directions-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.direction-card {
    padding: 25px;
    background-color: var(--bg-gray);
    border-radius: 8px;
    text-align: center;
}

.direction-card img {
    margin: 0 auto 15px;
}

.info-box {
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: 8px;
}

.info-columns {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
}

.info-col p {
    margin-bottom: 10px;
}

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

.visit-text p {
    margin-bottom: 20px;
}

.response-box {
    background-color: var(--bg-gray);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
}

.response-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 30px;
}

.response-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    text-align: left;
}

.response-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.thank-you-section {
    padding: 100px 0;
    text-align: center;
}

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

.thank-you-icon {
    margin: 0 auto 30px;
}

.thank-you-text {
    font-size: 1.2rem;
    margin: 20px 0 40px;
    color: var(--text-light);
}

.thank-you-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.steps-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.step-card {
    background-color: var(--bg-gray);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--bg-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

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

.legal-text h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-text h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-text p {
    margin-bottom: 15px;
}

.legal-text ul {
    margin: 15px 0 15px 20px;
}

.legal-text li {
    margin-bottom: 8px;
}

.cookie-table {
    background-color: var(--bg-gray);
    padding: 20px;
    border-radius: 6px;
    margin: 20px 0;
}

.cookie-table h4 {
    margin-bottom: 10px;
}

.cookie-table p {
    margin-bottom: 8px;
}

.info-list {
    margin: 15px 0 15px 20px;
}

.info-list li {
    margin-bottom: 8px;
}

.map-placeholder {
    background-color: var(--bg-gray);
    border-radius: 8px;
    overflow: hidden;
    min-height: 400px;
}

@media (min-width: 768px) {
    .nav {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        padding: 0;
        gap: 30px;
    }

    .nav-link {
        padding: 0;
        border-bottom: none;
    }

    .mobile-menu-toggle {
        display: none;
    }

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

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

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

    .philosophy-card,
    .value-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 250px;
    }

    .industry-card {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 200px;
    }

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

    .stat-item {
        flex: 1 1 calc(25% - 20px);
        min-width: 150px;
    }

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

    .two-column-layout.reverse {
        flex-direction: row-reverse;
    }

    .column-text,
    .column-visual {
        flex: 1;
    }

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

    .testimonial-card {
        flex: 1 1 calc(50% - 15px);
        min-width: 300px;
    }

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

    .insight-card {
        flex: 1;
    }

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

    .footer-column {
        flex: 1 1 calc(25% - 30px);
        min-width: 200px;
    }

    .cookie-actions {
        flex-direction: row;
        width: auto;
    }

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

    .team-member {
        flex: 1 1 calc(33.333% - 20px);
        min-width: 250px;
    }

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

    .benefit-box {
        flex: 1 1 calc(50% - 15px);
        min-width: 250px;
    }

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

    .indicator-item {
        flex: 1 1 calc(50% - 15px);
        min-width: 250px;
    }

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

    .service-card {
        flex: 1 1 calc(50% - 15px);
        min-width: 300px;
    }

    .process-flow {
        flex-direction: row;
        align-items: center;
    }

    .flow-arrow {
        display: block;
    }

    .flow-step {
        flex: 1;
    }

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

    .comparison-cell {
        flex: 1;
        padding: 20px;
    }

    .comparison-cell:first-child {
        flex: 0 0 200px;
    }

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

    .contact-info {
        flex: 1;
    }

    .contact-map {
        flex: 1;
    }

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

    .direction-card {
        flex: 1;
    }

    .info-columns {
        flex-direction: row;
    }

    .info-col {
        flex: 1;
    }

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

    .response-step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

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

    .step-card {
        flex: 1;
    }
}

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

    .hero .container {
        display: flex;
        align-items: center;
        gap: 60px;
    }

    .hero-content {
        flex: 1;
        text-align: left;
    }

    .hero-visual {
        display: block;
        flex: 1;
    }

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

    .hero-actions {
        justify-content: flex-start;
    }

    h2 {
        font-size: 2.2rem;
    }

    .section {
        padding: 80px 0;
    }

    .testimonial-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }
}