
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #ffffff;
    text-align: center;
}



.header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e0e0e0;
    padding: 20px;
    gap: 20px;
    position: relative;
}

.logo {
    height: 50px;
    width: 50px;
}

.searchbar {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    max-width: 400px;
}

.cart-icon {
    position: absolute;
    right: 20px;
    display: flex;
    align-items: center;
}

.cart-icon img {
    height: 30px;
    width: 30px;
}

nav {
    background-color: #c0c8d0;
    padding: 15px 0;
}

.nav-menu {
    display: flex;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0 20px;
}

.nav-menu li a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    padding: 10px 30px;
    background-color: #627DAE;
    border-radius: 25px;
    transition: background-color 0.3s ease;
}

.nav-menu li a:hover {
    background-color: #50699A;
}

/* Contact Section */
.contact-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f0f8ff;
}

.contact-section h1 {
    color: #333;
    margin-bottom: 40px;
}

.qr-codes {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.qr-item {
    text-align: center;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.qr-item:hover {
    transform: scale(1.05);
}

.qr-item img {
    width: 150px;
    height: 150px;
    border-radius: 10px;
}

.qr-item p {
    margin-top: 15px;
    font-size: 16px;
    color: #627DAE;
    font-weight: bold;
}
