/* General Styles */
body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    margin: 0;
    padding: 0;
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

header .logo img {
    max-width: 150px;
}

header nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
}

header .header-btn a {
    padding: 10px 20px;
    background-color: #ff9900;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Hero Section Styles */
.hero {
    text-align: center;
    padding: 100px 20px;
    background: url('hero-background.jpg') center center/cover;
    color: white;
}

.hero h1 {
    font-size: 3em;
}

.hero p {
    font-size: 1.2em;
}

.hero-btns .btn {
    padding: 10px 20px;
    background-color: #ff9900;
    color: white;
    text-decoration: none;
    margin: 10px;
    border-radius: 5px;
}

/* Product Catalog Styles */
#catalog {
    padding: 50px 20px;
}

.product-grid {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.product-item {
    background-color: white;
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 10px;
    text-align: center;
    width: calc(33% - 40px);
}

.product-item img {
    max-width: 100%;
    height: auto;
}

.product-item h3 {
    margin-top: 10px;
}

.product-item a {
    display: block;
    margin-top: 10px;
    padding: 10px;
    background-color: #ff9900;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}

/* Footer Styles */
footer {
    text-align: center;
    padding: 20px;
    background-color: #333;
    color: white;
}

footer a {
    color: white;
    text-decoration: none;
    margin-left: 10px;
}
