﻿#tabs-label {
    background: transparent;
    border: none;
    clear: both;
}

    #tabs-label .nav-tabs,
    .tabs-label .nav-tabs {
        display: flex;
        flex-wrap: wrap;
        padding: 0;
        margin: 0;
        list-style: none;
        border: none;
        background: #e9ecef;
        gap: 0;
        justify-content: flex-start;
        height: 40px;
        position: relative;
        border-top: 1px solid var(--border-color);
        border-left: 1px solid var(--border-color);
        border-right: 1px solid var(--border-color);
    }

.tab-pane > .collapse-item > h5:first-child,
.tab-pane > h5:first-child {
    margin-top: 0 !important;
}

#tabs-label .nav-item,
.tabs-label .nav-item {
    margin: 0;
    position: relative;
}

.nav-tabs .nav-link {
    display: block;
    padding: 11px 22px 11px 30px;
    background: #e9ecef;
    color: #495057;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    position: relative;
    margin: 0;
    border: none;
    border-radius: 0;
    white-space: nowrap;
    cursor: pointer;
    height: 40px;
    line-height: 20px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 15px 100%);
    margin-right: -15px;
    z-index: 1;
}

.nav-tabs .nav-item:first-child .nav-link {
    padding-left: 20px;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
}

.nav-tabs .nav-item:last-child .nav-link {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 15px 100%);
    margin-right: 0;
}

.nav-tabs .nav-item:only-child .nav-link {
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
    margin-right: 0;
}

    .nav-tabs .nav-item:only-child .nav-link.active {
        clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 100%, 0 100%);
    }

.nav-tabs .nav-link {
    padding: 11px 24px 11px 24px;
    font-size: 15px;
    min-width: max-content;
    white-space: nowrap;
}

.nav-tabs .nav-link:hover {
    background: #dee2e6;
    color: #495057;
    text-decoration: none;
    z-index: 2;
}

.nav-tabs .nav-link.active {
    background: #495057;
    color: white;
    font-weight: 600;
    z-index: 3;
}

.col-md-9 p {
    text-align: left;
}

.tab-content {
    background: transparent;
    border: 1px solid var(--border-color);
    padding: 1.5rem 1.1rem 0rem 1.1rem;
    box-shadow: none;
    position: relative;
    margin-top: 0;
}

.tab-pane {
    display: none;
    padding-top: 0;
}

    .tab-pane.active,
    .tab-pane.show {
        display: block;
    }

.tab-content h5 {
    color: var(--primary-color, #00254a);
    font-size: 1.1rem;
    font-weight: 600;
    padding: .5rem 1rem;
    background: #f8f9fa;
    border-left: 4px solid var(--primary-color, #00254a);
    align-items: center;
    position: relative;
}

    .tab-content h5.collapsible {
        cursor: pointer;
    }

        .tab-content h5.collapsible::after {
            content: '▼';
            position: absolute;
            right: 1rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }

        .tab-content h5.collapsible.collapsed::after {
            transform: translateY(-50%) rotate(-90deg);
        }

        .tab-content h5.collapsible:hover {
            background: #e9ecef;
        }

#requirements-A h3,
#requirements-A h5,
#requirements-A ul,
#requirements-A ol,
#requirements-A li,
#requirements-A p {
    all: revert;
}

#requirements-A h3 {
    margin: .5rem 0 1rem 0;
    padding: .7rem;
    cursor: pointer !important;
    background: #f8f9fa !important;
    border: 1px solid #e9ecef !important;
    border-radius: 4px !important;
    position: relative !important;
}

    #requirements-A h3:hover {
        background: #e9ecef !important;
    }

    #requirements-A h3::after {
        content: '▼' !important;
        position: absolute !important;
        right: 1rem !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        font-size: 0.8rem !important;
        transition: transform 0.3s ease !important;
    }

    #requirements-A h3.collapsed::after {
        transform: translateY(-50%) rotate(-90deg) !important;
    }

#requirements-A .collapsible-section {
    padding: 0 1rem 0 1rem;
    transition: all 0.3s ease !important;
    overflow: hidden !important;
}

    #requirements-A .collapsible-section.collapsed {
        display: none !important;
    }

