:root {
    --primary-color: #d84315;
    --primary-dark: #bf360c;
    --secondary-color: #37474f;
    --accent-color: #ff6f00;
    --text-color: #212121;
    --text-light: #757575;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #388e3c;
}

* {
    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-white);
}

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

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

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

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

ul {
    list-style: none;
}

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

h1 {
    font-size: 2rem;
}

h2 {
    font-size: 1.75rem;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
}

.main-header {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-color);
    transition: all 0.3s ease;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    min-width: 200px;
}

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

.nav-menu li {
    border-bottom: 1px solid var(--border-color);
}

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

.nav-menu a {
    display: block;
    padding: 0.875rem 1.25rem;
    color: var(--text-color);
    transition: background 0.3s ease;
}

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

.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

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

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

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

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

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

.hero {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.hero-content h1 {
    font-size: 2.25rem;
    margin-bottom: 1.25rem;
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

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

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

section {
    padding: 4rem 0;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
}

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

.philosophy h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

.philosophy-item {
    text-align: center;
}

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

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

.services-preview h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

.services-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

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

.service-icon img {
    width: 48px;
    height: 48px;
}

.cta-center {
    text-align: center;
}

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

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

.stat-item {
    text-align: center;
}

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

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

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

.process h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

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

.industries h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.industry-tag {
    background: var(--bg-white);
    padding: 0.75rem 1.5rem;
    border-radius: 24px;
    font-weight: 500;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

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

.testimonials h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.testimonial p {
    font-style: italic;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial footer {
    font-style: normal;
}

.testimonial strong {
    display: block;
    color: var(--text-color);
    margin-bottom: 0.25rem;
}

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

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

.knowledge h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.knowledge-blocks {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.knowledge-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

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

.faq h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.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.25rem 0;
    background: none;
    border: none;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    color: var(--text-color);
}

.faq-question:hover {
    color: var(--primary-color);
}

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

.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-bottom: 1.25rem;
    color: var(--text-light);
}

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

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

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

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

.main-footer {
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 3rem 0 1.5rem;
}

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

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

.footer-section p {
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

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

.footer-section a {
    color: var(--bg-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-section a:hover {
    opacity: 1;
    color: var(--bg-white);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    color: var(--bg-white);
    padding: 1.25rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

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

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

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

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

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

.modal-header h2 {
    margin: 0;
}

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

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

.modal-body {
    padding: 1.5rem;
}

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

.cookie-option label {
    display: flex;
    gap: 1rem;
    cursor: pointer;
}

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

.cookie-option strong {
    display: block;
    margin-bottom: 0.25rem;
}

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

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

.story-content {
    max-width: 800px;
}

.story-content p {
    margin-bottom: 1.5rem;
}

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

.values h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.team {
    background: var(--bg-white);
}

.team h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

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

.team-member {
    text-align: center;
}

.member-avatar {
    width: 120px;
    height: 120px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background: var(--bg-light);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.achievements h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.achievement-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.achievement-year {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    min-width: 60px;
}

.approach {
    background: var(--bg-white);
}

.approach h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.approach-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.trust-indicators h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.trust-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.services-detail {
    background: var(--bg-white);
}

.service-detail-card {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-detail-icon img {
    width: 64px;
    height: 64px;
}

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

.service-details h3 {
    margin-bottom: 0.75rem;
}

.service-details ul {
    list-style: disc;
    padding-left: 1.5rem;
}

.service-details li {
    margin-bottom: 0.5rem;
}

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

.benefits h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.benefit-item {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

.process-overview {
    background: var(--bg-white);
}

.process-overview h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-marker {
    min-width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

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

.comparison h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.comparison-column {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.comparison-column.highlighted {
    border: 2px solid var(--primary-color);
}

.comparison-column h3 {
    margin-bottom: 1.5rem;
}

.comparison-column ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.comparison-column li {
    margin-bottom: 0.5rem;
}

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

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

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

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

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

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

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

.directions {
    background: var(--bg-white);
}

.directions h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.direction-item {
    text-align: center;
}

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

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

.company-info h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.info-box {
    max-width: 600px;
    margin: 0 auto;
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.info-box p {
    margin-bottom: 0.75rem;
}

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

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

.reasons h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

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

.email-link {
    color: var(--bg-white);
    text-decoration: underline;
}

.email-link:hover {
    color: var(--bg-white);
    opacity: 0.9;
}

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

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

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

.thank-you h1 {
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

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

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

.next-steps h2 {
    text-align: center;
    margin-bottom: 2.5rem;
}

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

.step-box {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.meanwhile {
    background: var(--bg-white);
}

.meanwhile h2 {
    text-align: center;
    margin-bottom: 1rem;
}

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

.link-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.link-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.link-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

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

.legal-page .container {
    max-width: 900px;
}

.legal-page h1 {
    margin-bottom: 0.5rem;
}

.last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.legal-page h2 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

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

.legal-page ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 1rem;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    overflow-x: auto;
    display: block;
}

.cookie-table thead {
    background: var(--bg-light);
}

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

.cookie-table th {
    font-weight: 600;
}

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

    h2 {
        font-size: 2rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        position: static;
        flex-direction: row;
        background: none;
        border: none;
        box-shadow: none;
        min-width: auto;
    }

    .nav-menu li {
        border: none;
    }

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

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

    .hero {
        padding: 5rem 0;
    }

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

    .hero-content {
        flex: 1;
    }

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

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

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

    .services-cards {
        flex-direction: row;
    }

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

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

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

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

    .testimonial {
        flex: 1;
    }

    .knowledge-blocks {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .knowledge-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .footer-section {
        flex: 1;
    }

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

    .cookie-content p {
        flex: 1;
    }

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

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

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

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

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

    .trust-item {
        flex: 0 0 calc(50% - 1rem);
    }

    .service-detail-card {
        flex-direction: row;
        align-items: flex-start;
    }

    .service-detail-icon {
        min-width: 80px;
    }

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

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

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

    .comparison-column {
        flex: 1;
    }

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

    .contact-card {
        flex: 1;
    }

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

    .direction-item {
        flex: 1;
    }

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

    .reason-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

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

    .step-box {
        flex: 1;
    }

    .link-cards {
        flex-direction: row;
    }

    .link-card {
        flex: 1;
    }

    .cookie-table {
        display: table;
    }
}

@media (min-width: 1024px) {
    section {
        padding: 5rem 0;
    }

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

    .process-step {
        flex: 0 0 calc(25% - 1.5rem);
    }

    .knowledge-blocks {
        flex-wrap: nowrap;
    }

    .knowledge-item {
        flex: 1;
    }

    .value-card {
        flex: 0 0 calc(25% - 1.5rem);
    }

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

    .trust-grid {
        flex-wrap: nowrap;
    }

    .trust-item {
        flex: 1;
    }

    .benefits-grid {
        flex-wrap: nowrap;
    }

    .benefit-item {
        flex: 1;
    }

    .reasons-grid {
        flex-wrap: nowrap;
    }

    .reason-item {
        flex: 1;
    }
}