body {
    padding-top: 88px;
}

.navbar {
    padding-top: 14px;
    padding-bottom: 14px;
}

.navbar .nav-link {
    padding-top: .75rem;
    padding-bottom: .75rem;
}

.navbar .navbar-brand {
    padding-top: .25rem;
    padding-bottom: .25rem;
}

.section-title {
    position: relative;
    display: inline-block;
}

/* Smaller section heading */
.section-title {
    font-size: 1.25rem;
}

.section-title:after {
    content: "";
    display: block;
    width: 48px;
    height: 3px;
    background: #0d6efd;
    margin: 8px auto 0;
}

.hero {
    position: relative;
}

.hero-bg {
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.25));
}

.hero > .container {
    position: static;
}

.hero-content {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 800px;
    z-index: 2;
    margin: 0 auto;
    padding-right: 12px;
    padding-left: 12px;
}

/* Smaller hero main title */
.hero .display-6 {
    font-size: 1.75rem;
}

.product-card .card-img-top {
    height: 180px;
    object-fit: cover;
}

.adv-card {
    background: #fff;
    border: 1px solid #edf1f5;
    border-radius: 12px;
}

.adv-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 0 4px #fff;
}

.case-card {
    border: 1px solid #edf1f5;
}

.news-card .card-img-top {
    height: 160px;
    object-fit: cover;
}

.news-excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.footer-links a {
    color: #adb5bd;
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}

.qr-img {
    width: 220px;
    height: 220px;
    object-fit: contain;
}

.qr-box {
    box-shadow: 0 6px 24px rgba(0,0,0,.08);
}

.cta-strong {
    background: linear-gradient(135deg, #0d6efd, #2b63ff);
}

.back-to-top {
    position: fixed;
    right: 16px;
    bottom: 20px;
    z-index: 1000;
    display: none;
}

@media (max-width: 576px) {
    .hero {
        min-height: 420px;
        width: block;
    }
    
    .hero-bg {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        max-height: none;
    }
    .hero-content {
        padding-right: 24px;
    }
}


