:root {
    --primary-color: #2c5f4f;
    --primary-dark: #1a3a2e;
    --primary-light: #4a8070;
    --secondary-color: #d4a574;
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-light: #f9f7f5;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
    --accent-color: #c89968;
}

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

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;
}

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

h1 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

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

p {
    margin-bottom: 1rem;
}

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

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

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

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

li {
    margin-bottom: 0.5rem;
}

.navbar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-dark);
    margin: 3px 0;
    transition: all 0.3s ease;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--bg-white);
    padding: 5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    list-style: none;
    transition: right 0.3s ease;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.nav-menu.active {
    right: 0;
}

.nav-menu li {
    margin-bottom: 0;
}

.nav-menu a {
    display: block;
    padding: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-color);
}

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

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

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

.hero h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

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

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

.lead {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

section {
    padding: 3rem 0;
}

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

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

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

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

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

.philosophy,
.story,
.mission,
.approach,
.sustainability,
.values-detail,
.services-intro,
.contact-description,
.directions {
    background-color: var(--bg-white);
}

.content-block,
.story-content {
    max-width: 800px;
    margin: 0 auto;
}

.content-block h2,
.story-content h2 {
    margin-bottom: 1.5rem;
}

.content-block p,
.story-content p {
    margin-bottom: 1.25rem;
    line-height: 1.8;
}

.featured-categories,
.service-benefits,
.comparison {
    background-color: var(--bg-light);
}

.category-grid,
.service-grid,
.benefits-grid,
.help-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.category-card,
.service-card,
.benefit-card,
.help-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.category-icon {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.category-card h3,
.service-card h3,
.benefit-card h3,
.help-item h3 {
    margin-bottom: 0.75rem;
}

.category-card p,
.service-card p,
.benefit-card p,
.help-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-top: 1rem;
}

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

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item h3 {
    margin-bottom: 0.75rem;
}

.benefit-item p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

.stat-item {
    padding: 1.5rem;
}

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

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

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

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

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

.testimonial p {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.7;
}

cite {
    font-style: normal;
    font-weight: 500;
    color: var(--text-light);
}

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

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

.process-step,
.step-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

.process-step h3,
.step-card h3 {
    margin-bottom: 0.75rem;
}

.process-step p,
.step-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.values,
.mission {
    background-color: var(--bg-white);
}

.values-content,
.mission-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.value-block,
.mission-item {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.value-block h3,
.mission-item h3 {
    margin-bottom: 0.75rem;
}

.value-block p,
.mission-item p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

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

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

.faq-item {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

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

.cta {
    background-color: var(--primary-color);
    color: var(--bg-white);
    text-align: center;
}

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

.cta-content p {
    color: var(--bg-white);
    opacity: 0.95;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-buttons .btn {
    width: 100%;
    max-width: 250px;
}

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

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

.cta-buttons .btn-secondary {
    border-color: var(--bg-white);
    color: var(--bg-white);
}

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

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

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

.footer-section h3 {
    color: var(--bg-white);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-section p {
    font-size: 0.95rem;
    color: var(--bg-light);
    opacity: 0.9;
}

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

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

.footer-section a {
    color: var(--bg-light);
    opacity: 0.9;
    font-size: 0.95rem;
}

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

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

.footer-bottom p {
    font-size: 0.9rem;
    color: var(--bg-light);
    opacity: 0.8;
    margin-bottom: 0;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: bottom 0.3s ease;
}

.cookie-banner.show {
    bottom: 0;
}

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

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

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

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2001;
    padding: 1rem;
    overflow-y: auto;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
}

.cookie-modal-content h2 {
    margin-bottom: 1.5rem;
}

.cookie-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}

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

.cookie-option span {
    font-weight: 500;
}

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

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

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

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: var(--text-light);
}

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

.team-member {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.team-member h3 {
    margin-bottom: 0.25rem;
}

.role {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-member p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding-left: 2rem;
    border-left: 3px solid var(--border-color);
}

.timeline-item {
    position: relative;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2.5rem;
    top: 0.5rem;
    width: 15px;
    height: 15px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-year {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.approach-content,
.values-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

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

.approach-block h3,
.value-item h3 {
    margin-bottom: 0.75rem;
}

.approach-block p,
.value-item p {
    color: var(--text-light);
    line-height: 1.7;
}

.approach-block p:last-child,
.value-item p:last-child {
    margin-bottom: 0;
}

.sustainability-grid,
.info-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.sustainability-item,
.info-block {
    padding: 1.5rem;
    background-color: var(--bg-light);
    border-radius: 8px;
}

.sustainability-item h3,
.info-block h3 {
    margin-bottom: 0.75rem;
}

.sustainability-item p,
.info-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

.services-list h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.services-list h2:first-child {
    margin-top: 2rem;
}

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

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

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

.comparison-column.highlight {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

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

.comparison-column.highlight h3 {
    color: var(--bg-white);
}

.comparison-column ul {
    list-style: none;
}

.comparison-column li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 1rem;
}

.comparison-column li::before {
    content: '•';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.comparison-column.highlight li {
    color: var(--bg-white);
}

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

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

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

.contact-block h2 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.contact-block p {
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

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

.directions-content,
.help-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

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

.direction-block h3 {
    margin-bottom: 0.75rem;
}

.direction-block p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 0;
}

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

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

.thank-you-hero {
    background-color: var(--bg-light);
    padding: 4rem 0;
}

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

.thank-you-icon {
    color: var(--primary-color);
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.next-steps,
.meanwhile {
    background-color: var(--bg-white);
}

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

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

.meanwhile-card h3 {
    margin-bottom: 1rem;
}

.meanwhile-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.info-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background-color: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.info-content h2 {
    margin-bottom: 1rem;
}

.info-content p {
    color: var(--text-light);
    line-height: 1.7;
}

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

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

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

.legal-content section {
    padding: 0;
    margin-bottom: 2.5rem;
}

.legal-content h2 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p,
.legal-content ul {
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul {
    margin-left: 1.5rem;
    list-style-position: outside;
}

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

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

    h2 {
        font-size: 2.25rem;
    }

    h3 {
        font-size: 1.6rem;
    }

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

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

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        padding: 0;
        box-shadow: none;
        background-color: transparent;
    }

    .nav-menu li {
        margin-left: 2rem;
    }

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

    .category-grid,
    .service-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .cookie-buttons {
        flex-direction: row;
        gap: 1rem;
    }

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

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }

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

    .footer-section {
        flex: 1;
    }

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

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

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

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

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

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

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

    .comparison-column {
        flex: 1;
    }

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

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

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

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

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

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

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

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

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

    .meanwhile-card {
        flex: 1;
    }

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

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

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

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

    .stat-item {
        flex: 1;
    }

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

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

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

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

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