.hero {
    height: 500px;background-color: #f2f2f2;font-family: "Open Sans", sans-serif;
}
.hero h1 {margin-bottom: 25px;font-size: 40px;line-height: 1.3;}
.hero h2 {font-size: 21px;font-weight: 100;line-height: 1.6;text-transform: capitalize;}
.hero h3 {font-size: 23px;font-weight: 500;line-height: 1.6;text-transform: capitalize;}

@media (max-width:1200px) {
    .hero h1 {
        font-size: 34px;
    }
    .hero h2 {
        font-size: 20px;
    }
}
@media (max-width:992px) {
    .hero {
        height: 400px;
    }
    .hero h1 {
        font-size: 30px;
    }
    .hero h2 {
        font-size: 18px;
    }
}
@media (max-width:768px) {
    .hero {
        height: 350px;
    }
    .hero h1 {
        font-size: 27px;
    }
    .hero h2 {
        font-size: 17px;
    }
}
@media (max-width:640px) {
    .hero {
        padding-top: 30px;
        height: auto;
    }
    .hero h1 {
        font-size: 25px;
    }
}

.store-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #eee;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.105);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.store-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

/* Icon Circle Styling */
.icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: #eef4ff; /* Light blue bg matching your brand vibe */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0DA2C6; /* Bootstrap primary blue, adjust to your brand hex */
    font-size: 1.2rem;
}

.store-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.15rem;
    color: #0DA2C6;
}

/* Flex layout for icon and text alignment */
.store-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.store-info i {
    color: #0DA2C6; /* Brand color for icons */
    font-size: 1rem;
    margin-top: 4px; /* Visual alignment with text */
}

.store-info p {
    margin: 0;
}

.store-info a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
    transition: color 0.2s;
}

.store-info a:hover {
    color: #0DA2C6;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .store-card {
        padding: 1.5rem;
    }
}