/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f8f9fa;
}

/* Header */
header {
    background-color: #343a40;
    color: white;
    padding: 15px 0;
}
header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
header button {
    margin-left: 10px;
}

/* Navbar */
.navbar {
    background-color: #ffffff;
    border-bottom: 2px solid #dee2e6;
}

/* Main Content */
main {
    padding: 20px;
    text-align: center;
}

/* Products Section */
.card {
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.card img {
    height: 200px;
    object-fit: cover;
}
.card-body button {
    margin: 5px;
}

/* Contact Form */
form {
    max-width: 600px;
    margin: auto;
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */
footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 20px;
}


#visit-stats ul li {
    margin: 8px 0;
    color: #fff;
}
#visit-stats strong {
    color: #007bff;
}
