	.search-hero {
        background: #fff;
        border: 1px solid #e5e7eb;
        border-radius: 8px;
        padding: 24px 28px;
        box-shadow: 0 1px 2px rgba(0,0,0,0.03);
    }
    .search-hero h2 {
        color: #00305C;
        font-weight: 700;
        margin: 0 0 18px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }
    .search-hero h2 i { color: #00305C; }

    .search-input-group { position: relative; }
    .search-input-group input.form-control {
        height: 56px;
        font-size: 1.05rem;
        border-radius: 6px;
        border: 1px solid #cfd4da;
    }
    .search-input-group .btn-search {
        position: absolute;
        right: 6px;
        top: 6px;
        bottom: 6px;
        padding: 0 22px;
        background-color: #00305C;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .search-input-group .btn-search:hover { background-color: #001f3d; }

    .example-row {
        margin-top: 14px;
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        align-items: center;
    }
    .example-row .example-label { color: #444; margin-right: 4px; }
    .example-pill {
        background: #eaf1fb;
        color: #00305C;
        border: 1px solid #d3e0f2;
        border-radius: 20px;
        padding: 5px 14px;
        font-size: 0.9rem;
        text-decoration: none;
    }

    .search-mode-row {
        margin-top: 20px;
        display: flex;
        align-items: center;
        gap: 24px;
        flex-wrap: wrap;
        border-top: 1px solid #eee;
        padding-top: 16px;
    }
    .search-mode-row .mode-label { font-weight: 700; }

    .info-card {
        border-radius: 8px;
        padding: 10px 11px;
        height: 100%;
        border: 1px solid #e5e7eb;
    }
    .info-card.smart { background: #EEF8F0; border-color: #cfe8d4; }
    .info-card.full  { background: #EAF1FB; border-color: #d3e0f2; }
    .info-card h3 {
        display: flex;
        align-items: center;
        gap: 10px;
        font-weight: 500;
        margin-bottom: 12px;
    }
    .info-card.smart h3 { color: rgb(48, 126, 83); }
    .info-card.full  h3 { color: #00305C; }
    .info-card ul {
        list-style: none;
        padding-left: 0;
        margin: 0;
    }
    .info-card li {
        padding: 4px 0 4px 26px;
        position: relative;
    }