/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

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

a:hover {
    color: #d4a574;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    padding: 1rem 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8734e;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
}

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

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

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

.nav-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 280px;
    height: calc(100vh - 70px);
    background-color: #fff;
    list-style: none;
    padding: 2rem;
    box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
}

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

.nav-menu li {
    margin-bottom: 1.5rem;
}

.nav-link {
    font-size: 1.1rem;
    color: #333;
    display: block;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: #e8734e;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #e8734e 0%, #d4a574 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

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

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #7a9e7e 0%, #d4a574 100%);
    color: #fff;
    padding: 3rem 0;
    text-align: center;
}

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

.page-intro {
    font-size: 1.1rem;
    opacity: 0.95;
}

.legal-hero {
    background: linear-gradient(135deg, #8b5e3c 0%, #d4a574 100%);
}

/* Sections */
.section {
    padding: 4rem 0;
}

.section.alt-bg {
    background-color: #f8f8f8;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.section h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #666;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.category-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    color: #666;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: #e8734e;
    color: #fff;
}

.btn-primary:hover {
    background-color: #d4653f;
    color: #fff;
}

.btn-secondary {
    background-color: transparent;
    border-color: #e8734e;
    color: #e8734e;
}

.btn-secondary:hover {
    background-color: #e8734e;
    color: #fff;
}

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

/* Feature Grids */
.features-grid,
.values-grid,
.benefits-grid,
.knowledge-grid,
.reasons-grid,
.sourcing-regions {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-card,
.value-card,
.reason-card,
.region-card,
.knowledge-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover,
.value-card:hover,
.reason-card:hover,
.region-card:hover,
.knowledge-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon,
.value-icon {
    margin-bottom: 1.5rem;
}

.feature-icon svg,
.value-icon svg {
    margin: 0 auto;
}

.feature-card h3,
.value-card h3,
.reason-card h3,
.region-card h3,
.knowledge-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.feature-card p,
.value-card p,
.reason-card p,
.region-card p,
.knowledge-card p {
    color: #666;
    line-height: 1.7;
}

/* Services Showcase */
.services-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.showcase-item {
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.showcase-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e8734e;
}

.showcase-item p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.link-arrow {
    color: #e8734e;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.link-arrow:after {
    content: '→';
    margin-left: 0.5rem;
}

/* Content Split */
.content-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.content-split.reverse {
    flex-direction: column-reverse;
}

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

.content-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

.content-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

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

.illustration {
    max-width: 100%;
    height: auto;
}

/* Benefits List */
.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e8734e;
    min-width: 60px;
}

.benefit-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.benefit-content p {
    color: #666;
    line-height: 1.7;
}

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

.testimonial-card {
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #e8734e;
}

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

.testimonial-text p {
    font-style: italic;
    color: #555;
    line-height: 1.7;
}

.testimonial-author strong {
    display: block;
    color: #333;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #999;
    font-size: 0.9rem;
}

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

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.step-marker {
    margin-bottom: 1rem;
}

.process-step h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.process-step p {
    color: #666;
    line-height: 1.7;
}

/* Stats */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.stat-item {
    text-align: center;
    min-width: 150px;
}

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

.stat-label {
    color: #666;
    font-size: 1rem;
}

/* Products Grid */
.products-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-icon {
    margin-bottom: 1.5rem;
}

.product-icon svg {
    margin: 0 auto;
}

.product-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.product-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e8734e;
}

/* Approach Section */
.approach-content {
    max-width: 900px;
    margin: 0 auto;
}

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

.approach-point h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #e8734e;
}

.approach-point p {
    color: #666;
    line-height: 1.7;
}

/* Team */
.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #666;
}

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

.team-member {
    text-align: center;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.member-icon {
    margin-bottom: 1.5rem;
}

.member-icon svg {
    margin: 0 auto;
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.member-role {
    color: #e8734e;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.team-member p {
    color: #666;
    line-height: 1.7;
}

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

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

.timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e8734e;
    min-width: 80px;
}

.timeline-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.timeline-content p {
    color: #666;
    line-height: 1.7;
}

/* Commitment Box */
.commitment-box {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
    border-left: 4px solid #7a9e7e;
}

.commitment-box h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #333;
    text-align: left;
}

.commitment-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Contact */
.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon svg {
    width: 48px;
    height: 48px;
}

.contact-text h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-text p {
    color: #666;
    line-height: 1.7;
}

.contact-note {
    font-size: 0.9rem;
    color: #999;
    margin-top: 0.5rem;
}

