
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.container h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.container p {
    text-align: center;
    font-size: 1.4em;
    line-height: 1.6;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: #666;
    margin-bottom: 30px;
}

.container p a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: bold;
}

.container p a:hover {
    text-decoration: underline;
}
.product-section {
    background-color: #fff;
    padding: 40px 0;
    margin-top: 40px; /* Increase the margin between navbar and product-section */
}

.product-section h1 {
    text-align: center;
    margin-bottom: 20px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    justify-items: center;
}

.product-card1 {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    width: 100%;
    max-width: 300px; /* Adjust max-width as needed */
}

.product-card1:hover {
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
}

.product-image1 img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom: 1px solid #ddd;
}

.product-details1 {
    padding: 15px;
}

.product-details1 h2 {
    font-size: 1.2em;
    margin-top: 0;
}

.product-details1 p {
    margin: 10px 0;
    font-size: 0.9em;
}

.price {
    font-weight: bold;
    font-size: 1.6em;
    color: #333;
}

.order-button {
    display: block;
    width: 100%;
    text-align: center;
    padding: 10px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.order-button:hover {
    background-color: #45a049;
}

@media (max-width: 768px) {
    .product-grid1 {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fefefe;
    margin: 5% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 10px 10px 10px 10px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

label {
    display: block;
    margin: 15px 0 5px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: 500;
    
}

input {
    width: 100%;
    padding: 10px;
    margin: 5px 0 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

#submit {
    background-color: #4CAF50;
    color: white;
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    font-weight: 700;
}

#submit:hover {
    background-color: #45a049;
}