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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #FFF /* #f5f5f5; */
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Header Styles */
header {
    background-color: #fff;
    border-bottom: 1px solid #ccc;
}

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

header .logo a {
    text-decoration: none;
    font-size: 24px;
    color: #333;
}

.nav-menu {
    list-style: none;
    display: flex;
}

.nav-menu li {
    margin-left: 20px;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-menu a:hover {
    color: #007BFF;
}

/* Main Content Styles */
main {
    padding: 20px 0;
}

/* Footer Styles */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
}

.footer-columns {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-column h3 {
    margin-bottom: 10px;
}

.footer-column p,
.footer-column ul {
    color: #ccc;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul a {
    text-decoration: none;
    color: #ccc;
}

.footer-column ul a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    color: #777;
}

/* Social Media Icons */
.social-media {
    list-style: none;
    display: flex;
    padding: 0;
}

.social-media li {
    margin-right: 10px;
}

.social-media a {
    text-decoration: none;
    color: #ccc;
}

.social-media a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-menu {
        flex-direction: column;
        width: 100%;
    }

    .nav-menu li {
        margin-left: 0;
        margin-bottom: 10px;
    }

    .footer-columns {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-column {
        margin: 10px 0;
    }
}

.navbar {
    background-color: #f8f9fa;
}

.navbar-brand span {
    font-weight: bold;
    font-size: 1.5rem;
}

.navbar-brand img {
    border-radius: 5px;
}

.nav-link {
    color: #333;
}

.nav-link:hover {
    color: #007bff;
}

/* Product Cards */
.card-img-top {
    object-fit: cover;
    height: 200px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: bold;
}

.card-text {
    font-size: 0.9rem;
}

.btn-success {
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    background-color: #218838;
    border-color: #1e7e34;
}

/* Logo Image Styling */
.logo-img {
    width: 250px;
    height: 250px;
    object-fit: contain;
}

@media (max-width: 767px) {
    .logo-img {
        width: 100px;
        height: 100px;
    }
}

/* Site Name Styling */
.site-name {
    font-size: 1.5rem;
    font-weight: bold;
}

@media (max-width: 767px) {
    .site-name {
        font-size: 1.2rem;
    }
}
