:root {
    --primary-color: #8B6F47;
    --secondary-color: #D4A574;
    --accent-color: #C4956C;
    --dark-color: #2C2416;
    --light-bg: #FAF8F5;
    --white: #FFFFFF;
    --gray-light: #F5F3F0;
    --gray-medium: #D9D5D0;
    --gray-dark: #6B6459;
    --text-color: #3A3530;
    --border-color: #E6E3DE;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
}

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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

.header {
    background-color: var(--white);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

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

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

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

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

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

.nav-menu {
    position: fixed;
    top: 73px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 73px);
    background-color: var(--white);
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
}

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

.nav-link {
    padding: 0.75rem 1rem;
    border-radius: 8px;
    display: block;
    transition: background-color 0.3s ease;
}

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

.hero {
    background: linear-gradient(135deg, var(--light-bg) 0%, var(--gray-light) 100%);
    padding: 3rem 0;
}

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

.hero h1 {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

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

.hero-img {
    margin: 0 auto;
    max-width: 400px;
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    font-size: 1rem;
}

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

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

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

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

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

section {
    padding: 4rem 0;
}

section h2 {
    font-size: 1.875rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-intro {
    max-width: 700px;
    margin-bottom: 3rem;
}

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

.section-description {
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

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

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

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

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

.featured-collections {
    background-color: var(--white);
}

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

.collection-card {
    background-color: var(--gray-light);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-5px);
}

.collection-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.collection-content {
    padding: 1.5rem;
}

.collection-card.featured {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.collection-card.featured h3 {
    color: var(--white);
}

.story, .about-intro {
    background-color: var(--white);
}

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

.story-visual, .about-visual {
    order: -1;
}

.story-content p, .about-content p {
    margin-bottom: 1rem;
}

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

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

.benefit-item {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.benefit-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.5;
}

.stats {
    background-color: var(--primary-color);
    color: var(--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;
}

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

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

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

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-color);
}

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

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

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

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

.process-step {
    text-align: center;
}

.process-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1rem;
}

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

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

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

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

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

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

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

.faq-question:hover {
    background-color: var(--gray-light);
}

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

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

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

.faq-answer p {
    padding: 0 1.25rem 1.25rem;
    color: var(--gray-dark);
}

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

.cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-color) 100%);
    color: var(--white);
    text-align: center;
}

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

.cta p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

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

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.page-hero-subtitle {
    font-size: 1.1rem;
    color: var(--gray-dark);
    max-width: 700px;
    margin: 0 auto;
}

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

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

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

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

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

.team-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.team-avatar {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    background-color: var(--gray-medium);
}

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

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

.timeline {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

.approach-block h3 {
    color: var(--primary-color);
}

.approach-block p {
    margin-bottom: 1rem;
}

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

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

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

.sustainability-point h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

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

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

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

.services-intro {
    background-color: var(--white);
    padding: 2rem 0;
}

.intro-text {
    max-width: 800px;
    font-size: 1.1rem;
    color: var(--gray-dark);
}

.intro-text.centered {
    margin: 0 auto;
    text-align: center;
}

.services-list {
    background-color: var(--white);
}

.services-list.alt {
    background-color: var(--light-bg);
}

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

.service-card {
    background-color: var(--gray-light);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

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

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

.service-details {
    font-size: 0.875rem;
    color: var(--gray-dark);
}

.service-card.highlighted {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: var(--white);
}

.service-card.highlighted h3,
.service-card.highlighted .service-price {
    color: var(--white);
}

.service-card.highlighted .service-details {
    color: rgba(255, 255, 255, 0.9);
}

.service-card.special {
    border: 2px solid var(--primary-color);
    background-color: var(--white);
}

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

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

.benefit-col {
    text-align: center;
}

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

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

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

.comparison-row {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background-color: var(--gray-light);
    border-radius: 8px;
}

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

.comparison-cell {
    padding: 0.5rem;
}

.comparison-cell.label {
    font-weight: 600;
    color: var(--dark-color);
}

.comparison-cell.positive {
    color: var(--primary-color);
    font-weight: 600;
}

.comparison-cell.negative {
    color: var(--gray-dark);
}

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

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

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

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

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

.contact-note {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-top: 1rem;
}

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

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

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

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

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

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

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

.company-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 12px;
}

.company-detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.company-detail-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.company-detail-item strong {
    color: var(--gray-dark);
    font-size: 0.875rem;
}

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

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

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

.reason-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

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

.thank-you-content {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thank-you-box {
    text-align: center;
    max-width: 600px;
    padding: 3rem 1rem;
}

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

.thank-you-text {
    font-size: 1.1rem;
    color: var(--gray-dark);
    margin-bottom: 2rem;
}

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

.legal-page {
    background-color: var(--white);
}

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

.legal-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-updated {
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-section h3 {
    font-size: 1.2rem;
    margin: 1.5rem 0 0.75rem;
    color: var(--primary-color);
}

.legal-section p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

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

.legal-section li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
    background-color: var(--gray-light);
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-medium);
    font-size: 0.875rem;
}

.cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--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-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

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

.cookie-modal-content h3 {
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

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

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

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

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

    .nav-menu {
        position: static;
        width: auto;
        height: auto;
        flex-direction: row;
        box-shadow: none;
        padding: 0;
        gap: 0.25rem;
    }

    .hero {
        padding: 5rem 0;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }

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

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

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

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

    .collection-card.featured {
        flex: 1 1 100%;
    }

    .story-layout, .about-layout {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .story-visual, .about-visual {
        flex: 1;
        order: 0;
    }

    .story-content, .about-content {
        flex: 1;
    }

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

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

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

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

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

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

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

    .knowledge-layout {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .knowledge-content, .knowledge-visual {
        flex: 1;
    }

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

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

    .team-layout {
        flex-direction: row;
    }

    .team-member {
        flex: 1;
    }

    .sustainability-layout {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .sustainability-content, .sustainability-visual {
        flex: 1;
    }

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

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

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

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

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

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

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

    .comparison-cell {
        flex: 1;
    }

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

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

    .contact-card {
        flex: 1;
    }

    .visit-layout {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }

    .visit-content, .visit-visual {
        flex: 1;
    }

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

    .direction-item {
        flex: 1;
    }

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

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

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

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

    .footer-col {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

    .cookie-buttons {
        flex-direction: row;
    }

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

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3.5rem;
    }

    section {
        padding: 5rem 0;
    }

    section h2 {
        font-size: 2.5rem;
    }

    .philosophy-grid {
        gap: 3rem;
    }

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

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

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

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

    .trust-item {
        flex: 1 1 calc(25% - 1.5rem);
    }

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

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

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

.centered {
    text-align: center;
}

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