body {
    /*font-family: 'Helvetica Neue', Arial, sans-serif;*/
    line-height: 1.6;
    color: #333;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 30px auto;
    padding: 20px;
    background: #fff;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
    padding: 20px;
}

.product-item {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 400px;
    transition: all 0.3s ease;
}

.product-item img {
    max-width: 100%;
    object-fit: cover;
    height: 60%;
}

.product-details {
    padding: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 40%;
}

.product-title,
.product-price {
    text-align: center;
    margin: 5px 0;
}

.add-to-cart {
    background-color: #5cb85c;
    color: white;
    padding: 10px 20px;
    text-align: center;
    display: inline-block;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #489948;
}

@media (max-width: 768px) {
    .product-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-list {
        grid-template-columns: 1fr;
    }
}

.hero-banner, .about-us-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.hero-banner img {
    max-width: 100%;
    height: auto;
}

.hero-content, .c1 {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.about-us-links .c1 {
    margin: 10px;
    padding: 10px;
}

.about-us-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

@media (max-width: 768px) {
    .about-us-links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-content h1,
    .product-title,
    .product-price {
        font-size: 12px;
    }
}
