body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f4f7;
    color: #333;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Top Bar Styling */
.top-bar {
    background-color: #e9ecef;
    font-size: 0.8em;
    padding: 5px 0;
}

.top-contact-list {
    display: flex;
    justify-content: space-between;
}

/* Header Styling */
.header {
    background-color: #fff;
    padding: 10px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5em;
    font-weight: bold;
    color: #4CAF50; /* Green color from image */
}

.badge-icon {
    height: 30px; /* Adjust size as needed */
    margin-left: 10px;
}

/* Hero Section Styling */
.hero-banner {
    background-color: #4CAF50; /* Green background */
    color: white;
    padding: 40px 0;
    position: relative;
}

.hero-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.hero-text {
    flex: 2;
}

.hero-text h1 { font-size: 3em; margin: 0 0 10px; }
.hero-text ul { list-style: none; padding: 0; }
.hero-text li { margin-bottom: 5px; }

.hero-image { flex: 1; text-align: right; }
.doctor-img { max-width: 100%; height: auto; }

.cart-status {
    position: absolute;
    bottom: -20px;
    right: 15px;
    background-color: #FFEB3B; /* Yellow color from image */
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

/* Search Section Styling */
.search-section { padding: 40px 15px 20px; }
.search-bar-main input { padding: 10px; width: 80%; }
.search-bar-main button { padding: 10px 20px; background-color: #ddd; border: none; }
.alphabet-index { margin-top: 15px; }
.alphabet-index a { margin-right: 5px; text-decoration: none; color: #000; }

/* Banners Section Styling */
.banners {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.banner img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Products Section Styling */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.product-card {
    background-color: #fff;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    text-align: center;
}

/* Footer Styling */
.footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px 0;
    margin-top: 40px;
}
