body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fdfdfd;
    color: #333333;
}
header {
    background-color: #1e212d;
    background-image: url("Handicraft.jpg");
     color: #fff;
    padding: 1rem 0;
    text-align: center;
}
nav {
    display: flex;
    justify-content: center;
    background: #4b4b4b;
    padding: 0.75rem 0;
}
nav a {
    color: #fff;
    text-decoration: none;
    margin: 0 1.5rem;
    font-weight: bold;
}
nav a:hover {
    color: #ffcc00;
}
section {
    padding: 2rem;
    max-width: 1200px;
    margin: auto;
}
.about {
    display: flex;
    justify-content: space-between; /* Keeps text on left & image on right */
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center; /* Aligns items vertically */
}

.about-text {
    max-width: 500px; /* Adjust width if needed */
    text-align: left; /* Ensures text aligns to the left */
    flex: 1; /* Allows text to take available space */
    font-size: large;
    font-weight: bold;
}

.image {
    max-width: 700px;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
    margin-left: 0px;
}

.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}
.product {
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.product img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 0.5rem;
}
.product h3 {
    margin: 0.5rem 0;
    font-size: 1.2rem;
}
.product p {
    margin: 0.5rem 0;
    font-size: 1rem;
}
.contact-form {
    max-width: 600px;
    margin: 2rem auto;
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.contact-form input, .contact-form textarea, .contact-form button {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.contact-form button {
    background: #1e212d;
    color: #fff;
    border: none;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
}
.contact-form button:hover {
    background: #333;
}
footer {
    text-align: center;
    padding: 1rem 0;
    background: #1e212d;
    color: #fff;
    margin-top: 2rem;
}
.contact-us {
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 20px;

}

