html {
    height: auto !important;
    overflow-y: auto !important;
}

body.inner-page {
    height: auto !important;
    min-height: 100vh !important;
    overflow-y: auto !important;

    background: #000 url('/images/bg-primary.jpg') no-repeat center top;
    background-size: cover;
    background-attachment: fixed;
}

body.inner-page header {
    background-image: none !important;
    background-color: transparent !important;
}

body.inner-page .page,
body.inner-page main.container {
    background: transparent !important;
}

body.inner-page main.container {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 50px 20px 80px !important;
}

.inner-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-top: 4px solid #29abe2;
    border-radius: 16px;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    padding: 50px 60px;
    max-width: 860px;
    width: 100%;
    animation: innerFadeUp 0.5s ease forwards;
}

@keyframes innerFadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}

.inner-card .page-title {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #000;
    text-shadow: 0 1px 4px rgba(0,0,0,0.3);
    margin-bottom: 16px;
    text-transform: uppercase;
}

.inner-card hr {
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 30px;
}

.inner-card h5 {
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    color: #29abe2;
    text-transform: uppercase;
    margin-top: -2px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.inner-card h5::before {
    content: '';
    display: inline-block;
    width: 4px;
    height: 18px;
    background: #29abe2;
    border-radius: 2px;
    flex-shrink: 0;
}

.inner-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 10px 0;
}

.inner-card ul li {
    position: relative;
    padding-left: 22px;
    margin-bottom: 10px;
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
}

.inner-card ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #29abe2;
    font-size: 1rem;
    top: 1px;
}

.inner-card p {
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0 0 10px 0;
}

@media (max-width: 768px) {
    .inner-card {
        padding: 30px 24px;
    }
    .inner-card .page-title {
        font-size: 1.3rem;
    }
}

/* =====================================================
   Ordered List (quality page)
   ===================================================== */
.inner-card ol {
    padding-left: 20px;
    margin: 0 0 10px 0;
}

.inner-card ol li {
    color: #000;
    font-weight: 600;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* =====================================================
   Tabs (quality page)
   ===================================================== */
.inner-card .nav-tabs {
    border-bottom: 2px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
}

.inner-card .nav-tabs > li > a {
    color: rgba(0, 0, 0, 0.6);
    font-weight: 700;
    font-size: 0.78rem;
    letter-spacing: 0.5px;
    border: none;
    border-bottom: 3px solid transparent;
    border-radius: 0;
    padding: 10px 12px;
    white-space: nowrap;
    background: transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.inner-card .nav-tabs > li > a:hover {
    color: #29abe2;
    background: transparent;
    border-bottom-color: rgba(41, 171, 226, 0.4);
}

.inner-card .nav-tabs > li.active > a,
.inner-card .nav-tabs > li.active > a:focus,
.inner-card .nav-tabs > li.active > a:hover {
    color: #29abe2;
    background: transparent;
    border: none;
    border-bottom: 3px solid #29abe2;
}

.inner-card .tab-content {
    padding-top: 10px;
}