#requirements-A h5 {
    color: #333 !important;
    font-size: 1.1rem !important;
    font-weight: 600 !important;
    margin: 1rem 0 0.5rem 0 !important;
    background: none !important;
    border: none !important;
    padding: 0 !important;
    box-shadow: none !important;
}

.collapsible-table {
    transition: all 0.3s ease;
}

    .collapsible-table.collapsed {
        display: none;
    }

.content-header-section {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 2rem;
    margin: 2.5rem 0;
    background: white;
    position: relative;
}

.content-header-main {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex: 1;
}

.content-header-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(208, 189, 54, 0.2);
}

    .content-header-icon i {
        font-size: 1.5rem;
        color: var(--primary-dark);
    }

.content-header-text {
    flex: 1;
}

.content-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.3;
}

.content-description {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
    max-width: none;
}

.content-header-action {
    flex-shrink: 0;
    align-self: flex-start;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-dark);
    color: var(--primary-color);
    padding: .7rem 1rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--accent-dark);
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 2px 4px rgba(51, 51, 51, 0.1);
}

    .action-btn:hover {
        background: var(--primary-dark);
        color: white;
        border-color: var(--primary-dark);
        text-decoration: none;
        transform: translateY(-1px);
        box-shadow: 0 4px 12px rgba(51, 51, 51, 0.2);
    }

    .action-btn i {
        font-size: 1rem;
        transition: transform 0.3s ease;
    }

    .action-btn:hover i {
        transform: translateX(-2px);
    }

.tab-content h5:first-child {
    margin-top: 0;
}

.tab-content h5.darkgreen {
    border-left-color: #28a745;
    color: #28a745;
}

