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

:root {
    --primary-color: #2c5f2d;
    --secondary-color: #97c140;
    --accent-color: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --text-muted: #6a6a6a;
    --bg-light: #f8f9f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

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

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

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

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

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

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

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

.main-nav {
    display: none;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.main-nav a {
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

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

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

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

.main-nav.mobile-open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow);
}

.main-nav.mobile-open ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
}

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

.main-nav.mobile-open a {
    display: block;
    padding: 1rem 20px;
}

.hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 4rem 0;
}

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

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

.hero p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

.page-hero h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.page-hero p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.cta-button:hover {
    background-color: #e55a28;
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

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

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

section {
    padding: 4rem 0;
}

section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

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

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

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

.philosophy-item {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.philosophy-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

.philosophy-icon img {
    width: 100%;
    height: 100%;
}

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

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

.featured-text h2 {
    margin-bottom: 1.5rem;
}

.featured-text p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.featured-visual {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.text-link {
    color: var(--primary-color);
    font-weight: 600;
    border-bottom: 2px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--secondary-color);
    border-bottom-color: var(--primary-color);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

.process-step {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

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

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

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

.benefit-block h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

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

.insight-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.insight-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    overflow: hidden;
}

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

.faq-question:hover {
    background-color: #e8ede0;
}

.faq-icon {
    font-size: 1.5rem;
    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-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1.2rem;
    color: var(--text-light);
}

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

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

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

.trust-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

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

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

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

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

.story-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

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

.value-card {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.team-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: var(--text-light);
}

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

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

.team-member h3 {
    color: var(--primary-color);
    margin-bottom: 0.3rem;
}

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

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

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

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

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

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

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

.approach-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

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

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

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

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

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

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

.commitment-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

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

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

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

.service-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.service-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

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

.service-description {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.service-features li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

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

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

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

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

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

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

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

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

.comparison-column h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.comparison-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.comparison-column li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.comparison-column li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1;
}

.comparison-note {
    margin-top: 2rem;
    text-align: center;
    color: var(--text-light);
    font-style: italic;
}

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

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

.contact-details {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.contact-item {
    margin-bottom: 2rem;
}

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

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

.contact-item a {
    color: var(--primary-color);
    font-weight: 600;
}

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

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

.contact-description h2 {
    margin-bottom: 1.5rem;
}

.contact-description h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.contact-description p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

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

.company-info-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

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

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

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

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

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

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

.workshop-location-info p {
    max-width: 800px;
    margin: 0 auto 1.2rem;
    color: var(--text-light);
}

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

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

.thank-you-content h1 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.thank-you-content p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.next-steps {
    background-color: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    text-align: left;
}

.next-steps h2 {
    margin-bottom: 1rem;
}

.next-steps ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.next-steps li {
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-light);
}

.next-steps li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

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

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

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

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

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

.meanwhile-item p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

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

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

.legal-text h2 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
}

.legal-text ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.8rem;
    color: var(--text-light);
}

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

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

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

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

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

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

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

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    background-color: var(--secondary-color);
    color: white;
}

.cookie-btn:hover {
    background-color: #86ad35;
}

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

.cookie-btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.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: 20px;
}

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

.modal-content {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-content h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background-color: var(--bg-light);
    border-radius: 6px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 28px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

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

    .main-nav {
        display: block;
    }

    .main-nav.mobile-open {
        position: static;
        box-shadow: none;
        border-top: none;
    }

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

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

    section h2 {
        font-size: 2.2rem;
    }

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

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

    .featured-content {
        flex-direction: row;
        align-items: center;
    }

    .featured-text {
        flex: 1;
    }

    .featured-visual {
        flex: 0 0 350px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .comparison-column {
        flex: 1;
    }

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

    .contact-details {
        flex: 0 0 350px;
    }

    .contact-description {
        flex: 1;
    }

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

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

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

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

    .meanwhile-item {
        flex: 1;
    }

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

    .footer-column {
        flex: 1;
    }

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

    .cookie-buttons {
        flex-wrap: nowrap;
    }
}

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

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

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

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