/* Global Styles */
:root {
    --primary-color: #ff6b00;
    --secondary-color: #333;
    --accent-color: #ffc107;
    --orange-color: #ffc107;he
    --light-color: #f8f9fa;
    --dark-color: #212529;
    --gray-color: #6c757d;
    --light-gray-color: #e9ecef;
    --success-color: #28a745;
    --danger-color: #dc3545;
    --border-radius: 4px;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: #fff;
}

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

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

a:hover {
    color: #e05a00;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.5rem;
}

h5 {
    font-size: 1.25rem;
}

h6 {
    font-size: 1rem;
}

p {
    margin-bottom: 1.5rem;
}

/* Buttons */
.btn {
    display: inline-block;
    font-weight: 500;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: #e05a00;
    border-color: #e05a00;
}

.btn-secondary {
    color: #fff;
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-secondary:hover {
    background-color: #262626;
    border-color: #262626;
}

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

.btn-outline:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    background-color: #fff;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    padding: 1rem 0;
}

.logo img {
    height: 60px;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-nav {
    display: flex;
    list-style: none;
}

.main-nav li {
    margin-left: 1.5rem;
}

.main-nav a {
    color: var(--secondary-color);
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

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

.main-nav a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */

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

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

.hero h1 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-color);
}
.hero p i {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--orange-color);
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}
        /* Hero Section with Background Image - MAIN CHANGES HERE */
        .hero-section {
            position: relative;
            min-height: 400px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .hero-background {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px;
            /* ADD THIS: Background image from the provided URL */
            background-image: url('https://www.flatpackamigos.co.uk/themes/fpanew2/images/banner.jpg');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            /* ADD THIS: Grey overlay with opacity to maintain readability */
            background: rgba(240, 240, 240, 0.85);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            text-align: center;
            padding: 60px 20px;
            max-width: 800px;
        }

        .hero-content h1 {
            font-size: 2.5rem;
            font-weight: bold;
            color: #333;
            margin-bottom: 15px;
            /* ADD THIS: Text shadow for better readability over background */
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .hero-content p {
            font-size: 1.2rem;
            color: #666;
            margin-bottom: 30px;
            /* ADD THIS: Text shadow for better readability over background */
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .cta-button {
            display: inline-block;
            background: #ff6b35;
            color: white;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s ease;
            box-shadow: 0 2px 5px rgba(0,0,0,0.2);
        }

        .cta-button:hover {
            background: #e55a2b;
        }

/* Breadcrumbs */
.breadcrumbs {
    background-color: var(--light-gray-color);
    padding: 0.75rem 0;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list li:not(:last-child)::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--gray-color);
}

.breadcrumb-list a {
    color: var(--gray-color);
}

.breadcrumb-list a:hover {
    color: var(--primary-color);
}

.breadcrumb-list li:last-child {
    color: var(--secondary-color);
    font-weight: 500;
}

/* Content Section */
.content-section {
	
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 2rem;
}

.main-content {
    line-height: 1.7;
}

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

.main-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.main-content p {
    margin-bottom: 1.5rem;
}

.main-content ul,
.main-content ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

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

/* Feature List */
.feature-list {
    list-style: none;
    padding-left: 0;
}

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

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}
/* Video container */
.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* Process List */
.process-list {
    counter-reset: process-counter;
    list-style: none;
    padding-left: 0;
}

.process-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    counter-increment: process-counter;
}