.tab-content h5 i {
    margin-right: .5rem;
    color: inherit;
    font-size: 1rem;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    .tab-content ul li {
        margin-bottom: 0;
        padding: .6rem 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }

        .tab-content ul li:last-child {
            border-bottom: none;
        }

        .tab-content ul li a {
            color: var(--links, #00254a);
            text-decoration: none;
            font-weight: 500;
            line-height: 1.4;
        }

            .tab-content ul li a:hover {
                color: var(--text-muted, #001c39);
                text-decoration: underline;
            }

        .tab-content ul li .medium {
            display: block;
            font-size: 0.875rem;
            color: #6c757d;
            margin-top: 0.5rem;
            font-weight: normal;
            line-height: 1.4;
        }

.dealermessage {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

    .dealermessage fieldset {
        margin: 0;
        padding: 2rem;
        border: none;
        background: transparent;
    }

    .dealermessage legend {
        font-size: 1.25rem;
        font-weight: 600;
        color: var(--primary-color, #00254a);
        margin-bottom: 1rem;
        padding: 0;
        width: auto;
        border: none;
    }

    .dealermessage .message {
        padding: 2rem;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        background: #f8f9fa;
    }

    .dealermessage h4 {
        color: var(--primary-color, #00254a);
        font-weight: 600;
    }

    .dealermessage p {
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .dealermessage .button {
        display: inline-block;
        background: var(--primary-color, #00254a);
        color: white;
        padding: 0.75rem 1.5rem;
        border-radius: 4px;
        text-decoration: none;
        font-weight: 500;
    }

        .dealermessage .button:hover {
            background: var(--primary-dark, #001c39);
            color: white;
            text-decoration: none;
        }

    .dealermessage img {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
    }

h3.inner-subsection {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color, #00254a);
    margin: 1rem 0 1.5rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e0e0e0;
    position: relative;
}

    h3.inner-subsection::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: var(--primary-color, #00254a);
    }

.code-block {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
    overflow-x: auto;
}

    .code-block pre {
        margin: 0;
        font-family: 'Courier New', monospace;
        font-size: 0.9rem;
        line-height: 1.4;
    }

    .code-block code {
        background: transparent;
        padding: 0;
        color: #333;
    }

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .info-table td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.9rem;
    }

    .info-table tr:first-child td {
        background: var(--primary-color, #00254a);
        color: white;
        font-weight: 600;
    }

    .info-table tr:last-child td {
        border-bottom: none;
    }

.sec_report {
    margin: 2rem 0;
}

i.red {
    color: #dc3545;
    font-style: italic;
    font-weight: 500;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}
.hyper-links {
    color: var(--primary-color, #00254a);
    font-family: monospace;
    background: #f8f9fa;
    padding: 2px 4px;
    border-radius: 3px;
    font-size: 0.9rem;
}

#me-ifw {
    overflow: hidden;
    margin: 1rem 0;
}

#me-if {
    width: 100%;
    min-height: 600px;
    border: none;
}

fieldset {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    padding: 2rem;
    margin: 1rem 0;
    background: #f8f9fa;
}

    fieldset legend {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--primary-color, #00254a);
        padding: 0 1rem;
        background: white;
    }

.regions-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .regions-table td {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #e9ecef;
        font-size: 0.9rem;
        vertical-align: top;
    }

    .regions-table tr:last-child td {
        border-bottom: none;
    }

    .regions-table tr:not(:first-child) td:last-child {
        color: #333;
        font-weight: 500;
    }

    .regions-table tr:not(:first-child):hover {
        background: #f8f9fa;
    }

        .regions-table tr:not(:first-child):hover td:first-child {
            background: #e9ecef;
        }

    .regions-table tr:not(:first-child):nth-child(even) {
        background: #fafafa;
    }

        .regions-table tr:not(:first-child):nth-child(even):hover {
            background: #f0f0f0;
        }

.card-header {
    padding: 0;
    background-color: #f8f9fa;
    margin-bottom: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

    .card-header h5 {
        margin: 0;
        background: transparent;
        border: none;
        padding: 0;
        box-shadow: none;
    }

    .card-header a.nav-link {
        display: block;
        padding: 1rem 1.5rem;
        color: #495057;
        text-decoration: none;
        font-weight: 500;
        position: relative;
        background: transparent;
        border: none;
        border-radius: 8px;
    }

        .card-header a.nav-link .fa {
            position: absolute;
            right: 1.5rem;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.2s ease;
            color: #6c757d;
        }

    .card-header .collapsed .fa {
        transform: translateY(-50%) rotate(90deg);
    }

    .card-header a.nav-link:hover {
        background: #e9ecef;
        color: var(--primary-color, #00254a);
    }

.collapse-item {
    padding: 0;
    background-color: transparent;
    margin-bottom: 0;
    box-shadow: none;
    border-radius: 0;
}

#topsection .tab-btn,
#main .tab-btn {
    max-width: 100%;
    height: 100%;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e9ecef;
    margin-right: .5rem;
    margin-top: .5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    max-height: 150px;
    text-align: center;
}

    #main .tab-btn h3 {
        font-size: 1rem;
        font-weight: 600;
        color: #495057;
    }

    #main .tab-btn a {
        color: var(--primary-color, #00254a);
        text-decoration: none;
    }

#brochures .me-group-flex {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
    overflow: visible !important;
}

#brochures .me-thumb {
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 0 !important;
}

    #brochures .me-thumb:hover {
        transform: translateY(-5px);
    }

    #brochures .me-thumb .me-btn {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        padding: 1.5rem 1rem !important;
        background: #ffffff !important;
        border: 1px solid #e0e0e0 !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
        transition: all 0.3s ease !important;
        text-decoration: none !important;
        height: 100%;
        position: relative;
        overflow: hidden;
        width: 100% !important;
        margin: 0 !important;
    }

        #brochures .me-thumb .me-btn:hover {
            border-color: #00a1e2 !important;
            box-shadow: 0 4px 20px rgba(0, 161, 226, 0.15) !important;
            background: #f8fbff !important;
            color: #00a1e2 !important;
        }

#brochures a.me-fade,
#brochures a.me-fade:hover {
    background-image: none !important;
    filter: none !important;
    background: #ffffff !important;
}

    #brochures a.me-fade:hover {
        background: #f8fbff !important;
    }

#brochures img.me-thumb {
    width: 100%;
    max-width: 180px;
    height: auto;
    border: 1px solid #e0e0e0 !important;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05) !important;
    transition: all 0.3s ease;
}

#brochures .me-btn:hover img.me-thumb {
    border-color: #00a1e2 !important;
    box-shadow: 0 4px 8px rgba(0, 161, 226, 0.1) !important;
}

#brochures .me-btn div {
    text-align: center;
    color: #333;
    font-size: 0.9rem;
    line-height: 1.4;
    word-wrap: break-word;
    max-width: 100%;
    margin-bottom: 0 !important;
}

#brochures .me-btn:hover div {
    color: #00a1e2;
}