.info-box {
    padding: 2rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.info-box p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

/* Visit Section */
.visit-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.visit-text h3,
.visit-text h4 {
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.visit-text h3 {
    font-size: 1.3rem;
}

.visit-text h4 {
    font-size: 1.1rem;
    color: #e8734e;
}

.visit-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.map-illustration {
    max-width: 100%;
    height: auto;
}

/* Company Info */
.company-details,
.benefits-comparison,
.usage-tips {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-card,
.comparison-item,
.tip-card {
    padding: 1.5rem;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.detail-card h3,
.comparison-item h3,
.tip-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.detail-card p,
.comparison-item p,
.tip-card p {
    color: #666;
    line-height: 1.7;
}

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

.faq-item {
    margin-bottom: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.faq-icon {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

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

.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: #666;
    line-height: 1.7;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #e8734e 0%, #d4a574 100%);
    color: #fff;
    text-align: center;
}

.cta-content h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #fff;
}

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

.cta .btn-primary {
    background-color: #fff;
    color: #e8734e;
}

.cta .btn-primary:hover {
    background-color: #f8f8f8;
}

.cta .btn-secondary {
    border-color: #fff;
    color: #fff;
}

.cta .btn-secondary:hover {
    background-color: #fff;
    color: #e8734e;
}

/* Thank You */
.thank-you-section {
    padding: 4rem 0;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.thank-you-icon svg {
    margin: 0 auto;
}

.thank-you-content h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 1rem;
}

.thank-you-content p {
    color: #666;
    line-height: 1.7;
}

.what-next {
    background-color: #f8f8f8;
}

.next-steps,
.step-card {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-card {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    text-align: center;
}

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

.step-icon svg {
    margin: 0 auto;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.step-card p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.info-highlight {
    max-width: 700px;
    margin: 0 auto;
    padding: 2rem;
    background-color: #fff5f0;
    border-radius: 8px;
    border-left: 4px solid #e8734e;
}

.info-highlight h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: left;
}

.info-highlight p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.info-note {
    font-size: 0.95rem;
    color: #999;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #333;
    text-align: left;
}

.legal-text h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: #555;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.8;
}

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

.legal-text li {
    margin-bottom: 0.5rem;
    color: #666;
    line-height: 1.7;
}

.legal-text a {
    color: #e8734e;
    text-decoration: underline;
}

.legal-text strong {
    color: #333;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid #e0e0e0;
    text-align: left;
}

.cookie-table th {
    background-color: #f8f8f8;
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    color: #666;
}

/* Footer */
.footer {
    background-color: #2c2c2c;
    color: #fff;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #fff;
}

.footer-section p {
    color: #ccc;
    line-height: 1.7;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #ccc;
}

.footer-links a:hover {
    color: #e8734e;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 8px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-banner-text p {
    color: #ccc;
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.cookie-banner-text a {
    color: #e8734e;
    text-decoration: underline;
}

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

.cookie-banner-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

/* Cookie Preferences Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.cookie-modal-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.cookie-modal-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

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

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.cookie-option-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
    color: #333;
}

.cookie-option-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

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

.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-color: #ccc;
    transition: 0.3s;
    border-radius: 26px;
}

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

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #7a9e7e;
}

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

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

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

/* Media Queries */
@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }

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

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

    .nav-link {
        padding: 0;
    }

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

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

    .section h2 {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

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

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

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

    .showcase-item {
        flex: 1;
    }

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

    .content-split.reverse {
        flex-direction: row-reverse;
    }

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

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

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

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

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

    .team-member {
        flex: 1;
    }

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

    .contact-main {
        flex: 2;
    }

    .contact-aside {
        flex: 1;
    }

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

    .visit-text {
        flex: 2;
    }

    .visit-visual {
        flex: 1;
    }

    .company-details {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .comparison-item,
    .tip-card {
        flex: 1 1 calc(50% - 0.75rem);
    }

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

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

    .cookie-banner-buttons {
        flex-direction: row;
        flex-shrink: 0;
    }

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

    .footer-section {
        flex: 1;
    }

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

    .step-card {
        flex: 1;
    }

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

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

    .sourcing-regions {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

    .knowledge-card {
        flex: 1;
    }

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

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

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

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

    .product-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

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

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

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

    .process-step {
        flex: 1;
    }

    .reason-card {
        flex: 1 1 calc(33.333% - 1.333rem);
    }

    .comparison-item,
    .tip-card {
        flex: 1 1 calc(25% - 1.125rem);
    }
}