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

:root {
    --color-primary: #2d5a3d;
    --color-primary-dark: #1e3d29;
    --color-secondary: #8b6914;
    --color-accent: #d4a84b;
    --color-text: #2c3e2f;
    --color-text-light: #5a6b5c;
    --color-bg: #f8f9f7;
    --color-bg-alt: #eef2eb;
    --color-white: #ffffff;
    --color-border: #d4ddd6;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --shadow-sm: 0 2px 8px rgba(45, 90, 61, 0.08);
    --shadow-md: 0 4px 16px rgba(45, 90, 61, 0.12);
    --shadow-lg: 0 8px 32px rgba(45, 90, 61, 0.16);
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-bg);
}

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

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

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

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

/* Header & Navigation */
.header {
    background: var(--color-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
}

.logo svg {
    width: 36px;
    height: 36px;
}

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

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

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

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

.nav-links a:hover {
    color: var(--color-primary);
}

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

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

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

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    padding: 60px 20px;
    text-align: center;
}

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

.hero p {
    font-size: 1.1rem;
    opacity: 0.92;
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    border: none;
}

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

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

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

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

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

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

/* Sections */
.section {
    padding: 60px 20px;
}

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

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

.section-title {
    font-size: 1.75rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.section-dark .section-title {
    color: var(--color-white);
}

.section-subtitle {
    color: var(--color-text-light);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.section-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

/* Cards */
.cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

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

.card-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 18px;
    color: var(--color-primary);
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.card p {
    color: var(--color-text-light);
}

/* Service Cards */
.service-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--color-accent);
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--color-primary);
}

.service-card p {
    color: var(--color-text-light);
    margin-bottom: 16px;
}

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

/* Feature Blocks */
.feature-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 40px 0;
}

.feature-content {
    order: 2;
}

.feature-visual {
    order: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--color-bg-alt);
    border-radius: var(--radius-lg);
    padding: 40px;
    min-height: 200px;
}

.feature-visual svg {
    width: 100%;
    max-width: 280px;
    height: auto;
}

.feature-content h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.feature-content p {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

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

.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 3px;
}

/* Statistics */
.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

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

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

.section-dark .stat-number {
    color: var(--color-accent);
}

.stat-label {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

.section-dark .stat-label {
    color: rgba(255, 255, 255, 0.85);
}

/* Testimonials */
.testimonials {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.testimonial {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.testimonial::before {
    content: '"';
    font-size: 4rem;
    color: var(--color-accent);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-style: italic;
    color: var(--color-text);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    background: var(--color-bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-avatar svg {
    width: 28px;
    height: 28px;
    color: var(--color-primary);
}

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

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

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

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

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

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

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

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

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

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

/* Process Steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.process-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.step-content p {
    color: var(--color-text-light);
}

/* Benefits List */
.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    color: var(--color-primary);
}

.benefit-content h4 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--color-primary);
}

.benefit-content p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Values Section */
.values-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card {
    background: var(--color-white);
    padding: 28px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 4px solid var(--color-accent);
}

.value-card svg {
    width: 52px;
    height: 52px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.value-card h4 {
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--color-primary);
}

.value-card p {
    color: var(--color-text-light);
    font-size: 0.95rem;
}

/* Contact Info */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-info-box {
    background: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.contact-info-box h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.contact-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: flex-start;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 2px;
}

.contact-item-content {
    flex: 1;
}

.contact-item-label {
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.contact-item-value {
    color: var(--color-text-light);
}

/* Quote Block */
.quote-block {
    background: var(--color-primary);
    color: var(--color-white);
    padding: 50px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    margin: 40px 0;
}

.quote-block blockquote {
    font-size: 1.4rem;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-block cite {
    font-size: 1rem;
    opacity: 0.85;
}

/* Highlighted Panel */
.highlight-panel {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
}

.highlight-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.highlight-panel p {
    margin-bottom: 24px;
    opacity: 0.95;
}

/* Comparison Table */
.comparison-table {
    width: 100%;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

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

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

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

.comparison-table tr:hover td {
    background: var(--color-bg-alt);
}

/* Industries Served */
.industries-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
}

.industry-tag {
    background: var(--color-white);
    padding: 12px 22px;
    border-radius: 30px;
    font-weight: 500;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

/* Milestones */
.milestones {
    display: flex;
    flex-direction: column;
    gap: 28px;
    position: relative;
    padding-left: 30px;
}

.milestones::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--color-border);
}

.milestone {
    position: relative;
}

.milestone::before {
    content: '';
    position: absolute;
    left: -30px;
    top: 8px;
    width: 18px;
    height: 18px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 3px solid var(--color-white);
    box-shadow: var(--shadow-sm);
}

.milestone-year {
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.milestone-text {
    color: var(--color-text-light);
}

/* Trust Indicators */
.trust-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: var(--color-white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}

.trust-item svg {
    width: 32px;
    height: 32px;
    color: var(--color-accent);
}

.trust-item span {
    font-weight: 500;
    color: var(--color-text);
}

/* Footer */
.footer {
    background: var(--color-primary-dark);
    color: var(--color-white);
    padding: 50px 20px 30px;
}

.footer-grid {
    display: flex;
    flex-direction: column;
    gap: 36px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 18px;
    color: var(--color-accent);
}

.footer-section p {
    opacity: 0.85;
    line-height: 1.6;
}

.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(--color-accent);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    padding: 20px;
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    font-size: 0.95rem;
    color: var(--color-text);
}

.cookie-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    border: none;
}

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

.cookie-btn-accept:hover {
    background: var(--color-primary-dark);
}

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

.cookie-btn-settings:hover {
    background: var(--color-bg-alt);
}

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

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

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

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.cookie-modal-header h3 {
    font-size: 1.3rem;
    color: var(--color-primary);
}

.cookie-modal-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--color-text-light);
}

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

