.navbar {
    transform: translateY(0) !important;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    align-items: center;
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

body::before,
body::after {
    display: none !important;
}

.page-content {
    flex: 1;
    width: 100%;
    max-width: 1000px;
    padding: 4rem 2rem;
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: 700;
    color: #0b4f6c;
    margin-bottom: 2.5rem;
}

.products-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.product-card {
    flex: 1 1 300px;
    max-width: 400px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 24px;
    box-shadow: 0 12px 24px rgba(11, 79, 108, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 2rem 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 30px rgba(11, 79, 108, 0.15);
}

.product-img {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(11, 79, 108, 0.2));
}

.product-card h3 {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #0b4f6c;
    margin-bottom: 0.8rem;
}

.product-card p {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    font-size: 0.95rem;
    color: #2c4b5c;
    line-height: 1.6;
}

.product-price {
    font-size: 3rem;
    font-weight: 700;
    color: #b3e5fc;
    margin-top: 1.5rem;
    filter: blur(2px);
    opacity: 0.8;
    user-select: none;
    transition: filter 0.3s ease, opacity 0.3s ease; 
}

.product-price:hover {
    filter: blur(0);
    opacity: 1;
}

.product-price:active {
    filter: blur(0);
    opacity: 1;
}

.bottom-section {
    width: 100%;
    max-width: 800px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.company-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.company-name {
    font-size: 0.9rem;
    color: #2c4b5c;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    .products-grid {
        flex-direction: column;
        align-items: center;
    }
    .product-card {
        max-width: 90%;
    }
}

.product-card {
    opacity: 0; 
}

.product-card:first-child {
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.product-card:last-child {
    animation: fadeInUp 0.8s ease 0.5s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}