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

:root {
    --primary-color: #8B4513;
    --secondary-color: #D2691E;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f9f6f2;
    --bg-white: #ffffff;
    --accent-warm: #C19A6B;
    --border-color: #e0d5c7;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    font-size: 16px;
    background: var(--bg-white);
}

/* Typography */
h1 {
    font-size: 2.2rem;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h2 {
    font-size: 1.8rem;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.6rem;
    color: var(--text-dark);
}

p {
    margin-bottom: 1rem;
}

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

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

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

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

/* Navigation */
.nav-minimal {
    background: var(--bg-white);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.nav-links a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-visual {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--bg-white);
    padding: 2rem;
    max-width: 800px;
}

.hero-overlay h1 {
    color: var(--bg-white);
    font-size: 2.8rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.95rem;
}

.cta-hero:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

/* Section Styles */
section {
    padding: 4rem 0;
}

.story-intro {
    background: var(--bg-light);
    padding: 5rem 0;
}

.story-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.emphasis-text {
    font-size: 1.2rem;
    font-style: italic;
    color: var(--primary-color);
    margin-top: 2rem;
    font-weight: 500;
}

/* Problem Amplification */
.problem-amplification {
    padding: 5rem 0;
}

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

.content-left img,
.content-right img {
    width: 100%;
    border-radius: 8px;
}

.problem-list {
    list-style: none;
    margin: 1.5rem 0;
}

.problem-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.problem-list li:before {
    content: "✗";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

/* Insight Section */
.insight-section {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 5rem 0;
}

.insight-box h2,
.insight-box p {
    color: var(--bg-white);
}

.insight-box {
    padding: 2rem;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
}

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

.showcase-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.showcase-item img {
    width: 100%;
    display: block;
    transition: transform 0.3s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-caption {
    padding: 1.5rem;
    background: var(--bg-light);
}

/* Storytelling Section */
.story-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
}

/* Trust Building */
.trust-building {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

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

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

.testimonial-text {
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.95rem;
}

/* Benefits Grid */
.benefits-reveal h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

/* CTA Sections */
.cta-mid {
    background: var(--secondary-color);
    padding: 4rem 0;
}

.cta-box {
    text-align: center;
    padding: 2rem;
}

.cta-box h3 {
    color: var(--bg-white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.cta-box p {
    color: var(--bg-white);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--primary-color);
    font-weight: 600;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* Collection Preview */
.collection-preview {
    padding: 5rem 0;
    background: var(--bg-light);
}

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

.collection-showcase {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.collection-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.collection-info {
    padding: 2rem;
}

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

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-light);
}

.pricing-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 8px;
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.price-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
}

.price-card.featured {
    background: var(--bg-white);
    border: 2px solid var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-card h4 {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.description {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

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

.btn-select {
    width: 100%;
    padding: 0.8rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn-select:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Urgency Section */
.urgency-section {
    background: #fff4e6;
    padding: 3rem 0;
}

.urgency-box {
    text-align: center;
    padding: 2rem;
    border: 2px dashed var(--secondary-color);
    border-radius: 8px;
}

.urgency-note {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 1.1rem;
}

/* Form Section */
.form-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.form-intro {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-light);
}

.order-form {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-weight: normal;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta {
    background: var(--text-dark);
    padding: 5rem 0;
}

.final-message {
    text-align: center;
}

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

.final-message p {
    color: var(--bg-white);
    opacity: 0.9;
    margin-bottom: 2rem;
}

.btn-final {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 3rem 0 1rem;
}

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

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

.footer-col p {
    color: rgba(255,255,255,0.7);
}

.footer-col a {
    display: block;
    color: rgba(255,255,255,0.7);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--bg-white);
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    padding: 1rem;
    text-align: center;
    z-index: 99;
    transform: translateY(100%);
    animation: slideUp 0.5s 1s forwards;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

.sticky-btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: var(--bg-white);
    color: var(--primary-color);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 1.5rem;
    z-index: 1000;
    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;
    text-align: center;
}

.cookie-content a {
    color: var(--accent-warm);
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: var(--bg-white);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: var(--accent-warm);
}

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

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

/* About Page Styles */
.page-hero {
    text-align: center;
    padding: 4rem 0;
    background: var(--bg-light);
}

.lead {
    font-size: 1.2rem;
    color: var(--text-light);
}

.about-intro {
    padding: 5rem 0;
}

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

.about-image img {
    width: 100%;
    border-radius: 8px;
}

.values-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

.value-item {
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

.team-section {
    padding: 5rem 0;
}

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

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

.member-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin: 0 auto 1rem;
}

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

.process-section {
    background: var(--bg-light);
    padding: 5rem 0;
}

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

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

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

.philosophy-section {
    padding: 5rem 0;
}

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

/* Services Page */
.collections-intro {
    text-align: center;
    padding: 2rem 0;
}

.products-section {
    padding: 5rem 0;
}

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

.product-card {
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.product-card.featured {
    border: 2px solid var(--primary-color);
}

.featured-label {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.product-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
}

.product-info {
    padding: 2rem;
}

.product-material {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

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

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding: 0.4rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: var(--text-light);
}

.product-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.product-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.btn-product {
    display: block;
    text-align: center;
    padding: 0.8rem;
    background: var(--primary-color);
    color: var(--bg-white);
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

.customization-section,
.care-section,
.shipping-section {
    padding: 4rem 0;
}

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

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

.care-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 8px;
}

/* Contact Page */
.contact-info-section {
    padding: 4rem 0;
}

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

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

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

.contact-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.contact-map {
    background: var(--bg-light);
    border-radius: 8px;
    padding: 3rem;
}

.map-placeholder {
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 8px;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

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

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

.visit-list {
    list-style: none;
    margin: 1.5rem 0;
}

.visit-list li {
    padding: 0.6rem 0;
    padding-left: 1.8rem;
    position: relative;
}

.visit-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.faq-section {
    padding: 4rem 0;
}

.faq-item {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
}

/* Thanks Page */
.thanks-section {
    padding: 5rem 0;
    text-align: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 2rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.service-confirmation {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service {
    text-align: center;
}

.service-name {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
}

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

.steps-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
}

.steps-list li {
    margin-bottom: 0.8rem;
}

.thanks-info {
    background: #fff4e6;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

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

.thanks-extra {
    background: var(--bg-light);
    padding: 4rem 0;
}

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

.link-box {
    display: block;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.link-box:hover {
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

/* Legal Pages */
.legal-page {
    padding: 4rem 0;
}

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

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color);
}

.legal-content h3 {
    margin-top: 1.5rem;
}

.legal-content ul {
    margin: 1rem 0 1rem 1.5rem;
}

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

/* Responsive Design */
@media (min-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2.2rem;
    }

    .hero-overlay h1 {
        font-size: 3.5rem;
    }

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

    .content-left,
    .content-right {
        flex: 1;
    }

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

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

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

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

    .collection-showcase {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

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

    .team-member {
        flex: 1;
    }

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

    .footer-col {
        flex: 1;
    }

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

    .cookie-content p {
        text-align: left;
    }

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

    .thanks-links {
        flex-direction: row;
    }

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

    .contact-details,
    .contact-map {
        flex: 1;
    }

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

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

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

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

@media (min-width: 1024px) {
    .pricing-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

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

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

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

    .care-grid {
        flex-wrap: nowrap;
    }

    .care-item {
        flex: 1;
    }
}
