/* Base styles - Clean Flat Design */
body {
    padding-bottom: 20px;
    font-family: 'Quattrocento Sans', sans-serif;
    font-size: 18px;
    color: #374151;
    line-height: 1.625;
}

/* Design System Variables - Clean Flat Design */
:root {
    /* Bootstrap overrides */
    --bs-primary: #8b9456;
    --bs-primary-rgb: 139, 148, 86;
    --bs-body-bg: #ffffff;

    /* WINE TONES - Primary palette */
    --primary-color: #6b2c3e;
    --primary-dark: #4a1f2b;
    --primary-light: #8f4058;

    /* WHISKEY TONES - Warm accents */
    --accent-gold: #d4a574;
    --accent-amber: #b8814a;
    --accent-honey: #e8c298;

    /* CIDER & EARTH - Secondary palette */
    --earth-green: #8b9456;
    --earth-brown: #8d7355;
    --earth-terracotta: #a67c5d;

    /* WHITE WINE - Light accents */
    --wine-white: #f9f6e8;
    --wine-cream: #f4eed9;

    /* SCANDINAVIAN NEUTRALS */
    --nordic-white: #ffffff;
    --nordic-snow: #fafbfc;
    --birch: #f5f1e8;
    --birch-light: #faf8f3;

    /* NORDIC GRAYS */
    --nordic-gray-50: #f8f9fa;
    --nordic-gray-100: #e9ecef;
    --nordic-gray-200: #d9dce0;
    --nordic-gray-300: #c1c7cd;
    --nordic-gray-400: #9ca3af;
    --nordic-gray-500: #6b7280;
    --nordic-gray-600: #4b5563;
    --nordic-gray-700: #374151;
    --nordic-gray-800: #1f2937;

    /* TEXT COLORS */
    --text-color: #374151;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-dark: #1f2937;

    /* BORDERS */
    --border-color: #d9dce0;
    --border-light: #e9ecef;

    /* SEMANTIC COLORS */
    --color-success: #8b9456;
    --color-warning: #d4a574;
    --color-info: #8f4058;
    --color-danger: #6b2c3e;

    /* LEGACY COMPATIBILITY */
    --secondary-color: #8f4058;
    --accent-color: #d4a574;
    --dark-color: #1f2937;
    --light-color: #faf8f3;
    --white: #ffffff;
    --gray: #e9ecef;

    /* SPECIAL PURPOSE */
    --support-chat-bg: #6b2c3e;
    --tip-button-bg: #d4a574;
    --progress-gradient-start: #6b2c3e;
    --progress-gradient-end: #d4a574;

    /* TYPOGRAPHY */
    --font-family-primary: 'Quattrocento Sans', sans-serif;
    --font-family-heading: 'Amarante', cursive;
    --font-family-subheading: 'IM Fell French Canon', serif;

    /* FONT SIZES */
    --font-size-xs: 0.875rem;
    --font-size-sm: 1rem;
    --font-size-base: 1.125rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 1.75rem;
    --font-size-3xl: 2.25rem;
    --font-size-4xl: 2.75rem;
    --font-size-5xl: 3.5rem;

    /* FONT WEIGHTS */
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* LINE HEIGHTS */
    --line-height-tight: 1.25;
    --line-height-snug: 1.375;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.625;
    --line-height-loose: 2;

    /* SPACING SCALE */
    --space-1: 0.5rem;
    --space-2: 1rem;
    --space-3: 1.5rem;
    --space-4: 2rem;
    --space-5: 2.5rem;
    --space-6: 3rem;
    --space-7: 3.5rem;
    --space-8: 4rem;
    --space-10: 5rem;
    --space-12: 6rem;
    --space-16: 8rem;
    --space-20: 10rem;

    /* BORDER RADIUS */
    --radius-sm: 0.25rem;
    --radius-base: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.625rem;
    --radius-xl: 0.75rem;
    --radius-full: 9999px;
    --border-radius: 6px;

    /* SHADOWS */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.1);

    /* TRANSITIONS */
    --transition-fast: 150ms ease-in-out;
    --transition-base: 250ms ease-in-out;
    --transition-slow: 350ms ease-in-out;
    --transition: all 0.3s ease;

    /* Z-INDEX SCALE */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* Typography - Wine & Whiskey Design System */