.process-list li::before {
    content: counter(process-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.5rem;
    height: 1.5rem;
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Image Showcase */
.image-showcase {
    margin: 2rem 0;
}

.image-placeholder {
    background-color: var(--light-gray-color);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
}

.image-placeholder p {
    color: var(--gray-color);
    font-style: italic;
    margin-bottom: 0;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.benefit-item {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

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

.benefit-item h4 {
    margin-bottom: 0.5rem;
}

.benefit-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Challenges Grid */
.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.challenge-item {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.challenge-item h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.challenge-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Retailer Grid */
.retailer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.retailer-item {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

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

.retailer-item h4 {
    margin-bottom: 0.5rem;
}

.retailer-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Furniture Collections Grid */
.furniture-collections-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.furniture-collection {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.furniture-collection h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.furniture-collection p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Bed Types Grid */
.bed-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.bed-type {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.bed-type h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.bed-type p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Furniture Types Grid */
.furniture-types-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.furniture-type {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.furniture-type h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.furniture-type p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* Bed Models Grid */
.bed-models-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
}

.bed-model {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.bed-model h4 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.bed-model p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* FAQ Section */
.faq-section {
    margin: 2rem 0;
}

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

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

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

.faq-item p {
    margin-bottom: 0;
    color: var(--gray-color);
}

/* CTA Box */
.cta-box {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    margin: 3rem 0;
}

.cta-box h3 {
    margin-bottom: 1rem;
}

.cta-box p {
    margin-bottom: 1.5rem;
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    margin-bottom: 1.5rem;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sidebar-links {
    list-style: none;
    padding-left: 0;
}

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

.sidebar-links a {
    color: var(--secondary-color);
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--primary-color);
}

/* Customer Form */
.customer-form {
    background-color: var(--light-color);
    padding: 4rem 0;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #fff;
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.form-container h2 {
    margin-bottom: 1rem;
    text-align: center;
}

.form-container p {
    margin-bottom: 2rem;
    text-align: center;
    color: var(--gray-color);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray-color);
    border-radius: var(--border-radius);
    font-family: inherit;
    font-size: 1rem;
}

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

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

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

.radio-options {
    display: flex;
    gap: 1.5rem;
}

.radio-option {
    display: flex;
    align-items: center;
}

.radio-option input {
    width: auto;
    margin-right: 0.5rem;
}

.radio-option label {
    margin-bottom: 0;
    font-weight: normal;
}

.form-actions {
    text-align: center;
}

.autocomplete-results {
    position: absolute;
    background-color: #fff;
    border: 1px solid var(--light-gray-color);
    border-top: none;
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    max-height: 200px;
    overflow-y: auto;
    width: 100%;
    z-index: 10;
    display: none;
}

.autocomplete-results.show {
    display: block;
}

.autocomplete-item {
    padding: 0.75rem;
    cursor: pointer;
}

.autocomplete-item:hover {
    background-color: var(--light-color);
}

/* Footer */
footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 50px;
}

.footer-col p {
    color: #ccc;
    margin-bottom: 1rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.25rem;
}

.footer-col ul {
    list-style: none;
    padding-left: 0;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul a {
    color: #ccc;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-info li i {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin-bottom: 0;
    color: #ccc;
}

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

.footer-links a {
    color: #ccc;
    transition: var(--transition);
}

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

/* Price Table Styles - Display as Table */

.price-table {
    width: 100%;
    max-width: 800px;
    margin: 20px auto;
    border-collapse: separate;
    border-spacing: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
    background: white;
}

/* Table Header */
.price-table-header {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr 1fr;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    font-weight: bold;
}

.price-table-header2 {
    display: grid;
    grid-template-columns: 1fr 3fr 3fr;
    background: linear-gradient(135deg, #ff6b35, #e55a2b);
    color: white;
    font-weight: bold;
}

.price-header-cell {
    padding: 5px 5px;
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    align-items: center;
    justify-content: center;
}

.price-header-cell:last-child {
    border-right: none;
}

/* Table Rows */
.price-table-row {
    display: grid;
    grid-template-columns: 1fr 3fr 1fr 1fr;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.price-table-row:hover {
    background-color: #f8f9fa;
}

.price-table-row:last-child {
    border-bottom: none;
}

.price-table-row2 {
    display: grid;
    grid-template-columns: 1fr 3fr 3fr;
    border-bottom: 1px solid #e9ecef;
    transition: background-color 0.2s ease;
}

.price-table-row2:hover {
    background-color: #f8f9fa;
}

.price-table-row2:last-child {
    border-bottom: none;
}

/* Table Cells */
.price-cell {
    padding: 5px 10px;
    text-align: center;
    border-right: 1px solid #e9ecef;
    align-items: center;
    font-size: 0.95rem;
    line-height: 1.4;
}

.price-cell:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}

.price-cell:nth-child(2) {
    text-align: left;
    font-weight: 600;
    color: #666;
    font-size: 1rem;
}

.price-cell:nth-child(3) {
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 1rem;
}

.price-cell:last-child {
    text-align: center;
    font-weight: 600;
    color: #666;
    font-size: 1rem;
    border-right: none;
}

/* Alternating Row Colors */
.price-table-row:nth-child(even) {
    background-color: #f8f9fa;
}

.price-table-row:nth-child(odd) {
    background-color: white;
}

.price-table-row:nth-child(even):hover {
    background-color: #e9ecef;
}
/* Alternating Row Colors */
.price-table-row2:nth-child(even) {
    background-color: #f8f9fa;
}

.price-table-row2:nth-child(odd) {
    background-color: white;
}

.price-table-row2:nth-child(even):hover {
    background-color: #e9ecef;
}

/* Responsive Design */
@media (max-width: 768px) {
    .price-table {
        margin: 10px 5px;
        border-radius: 6px;
    }
    
    .price-table-header,
    .price-table-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .price-header-cell,
    .price-cell {
        padding: 6px 5px;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        text-align: left;
    }
    
    .price-header-cell {
        background: #ff6b35;
        font-size: 0.9rem;
        font-weight: 600;
    }
    
    .price-header-cell:last-child {
        border-bottom: none;
    }
    
    .price-cell {
        border-bottom: 1px solid #e9ecef;
        font-size: 0.9rem;
    }
    
    .price-cell:last-child {
        border-bottom: none;
        margin-bottom: 10px;
    }
    
    /* Add labels for mobile */
    .price-cell:nth-child(2)::before {
        content: "Starting From: ";
        font-weight: 600;
        color: #333;
    }
    
    .price-cell:nth-child(3)::before {
        content: "Typical Range: ";
        font-weight: 600;
        color: #333;
    }
    
    .price-table-row {
        margin-bottom: 15px;
        border: 1px solid #e9ecef;
        border-radius: 6px;
        overflow: hidden;
    }
}

/* Enhanced styling for better visual appeal */
.price-table-container {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 10px;
    margin: 20px 0;
}

/* Optional: Add a subtle animation on load */
.price-table {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Print styles */
@media print {
    .price-table {
        box-shadow: none;
        border: 1px solid #333;
    }
    
    .price-table-header {
        background: #333 !important;
        color: white !important;
    }
    
    .price-table-row:hover {
        background-color: transparent !important;
    }
}


/* Responsive Styles */
@media (max-width: 992px) {
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        padding: 1rem 0;
        box-shadow: var(--box-shadow);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .main-nav li {
        margin: 0;
    }
    
    .main-nav a {
        display: block;
        padding: 0.75rem 1.5rem;
    }
    
    .main-nav a.active::after {
        display: none;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
/* with image */    
                .hero-content h1 {
                font-size: 2rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }

    
    .benefits-grid,
    .challenges-grid,
    .retailer-grid,
    .furniture-collections-grid,
    .bed-types-grid,
    .furniture-types-grid,
    .bed-models-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .radio-options {
        flex-direction: column;
        gap: 0.5rem;
    }
}
/* with image */    
