body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 3rem;
    background: #eef2f7;
    color: #172b4d;
}

.bg-image {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/images/minimage-first-background.png');
    background-size: cover;
    background-position: center;
    opacity: 0.8;
    filter: blur(8px);
    z-index: -1;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

h1 {
    color: #0a67c2;
}

p {
    color: #334e68;
}

.nav-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin: 1.5rem 0;
}

.nav-tabs button {
    background: #fff;
    border: 1px solid #cbd5e1;
    border-radius: 0.375rem;
    padding: 0.6rem 1rem;
    cursor: pointer;
    color: #0f172a;
    font-weight: 600;
}

.nav-tabs button.active {
    background: #0a67c2;
    color: #fff;
    border-color: #0a67c2;
}

.tab-content > div {
    display: none;
}

.tab-content > div.active {
    display: block;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-top: 1rem;
}

.product-card {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.product-card p {
    margin: 0;
    font-size: 0.88rem;
    color: #0f172a;
    text-align: center;
}

.image-grid img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 0.5rem;
    border: 1px solid #cbd5e1;
}