/* h1 - Headlines with Amarante */
h1 {
    font-family: var(--font-family-heading);
    font-size: var(--font-size-5xl);
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    line-height: var(--line-height-tight);
    letter-spacing: 0.02em;
}

/* h2 - Subtitles with IM Fell French Canon */
h2 {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-4xl);
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    line-height: var(--line-height-snug);
}

/* h3 - Subtitles with IM Fell French Canon */
h3 {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-3xl);
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
    line-height: var(--line-height-snug);
}

/* h4 - Subtitles with IM Fell French Canon */
h4 {
    font-family: var(--font-family-subheading);
    font-size: var(--font-size-2xl);
    font-weight: normal;
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

/* h5 - Body font (Quattrocento Sans) */
h5 {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--space-2);
}

/* h6 - Body font (Quattrocento Sans) */
h6 {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-bold);
    color: var(--text-dark);
    margin-bottom: var(--space-1);
}

/* Responsive typography */
@media (max-width: 768px) {
    h1 {
        font-size: var(--font-size-4xl);
    }
    h2 {
        font-size: var(--font-size-3xl);
    }
    h3 {
        font-size: var(--font-size-2xl);
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: var(--font-size-3xl);
    }
    h2 {
        font-size: var(--font-size-2xl);
    }
}

/* Button Styles - Clean Flat Design */

/* Default button */
.btn {
    display: inline-block;
    background: #8b9456;
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-primary);
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
    margin-bottom: 0.75rem;
    margin-right: 0.5rem;
    min-height: 48px;
}

.btn:hover {
    background: #7a8349;
    text-decoration: none;
    color: var(--white);
}

.btn:active {
    background: #6a7340;
}

.btn:last-child {
    margin-right: 0;
}

.btn-full {
    width: 100%;
    margin-right: 0;
}

/* Button spacing for stacked layouts */
.btn + .btn {
    margin-top: var(--space-1);
}

/* Button groups */
.btn-group .btn {
    margin-bottom: 0;
    margin-right: 0;
}

.btn-group .btn:not(:last-child) {
    margin-right: var(--space-1);
}

/* Specific button spacing classes */
.btn-spaced {
    margin-bottom: var(--space-2);
}

.btn-spaced-lg {
    margin-bottom: var(--space-3);
}

/* Primary button */
.btn-primary {
    background: #8b9456;
    border-color: #8b9456;
    color: var(--white) !important;
}

.btn-primary:hover {
    background: #7a8349;
    border-color: #7a8349;
    color: var(--white) !important;
}

.btn-primary:focus,
.btn-primary.focus {
    background: #7a8349;
    border-color: #7a8349;
    color: var(--white) !important;
    box-shadow: none;
}

.btn-primary:active,
.btn-primary.active {
    background: #6a7340;
    border-color: #6a7340;
    color: var(--white) !important;
}

/* Secondary button */
.btn-secondary {
    background: var(--white);
    border: 1px solid #dee2e6;
    color: var(--text-color) !important;
}

.btn-secondary:hover {
    background: #f8f9fa;
    border-color: #8b9456;
    color: var(--text-color) !important;
}

/* Warning/Accent button */
.btn-warning {
    background: #d4a574;
    border-color: #d4a574;
    color: var(--white) !important;
}

.btn-warning:hover {
    background: #c09463;
    border-color: #c09463;
    color: var(--white) !important;
}

/* Success button */
.btn-success {
    background: #8b9456;
    border-color: #8b9456;
    color: var(--white) !important;
}

.btn-success:hover {
    background: #7a8349;
    border-color: #7a8349;
    color: var(--white) !important;
}