#brochures .me-btn i {
    font-style: normal;
    font-size: 0.85rem;
    color: #666;
    font-weight: normal;
}

#brochures .me-btn:hover i {
    color: #0077b6;
}

#brochures .me-btn::before {
    content: '↓';
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 200;
    background: #00a1e2;
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    opacity: 0;
    transition: all 0.3s ease;
}

#brochures .me-btn:hover::before {
    opacity: 1;
    transform: scale(1);
}

#brochures div.me-thumb .me-fbp {
    margin: 0 !important;
}

#brochures .pane {
    margin-bottom: 2rem;
}

#brochures div.center div.me-thumb {
    float: none !important;
}

#brochures .episode img {
    max-width: 150px;
}

.premium-section {
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.black-diamond-section {
    margin-top: 1rem;
    background: #000000;
}

.green-diamond-section {
    margin-bottom: 1.3rem;
    background: linear-gradient(135deg, #33913c 0%, #007b56 100%);
}

.premium-title {
    color: white;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.premium-greeting {
    color: white;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.premium-description {
    color: white;
    margin-bottom: 1rem;
}

.premium-link {
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.black-diamond-link {
    color: #ff3333;
}

    .black-diamond-link:hover {
        color: #ff5555;
        text-decoration: none;
    }

.green-diamond-link {
    color: #efdd15;
}

    .green-diamond-link:hover {
        color: #f5e84a;
        text-decoration: none;
    }

.premium-logo {
    max-width: 180px;
    height: auto;
    transition: transform 0.3s ease;
}

    .premium-logo:hover {
        transform: scale(1.05);
    }

.just-quietly-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

    .just-quietly-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    }

.just-quietly-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

    .just-quietly-header img {
        max-width: 160px;
        height: auto;
        transition: transform 0.3s ease;
    }

    .just-quietly-header a:hover img {
        transform: scale(1.05);
    }

.just-quietly-description {
    flex: 1;
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.just-quietly-options {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.just-quietly-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

    .just-quietly-option:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        color: inherit;
        border-color: var(--border-color);
        background: white;
    }

.just-quietly-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

    .just-quietly-icon i {
        font-size: 1.5rem;
    }

.promo-card {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 50%, #1e40af 100%);
    border-radius: 16px;
    color: white;
    margin-top: 1rem;
    margin-bottom: 2rem;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.2);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

    .promo-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
        pointer-events: none;
    }

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f59e0b;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    position: relative;
    z-index: 2;
}

.promo-image {
    float: right;
    margin-left: 2rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

    .promo-image img {
        max-width: 100%;
        height: auto;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        transition: transform 0.3s ease;
    }

    .promo-image:hover img {
        transform: scale(1.02);
    }

.promo-content {
    position: relative;
    z-index: 2;
}

.promo-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-highlight {
    font-size: 1.25rem;
    color: #fbbf24;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.promo-description {
    margin-bottom: 1.5rem;
}

    .promo-description p {
        font-size: 1rem;
        line-height: 1.6;
        margin: 0;
        opacity: 0.95;
    }

.promo-details {
    margin-bottom: 1rem;
}

.promo-dates {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
}
    .promo-dates::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 60%;
        background: #fbbf24;
        border-radius: 2px;
    }

    .promo-dates i {
        color: #fbbf24;
        font-size: 1.1rem;
        margin-top: 0.1rem;
        flex-shrink: 0;
    }

    .promo-dates div {
        flex: 1;
    }

    .promo-dates strong {
        display: block;
        font-weight: 700;
        margin-bottom: 0.5rem;
        font-size: 0.95rem;
    }

    .promo-dates span {
        font-size: 0.9rem;
        opacity: 0.9;
        line-height: 1.4;
    }

.promo-action {
    clear: both;
    padding-top: 1rem;
}

.promo-btn {
    background: linear-gradient(45deg, #f59e0b, #d97706);
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .promo-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.5s ease;
    }

    .promo-btn:hover::before {
        left: 100%;
    }

    .promo-btn:hover {
        background: linear-gradient(45deg, #d97706, #b45309);
        color: white;
        text-decoration: none;
        box-shadow: 0 8px 25px rgba(245, 158, 11, 0.4);
        transform: translateY(-2px);
    }

    .promo-btn i {
        transition: transform 0.3s ease;
    }

    .promo-btn:hover i {
        transform: translateX(4px);
    }

/* Mobile Responsive */
@media (max-width: 768px) {
    .promo-card {
        padding: 1.5rem;
    }

    .promo-image {
        float: none;
        margin-left: 0;
        margin-bottom: 1.5rem;
        text-align: center;
        order: -1;
    }

        .promo-image img {
            max-width: 100%;
        }

    .promo-title {
        font-size: 1.6rem;
    }

    .promo-highlight {
        font-size: 1.1rem;
    }

    .promo-btn {
        width: 100%;
        justify-content: center;
        padding: 1.2rem 2rem;
    }

    .promo-dates {
        padding: 1rem;
    }

        .promo-dates strong {
            font-size: 0.9rem;
        }

        .promo-dates span {
            font-size: 0.85rem;
        }

    .tab-pane {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .promo-title {
        font-size: 1.4rem;
    }

    .promo-highlight {
        font-size: 1rem;
    }

    .promo-description p {
        font-size: 0.95rem;
    }
}


/* Icon specific colors */
.just-quietly-option:nth-child(1) .just-quietly-icon {
    background: rgba(51, 153, 255, 0.1);
    color: #3399ff;
}

.just-quietly-option:nth-child(2) .just-quietly-icon {
    background: rgba(102, 51, 153, 0.1);
    color: #663399;
}

.just-quietly-option:nth-child(3) .just-quietly-icon {
    background: rgba(255, 102, 51, 0.1);
    color: #ff6633;
}

.just-quietly-option:hover:nth-child(1) .just-quietly-icon {
    background: #3399ff;
    color: white;
}

.just-quietly-option:hover:nth-child(2) .just-quietly-icon {
    background: #663399;
    color: white;
}

.just-quietly-option:hover:nth-child(3) .just-quietly-icon {
    background: #ff6633;
    color: white;
}

.just-quietly-action {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.just-quietly-link-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.just-quietly-option:hover .just-quietly-link-text {
    color: var(--primary-color);
}

.brand-logo-icon-large {
    width: 90px;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.85rem;
    transition: all 0.3s ease;
}

    .brand-logo-icon-large img {
        max-width: 160px;
        max-height: 90px;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(20%);
        transition: all 0.3s ease;
    }

    .just-quietly-option:hover .brand-logo-icon-large img {
        filter: grayscale(0%);
        transform: scale(1.1);
    }


.question {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem 0.75rem 4rem;
    margin-bottom: 0.5rem;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 4px;
    color: var(--links);
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    counter-increment: question-counter;
}

.answer {
    padding: 1rem;
    margin-bottom: 1rem;
    background: white;
    border: 1px solid #e9ecef;
}

.question:hover {
    background: #e9ecef;
    color: var(--primary-dark);
    text-decoration: none;
}

.question::before {
    content: counter(question-counter);
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    background:var(--links);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.question:hover::before {
    background: var(--primary-dark);
}

.faq-edit {
    margin-bottom: 2rem;
    counter-reset: question-counter;
}

.subsection {
    font-size: 1.5rem;
    font-weight: 600;
    margin-top: 1rem;
    color: var(--primary-color);
    border-bottom: 2px solid #e0e0e0;
    position: relative;
}

    .subsection::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 60px;
        height: 2px;
        background: var(--primary-color);
    }

.home-products-section .home-product-card {
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: 0px;
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

    .home-products-section .home-product-card a {
        display: flex;
        flex-direction: column;
        text-decoration: none !important;
        color: inherit;
        height: 100%;
    }

    .home-products-section .home-product-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    }

    .home-products-section .home-product-card .card-body {
        padding: 1.5rem 1rem;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        min-height: 160px;
    }

    .home-products-section .home-product-card h3 {
        font-size: 1rem;
        font-weight: 600;
        color: var( --primary-dark);
        margin-bottom: 1rem;
        margin-top: 0;
        text-align: center;
        line-height: 1.4;
        transition: color 0.3s ease;
        flex-shrink: 0;
    }

    .home-products-section .home-product-card:hover h3 {
        color: var(--primary-color);
        text-decoration: underline;
    }

    .home-products-section .home-product-card img {
        max-width: 100%;
        width: 140px;
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
        margin-top: auto;
        flex-shrink: 0;
    }

    .home-products-section .home-product-card:hover img {
        transform: scale(1.05);
    }

.home-products-section h5 {
    color: var(--text-muted);
    font-size: 1.1rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
    padding: 0.5rem 1rem;
    background: var(--background-light);
    border-left: 4px solid var(--text-muted);
}

.home-products-section .home-product-card[style*="opacity"] {
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
}

    .home-products-section .home-product-card[style*="opacity"]:hover {
        opacity: 0.9 !important;
        transform: translateY(-2px);
    }

    .home-products-section .home-product-card[style*="opacity"] h3 {
        color: #666;
    }

    .home-products-section .home-product-card[style*="opacity"]:hover h3 {
        color: #555;
    }

.home-products-section .row + h5 {
    margin-top: 3rem;
}

.home-products-section .row:last-child {
    margin-bottom: 2rem;
}

.featured-section-container {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin: 1.5rem 0;
    position: relative;
}

.featured-section {
    padding: 1rem 0;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.featured-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: all 0.3s ease;
}

    .featured-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border-color: var(--border-color);
        cursor: pointer;
    }

    .featured-card a {
        display: block;
        text-decoration: none;
        color: inherit;
    }

.featured-header {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.featured-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.featured-card:nth-child(1) .featured-icon {
    background: rgba(51, 51, 51, 0.1);
    color: var(--primary-color);
}

.featured-card:nth-child(2) .featured-icon {
    background: rgba(208, 189, 54, 0.1);
    color: var(--accent-color);
}

.featured-card:nth-child(3) .featured-icon {
    background: rgba(12, 12, 16, 0.1);
    color: var(--primary-dark);
}

.featured-card:nth-child(4) .featured-icon {
    background: rgba(51, 51, 51, 0.15);
    color: var(--primary-color);
}

.featured-card:nth-child(5) .featured-icon {
    background: rgba(208, 189, 54, 0.15);
    color: var(--accent-color);
}

.featured-card:nth-child(6) .featured-icon {
    background: rgba(12, 12, 16, 0.15);
    color: var(--primary-dark);
}

.featured-content h3 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 0.375rem 0;
    line-height: 1.3;
}

.featured-content p {
    font-size: 0.825rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin: 0;
}

.main-nav-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

    .main-nav-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    }

.main-nav-options {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
}

.main-nav-option {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
}

    .main-nav-option:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        color: inherit;
        border-color: var(--border-color);
        background: white;
    }

.main-nav-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

    .main-nav-icon i {
        font-size: 1.5rem;
    }

/* Icon specific colors */
.main-nav-option:nth-child(1) .main-nav-icon {
    background: rgba(51, 153, 255, 0.1);
    color: #3399ff;
}

.main-nav-option:nth-child(2) .main-nav-icon {
    background: rgba(102, 51, 153, 0.1);
    color: #663399;
}

.main-nav-option:nth-child(3) .main-nav-icon {
    background: rgba(255, 102, 51, 0.1);
    color: #ff6633;
}

.main-nav-option:hover:nth-child(1) .main-nav-icon {
    background: #3399ff;
    color: white;
}

.main-nav-option:hover:nth-child(2) .main-nav-icon {
    background: #663399;
    color: white;
}

.main-nav-option:hover:nth-child(3) .main-nav-icon {
    background: #ff6633;
    color: white;
}

.main-nav-action {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav-link-text {
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
    line-height: 1.3;
}

.main-nav-option:hover .main-nav-link-text {
    color: var(--primary-color);
}

.partner-brand-section {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem;
    margin: 1.5rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

    .partner-brand-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 100%);
    }

.partner-brand-options {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.partner-brand-option {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--background-light);
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
    border: 1px solid transparent;
    min-height: 140px;
}

    .partner-brand-option:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        color: inherit;
        border-color: var(--border-color);
        background: white;
    }

.partner-brand-logo-icon {
    width: 120px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: white;
    border-radius: var(--border-radius);
    padding: 0.75rem;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

    .partner-brand-logo-icon img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: grayscale(20%);
        transition: all 0.3s ease;
    }

.partner-brand-option:hover .partner-brand-logo-icon {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--border-color);
}

    .partner-brand-option:hover .partner-brand-logo-icon img {
        filter: grayscale(0%);
        transform: scale(1.1);
    }

.partner-brand-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.partner-brand-action {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.25rem;
}

.partner-brand-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.partner-brand-description {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

.partner-brand-option:hover .partner-brand-action {
    color: var(--accent-color);
}

.partner-brand-option:hover .partner-brand-title {
    color: var(--primary-color);
}

.partner-brand-option:hover .partner-brand-description {
    color: var(--primary-dark);
}

.modern-hero-card {
    position: relative;
    overflow: hidden;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero-content {
    max-width: 600px;
}

    .hero-content h3 {
        color: white;
        font-size: 1.78rem;
        font-weight: 300;
        line-height: 1.4;
        margin: 0;
        text-shadow: 0 2px 10px rgba(0,0,0,0.5);
        letter-spacing: 0.5px;
    }

.custom-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid #dc3545;
    transition: all 0.3s ease;
    min-width: 250px;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

    .custom-cta-btn:hover {
        background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
        color: white;
        border-color: #bd2130;
        text-decoration: none;
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
    }

    .custom-cta-btn i {
        font-size: 1.1rem;
        transition: transform 0.3s ease;
    }

    .custom-cta-btn:hover i {
        transform: translateX(4px);
    }

@media (max-width: 768px) {
    .featured-section {
        padding: 0.75rem 0;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .featured-card {
        padding: 0.875rem;
    }

    .featured-header {
        gap: 0.875rem;
    }

    .featured-icon {
        width: 45px;
        height: 45px;
        font-size: 1.375rem;
    }

    .featured-content h3 {
        font-size: 0.95rem;
    }

    .featured-content p {
        font-size: 0.8rem;
    }

    .just-quietly-section {
        padding: 1.25rem;
        margin: 1rem 0;
    }

    .just-quietly-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        margin-bottom: 1.25rem;
    }

        .just-quietly-header img {
            max-width: 140px;
        }

    .just-quietly-description {
        font-size: 0.9rem;
    }

    .just-quietly-options {
        flex-direction: column;
        gap: 0.75rem;
    }

    .just-quietly-option {
        flex-direction: row;
        text-align: left;
        padding: 0.75rem 1rem;
        gap: 1rem;
    }

    .just-quietly-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

        .just-quietly-icon i {
            font-size: 1.25rem;
        }

    .just-quietly-content {
        flex: 1;
    }

    .just-quietly-action {
        font-size: 0.85rem;
        margin-bottom: 0.125rem;
    }

    .just-quietly-link-text {
        font-size: 0.75rem;
    }

    .main-nav-section {
        padding: 1.25rem;
        margin: 1rem 0;
    }

    .main-nav-options {
        flex-direction: column;
        gap: 0.75rem;
    }

    .main-nav-option {
        flex-direction: row;
        text-align: left;
        padding: 0.75rem 1rem;
        gap: 1rem;
    }

    .main-nav-icon {
        width: 40px;
        height: 40px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

        .main-nav-icon i {
            font-size: 1.25rem;
        }

    .main-nav-content {
        flex: 1;
    }

    .main-nav-action {
        font-size: 0.85rem;
        margin-bottom: 0.125rem;
    }

    .main-nav-link-text {
        font-size: 0.75rem;
    }

    .partner-brand-section {
        padding: 1.25rem;
        margin: 1rem 0;
    }

    .partner-brand-options {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .partner-brand-option {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
        min-height: auto;
    }

    .partner-brand-logo-icon {
        width: 140px;
        height: 90px;
    }

    .partner-brand-content {
        text-align: center;
    }

    .partner-brand-title {
        font-size: 1rem;
    }

    .partner-brand-description {
        font-size: 0.8rem;
    }

    .content-header-section {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.3rem 0;
    }

    .content-header-main {
        gap: 1rem;
    }

    .content-header-icon {
        width: 50px;
        height: 50px;
    }

        .content-header-icon i {
            font-size: 1.25rem;
        }

    .content-title {
        font-size: 1.5rem;
    }

    .content-description {
        font-size: 0.95rem;
    }

    .content-header-action {
        align-self: stretch;
    }

    .action-btn {
        float:right;
        width: 200px;
        justify-content: center;
        padding: 0.5rem;
    }

    .hero-image {
        height: 300px;
    }

    .hero-content h3 {
        font-size:1.3rem;
    }
    .hero-overlay {
        padding: 1.5rem;
    }
}

@media (max-width: 575px) {
    .featured-card {
        padding: 0.75rem;
    }

    .featured-header {
        gap: 0.75rem;
    }

    .featured-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }

    .featured-content h3 {
        font-size: 0.9rem;
    }

    .featured-content p {
        font-size: 0.75rem;
    }

    #tabs-label .nav-tabs,
    .tabs-label .nav-tabs {
        display: none;
    }

    #brochures .me-group-flex {
        grid-template-columns: 1fr;
    }

    .home-products-section .home-product-card .card-body {
        padding: 1rem 0.5rem;
        min-height: 130px;
    }

    .home-products-section .home-product-card h3 {
        font-size: 0.85rem;
        line-height: 1.3;
    }

    .partner-brand-option {
        padding: 1rem;
        gap: 0.75rem;
    }

    .partner-brand-logo-icon {
        width: 120px;
        height: 80px;
    }

    .partner-brand-action {
        font-size: 0.85rem;
    }

    .partner-brand-title {
        font-size: 0.95rem;
    }

    .partner-brand-description {
        font-size: 0.75rem;
    }
}

@media (max-width: 767px) {
    .regions-table td {
        padding: 0.5rem 0.75rem;
        font-size: 0.85rem;
    }

    .regions-table tr:first-child td {
        font-size: 0.9rem;
        padding: 0.75rem;
    }

    .regions-table tr:not(:first-child) td:first-child {
        width: 60px;
        font-size: 0.8rem;
    }

    #tabs-label .nav-tabs,
    .nav-tabs {
        display: none;
    }

    .card-header {
        display: block;
        background-color: #f8f9fa;
        border: 1px solid #dee2e6;
        margin-bottom: 0.5rem;
    }

        .card-header a {
            font-size: 1rem;
        }

        .card-header .fa {
            float: none;
            display: inline-block;
            margin-left: auto;
            margin-right: 0;
        }

    .tab-content {
        margin-top:1.3rem;
        border: none;
        box-shadow: none;
        padding: 0;
        background: transparent;
    }

        .tab-content > .tab-pane {
            display: block !important;
        }

    .home-products-section .home-product-card .card-body {
        padding: 1rem 0.75rem;
        min-height: 140px;
    }

    .home-products-section .home-product-card h3 {
        font-size: 0.9rem;
        margin-bottom: 0.75rem;
    }

    .tab-pane > div[class*="collapse"]:not(.show) {
        display: none !important;
    }

    .collapse:not(.show) {
        display: none !important;
    }

    .tab-pane:not(:first-child) {
        padding-top: 0rem !important;
    }

    [data-toggle="collapse"] .fa:before {
        content: "\f139";
        color: #c1c1c1 !important;
    }

    [data-toggle="collapse"].collapsed .fa:before {
        content: "\f13a";
        color: #3c3c3c !important;
    }

    .collapsing {
        transition: none !important;
    }

    .collapse-item {
        clear: both;
        padding: .5rem;
    }

    #brochures .me-group-flex {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    #brochures .me-btn {
        padding: 1rem !important;
    }

    #brochures img.me-thumb {
        max-width: 150px;
    }

    .tab-content h5 {
        font-size: 1rem;
        display: block;
    }

    .tab-content ul li {
        padding: 0.75rem 1rem;
    }

    .dealermessage fieldset {
        padding: 1.5rem;
    }

    .dealermessage .message {
        padding: 1.5rem;
    }

    .code-block {
        padding: 1rem;
        font-size: 0.85rem;
    }

    .sec_report {
        padding: 1.5rem;
    }

    .card-header a.nav-link .fa {
        float: right;
        font-size: 1rem;
        color: #6c757d;
        line-height: 1;
        margin-top: 0;
    }
}

@media (max-width: 1200px) {
    .home-products-section .home-product-card .card-body {
        padding: 1.25rem 0.75rem;
        min-height: 150px;
    }

    .home-products-section .home-product-card h3 {
        font-size: 0.95rem;
    }

    .just-quietly-section {
        padding: 2rem;
    }

    .just-quietly-header {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .just-quietly-title {
        font-size: 2.25rem;
    }

    .just-quietly-description {
        font-size: 1rem;
    }

    .just-quietly-options {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 1.5rem;
    }
}
