:root {
    --biomed-green: #37a346;
    --biomed-dark: #2c3e50;
    --biomed-light: #f8f9fa;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--biomed-light);
    color: var(--biomed-dark);
}

/* Navbar */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--biomed-green) !important;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(44, 62, 80, 0.7), rgba(44, 62, 80, 0.7)), url('https://images.unsplash.com/photo-1542838132-92c53300491e?q=80&w=1920&auto=format&fit=crop') center/cover;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.btn-biomed {
    background-color: var(--biomed-green);
    color: white;
    font-weight: bold;
    border-radius: 30px;
    padding: 10px 30px;
    border: none;
    transition: 0.3s;
}

    .btn-biomed:hover {
        background-color: #2b8437;
        color: white;
    }

/* Features */
.feature-icon {
    font-size: 2.5rem;
    color: var(--biomed-green);
    margin-bottom: 15px;
}

/* Product Cards */
.product-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    overflow: hidden;
    background: white;
}

    .product-card:hover {
        transform: translateY(-5px);
    }

.product-img {
    height: 250px;
    object-fit: contain;
    padding: 20px;
    background-color: #fff;
}

.price-tag {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--biomed-green);
}