.tagline {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

/* Navbar modifications */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}
/* Footer link hover effects */
footer a.text-white-50:hover {
    color: #ffffff !important;
    transition: color 0.3s ease;
}
/* Additional styling for better visual hierarchy */
footer h5 {
    color: #ffffff;
    font-weight: 600;
}

footer h6 {
    color: #ffffff;
    font-weight: 500;
    margin-bottom: 1rem;
}


/* Hero Section */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/1-min.png');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    padding: 10rem 1rem 5rem;
    margin-top: 0;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.hero .tagline {
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.coming-soon {
    background-color: rgba(0, 0, 0, 0.5);
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 5px;
    margin-top: 1rem;
}

.coming-soon p {
    margin-bottom: 0.5rem;
    color: var(--white);
}

/* Info Section */
.info {
    padding: 5rem 1rem;
    background-color: var(--light-color);
}

.info .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.info-content {
    flex: 1;
    min-width: 300px;
}

.info-image {
    flex: 1;
    min-width: 300px;
}

.info-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.minimal-work {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    background-color: rgba(90, 125, 42, 0.1);
    padding: 1rem;
    border-radius: 8px;
}

.minimal-work-img {
    width: 100px;
    margin-right: 1rem;
}

.minimal-work p {
    font-weight: 600;
    margin-bottom: 0;
}

.features {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.feature {
    flex: 1;
    min-width: 250px;
    background-color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta {
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.cta h2 {
    color: var(--white);
}

.cta a {
    color: var(--accent-color);
}

.cta .btn {
    background-color: var(--accent-color);
    color: var(--dark-color);
    margin-top: 1rem;
}

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

/* Marketplace Section */
.marketplace {
    padding: 5rem 1rem;
    background-color: var(--white);
    text-align: center;
}

.marketplace-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.marketplace-feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.marketplace-feature:hover {
    transform: translateY(-5px);
}

.marketplace-feature i {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.marketplace-cta {
    margin-top: 3rem;
    padding: 2rem;
    background-color: var(--light-color);
    border-radius: 10px;
    text-align: center;
}

.marketplace-cta p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

/* Guided Tour Section */
.guided-tour {
    padding: 5rem 1rem;
    background-color: var(--white);
}

.guided-tour .container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
}

.guided-tour-image {
    flex: 1;
    min-width: 300px;
}

.guided-tour-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.guided-tour-content {
    flex: 1;
    min-width: 300px;
}

.guided-tour-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.guided-tour-content ul li {
    margin-bottom: 0.5rem;
}

/* Process Section */
.process {
    padding: 5rem 1rem;
    text-align: center;
    background-color: var(--light-color);
}

.steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 280px;
    position: relative;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

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

.step p {
    margin-bottom: 1.5rem;
}

.step-img {
    width: 100%;
    border-radius: 8px;
    margin-top: 1rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qr-mobile-images {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* AI Features Section */
.ai-features {
    padding: 5rem 1rem;
    background-color: var(--gray);
    text-align: center;
}

.ai-feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.ai-feature {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ai-feature:hover {
    transform: translateY(-5px);
}

.ai-feature i {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Producer Benefits Section */
.producer-benefits {
    padding: 5rem 1rem;
    background-color: var(--white);
    text-align: center;
}

.benefits-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.benefit {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.benefit i {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Pricing Section */
.pricing {
    padding: 5rem 1rem;
    background-color: var(--gray);
    background-image: linear-gradient(rgba(233, 236, 239, 0.9), rgba(233, 236, 239, 0.9)), url('../img/8-min.png');
    background-size: cover;
    background-position: center;
    text-align: center;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.price-card {
    flex: 1;
    min-width: 280px;
    max-width: 400px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease;
}

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

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

.price-header {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 2rem 1rem;
}

.price-header h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.price {
    font-size: 1.75rem;
    font-weight: bold;
    color: var(--accent-color);
}

.price-features {
    padding: 2rem;
    text-align: left;
    list-style: none;
}

.price-features li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.price-features i {
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0.25rem;
}

.price-note {
    padding: 0 2rem 2rem;
    font-size: 0.9rem;
    color: #666;
}

/* Stats Section */
.stats {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 5rem 1rem;
    text-align: center;
}

.stats .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat {
    flex: 1;
    min-width: 200px;
}

.stat h2 {
    color: var(--accent-color);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background-color: var(--light-color);
    text-align: center;
}

.contact-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
    text-align: left;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

/* Form Styles - Wine & Whiskey Design */

.form-group {
    margin-bottom: var(--space-4);
}

.form-group label,
.form-label {
    display: block;
    margin-bottom: var(--space-2);
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-subheading);
    font-size: 1.125rem;
    color: var(--text-dark);
    letter-spacing: 0.01em;
}

.form-group input,
.form-group select,
.form-group textarea,
.form-control {
    width: 100%;
    padding: var(--space-2);
    border: 2px solid var(--nordic-gray-300);
    border-radius: var(--radius-base);
    font-size: var(--font-size-base);
    font-family: var(--font-family-primary);
    background: var(--nordic-white);
    min-height: 48px;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-control:focus {
    border-color: #8b9456;
    background: var(--white);
    outline: none;
    box-shadow: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    min-height: auto;
    margin-right: var(--space-1);
    margin-top: var(--space-1);
}

.form-group.checkbox label {
    font-weight: normal;
    font-size: var(--font-size-base);
    font-family: var(--font-family-primary);
}

/* Form sections */
.form-section {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

/* Card Styles - Clean Flat Design */

.card {
    background: var(--white);
    border: 1px solid #dee2e6;
    border-radius: 4px;
    transition: none;
    overflow: hidden;
}

.card:hover {
    border-color: #8b9456;
}

.card-header {
    background: #f8f9fa;
    border-bottom: 1px solid #dee2e6;
    padding: 1.5rem;
    font-weight: var(--font-weight-semibold);
    font-family: var(--font-family-subheading);
    color: var(--text-dark);
}

.card-body {
    padding: 1.5rem;
    color: var(--text-color);
    line-height: var(--line-height-relaxed);
}

.card-footer {
    background: #f8f9fa;
    border-top: 1px solid #dee2e6;
    padding: 1.5rem;
}

.contact-info {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
}

.contact-highlight {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
}

.contact-highlight h4 {
    color: var(--white);
}

.contact-highlight ul {
    list-style: none;
}

.contact-highlight ul li {
    margin-bottom: 0.5rem;
}

/* Modal
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
} */

.close {
    position: absolute;
    top: 1rem;
    right: 1.5rem;
    font-size: 1.5rem;
    font-weight: bold;
    cursor: pointer;
}

/* Form status */
.form-status {
    margin-top: 1rem;
}

.success-message {
    background-color: rgba(90, 125, 42, 0.2);
    color: var(--primary-color);
    padding: 1rem;
    border-radius: 5px;
    font-weight: 600;
}

/* Responsive design */
@media (max-width: 992px) {
    .steps {
        gap: 1.5rem;
    }
    
    .step {
        min-width: 220px;
    }
}

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

    h2 {
        font-size: 1.75rem;
    }

    .hero {
        padding: 8rem 1rem 3rem;
    }

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

    .feature,
    .step,
    .stat,
    .marketplace-feature,
    .ai-feature,
    .benefit {
        min-width: 100%;
    }

    .info .container,
    .features,
    .steps,
    .stats .container,
    .guided-tour .container,
    .marketplace .container,
    .ai-features .container,
    .producer-benefits .container {
        flex-direction: column;
    }
    
    .step {
        min-width: 100%;
        max-width: 400px;
    }
    
    .info-image,
    .guided-tour-image {
        order: -1;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-info {
        max-width: 100%;
    }

    .minimal-work {
        flex-direction: column;
        text-align: center;
    }

    .minimal-work-img {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}