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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background: #f5f5f5;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    background: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header h1 {
    color: #e74c3c;
    font-size: 24px;
}

header nav {
    display: flex;
    gap: 20px;
}

header nav a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
}

header nav a:hover {
    color: #e74c3c;
}

.hero {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.hero h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #e74c3c;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
}

.btn:hover {
    background: #f0f0f0;
}

.products {
    padding: 50px 0;
    background: #fff;
    margin: 20px 0;
}

.products h3 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.card {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
}

.card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.card h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.price {
    color: #e74c3c;
    font-weight: 700;
    font-size: 18px;
}

.contact {
    background: #fff;
    padding: 40px 0;
    text-align: center;
}

.contact h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.contact p {
    color: #666;
    margin-bottom: 8px;
}

footer {
    background: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
}