/* Header Styling */
.site-header {
    background-color: #2c3e50;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
}

.site-header .logo img {
    height: 50px;
}

.site-header nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
}

.site-header nav ul li a {
    color: white;
    font-weight: bold;
    transition: color 0.3s ease;
}

.site-header nav ul li a:hover {
    color: #f39c12;
}

/* Hero Section */
.hero {
    text-align: center;
    background-color: #ecf0f1;
    padding: 50px 20px;
}

.hero img {
    width: 100%;
    max-height: 300px;
    object-fit: cover;
}

.hero h1 {
    margin: 20px 0 10px;
    font-size: 2.5rem;
    color: #2c3e50;
}

.hero p {
    font-size: 1.2rem;
    color: #34495e;
}

/* Features Section */
.features {
    padding: 20px;
    background-color: #ffffff;
    text-align: center;
}

.features h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.features ul {
    list-style: none;
    padding: 0;
}

.features ul li {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #34495e;
}

/* Footer */
.site-footer {
    background-color: #2c3e50;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}

.inventory-container {
    margin: 20px;
}