.cookie-option {
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border);
}

.cookie-option:last-of-type {
    border-bottom: none;
}

.cookie-option-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.cookie-option-header h4 {
    font-size: 1rem;
    color: var(--color-text);
}

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

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 28px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-border);
    border-radius: 28px;
    transition: 0.3s;
}

.cookie-toggle-slider::before {
    position: absolute;
    content: '';
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: var(--color-white);
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--color-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
    transform: translateX(22px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    color: var(--color-primary);
    margin-bottom: 28px;
}

.thank-you-section h1 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.thank-you-section p {
    color: var(--color-text-light);
    margin-bottom: 28px;
    max-width: 500px;
}

/* Legal Pages */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px 60px;
}

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--color-primary);
}

.legal-content h2 {
    font-size: 1.35rem;
    margin: 32px 0 16px;
    color: var(--color-primary);
}

.legal-content h3 {
    font-size: 1.15rem;
    margin: 24px 0 12px;
    color: var(--color-text);
}

.legal-content p {
    margin-bottom: 16px;
    color: var(--color-text);
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 8px;
    color: var(--color-text);
}

.legal-date {
    color: var(--color-text-light);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

/* Responsive - Tablet */
@media (min-width: 640px) {
    .hero {
        padding: 80px 30px;
    }

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

    .section {
        padding: 80px 30px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .card {
        flex: 1;
        min-width: 280px;
    }

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

    .testimonial {
        flex: 1;
        min-width: 300px;
    }

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

    .benefit-item {
        flex: 1;
        min-width: 280px;
    }

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

    .value-card {
        flex: 1;
        min-width: 200px;
    }

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

    .contact-info-box {
        flex: 1;
    }

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

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

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

    .cookie-content p {
        flex: 1;
    }
}

/* Responsive - Desktop */
@media (min-width: 1024px) {
    .nav-links {
        display: flex;
        flex-direction: row;
        position: static;
        background: none;
        box-shadow: none;
        padding: 0;
        gap: 32px;
    }

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

    .menu-toggle {
        display: none;
    }

    .hero {
        padding: 100px 40px;
    }

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

    .section {
        padding: 100px 40px;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .feature-block {
        flex-direction: row;
        align-items: center;
        gap: 60px;
    }

    .feature-content {
        order: 1;
        flex: 1;
    }

    .feature-visual {
        order: 2;
        flex: 1;
        min-height: 300px;
    }

    .feature-block.reverse .feature-content {
        order: 2;
    }

    .feature-block.reverse .feature-visual {
        order: 1;
    }

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

    .process-step {
        flex: 1;
        min-width: 220px;
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto 16px;
    }
}
