/* health-packages.css */
body {
    background-color: #f8f9fa;
}
.page-hero {
    background-color: #f4f7f6;
    padding: 40px 0;
    margin-bottom: 40px;
    border-bottom: 1px solid #eaeaea;
}
.page-hero h1 {
    font-size: 36px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 700;
}
.page-hero .breadcrumb {
    font-size: 14px;
    color: #666;
}
.page-hero .breadcrumb a {
    color: #2C8234;
    text-decoration: none;
    font-weight: 500;
}
.page-hero .breadcrumb span {
    margin: 0 8px;
    color: #999;
}

.hp-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 60px;
}
.hp-sidebar {
    width: 250px;
    flex-shrink: 0;
}
.hp-content {
    flex: 1;
    min-width: 0;
}

/* Sidebar */
.hp-filter-box {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.hp-filter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eee;
}
.hp-filter-header h3 {
    font-size: 18px;
    margin: 0;
    color: #333;
}
.hp-filter-header .clear-btn {
    font-size: 12px;
    color: #666;
    background: #f0f0f0;
    padding: 4px 10px;
    border-radius: 4px;
    text-decoration: none;
}
.hp-filter-group {
    margin-bottom: 25px;
}
.hp-filter-group h4 {
    font-size: 15px;
    margin-bottom: 15px;
    color: #111;
    font-weight: 600;
}
.hp-filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.hp-filter-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.hp-filter-list label {
    display: flex;
    align-items: center;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}
.hp-filter-list input[type="radio"],
.hp-filter-list input[type="checkbox"] {
    margin-right: 10px;
    accent-color: #2C8234;
    width: 16px;
    height: 16px;
}
.hp-filter-list .count {
    font-size: 13px;
    color: #999;
}
.hp-filter-list li.active label,
.hp-filter-list li.active .count {
    color: #2C8234;
    font-weight: 500;
}
.price-select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    margin-bottom: 15px;
    color: #555;
    font-size: 14px;
}

/* Content Area */
.hp-content-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}
.hp-content-header p {
    margin: 0;
    color: #555;
    font-size: 15px;
}
.hp-controls {
    display: flex;
    align-items: center;
    gap: 15px;
}
.sort-select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    color: #555;
    font-size: 14px;
}
.view-toggles {
    display: flex;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #ddd;
    overflow: hidden;
}
.view-btn {
    padding: 8px 15px;
    border: none;
    background: none;
    cursor: pointer;
    font-size: 14px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}
.view-btn.active {
    background: #f4fdf5;
    color: #2C8234;
    font-weight: 500;
}

/* Package Grid */
.hp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.hp-card {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}
.hp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}
.hp-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}
.test-count {
    font-size: 13px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 6px;
}
.popular-tag {
    background: #e8f5e9;
    color: #2C8234;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: 600;
    text-transform: uppercase;
}
.hp-card h3 {
    font-size: 18px;
    color: #2C8234;
    margin-bottom: 8px;
    line-height: 1.3;
}
.hp-card p.desc {
    font-size: 13px;
    color: #777;
    margin-bottom: 20px;
    flex: 1;
}
.hp-price-wrap {
    margin-bottom: 15px;
}
.hp-price {
    font-size: 24px;
    font-weight: 700;
    color: #111;
    margin-right: 8px;
}
.hp-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}
.hp-save {
    display: block;
    font-size: 13px;
    color: #2C8234;
    margin-top: 4px;
    font-weight: 500;
}
.hp-book-btn {
    display: block;
    width: 100%;
    text-align: center;
    background: #1e3a5f;
    color: #fff;
    padding: 12px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}
.hp-book-btn:hover {
    background: #152b47;
}

/* FAQ Section */
.hp-faq-section {
    margin-top: 40px;
}
.hp-faq-section h2 {
    font-size: 22px;
    color: #1a1a1a;
    margin-bottom: 25px;
}
.hp-faq-item {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    margin-bottom: 12px;
    overflow: hidden;
}
.hp-faq-header {
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;
    color: #2C8234;
    font-size: 15px;
}
.hp-faq-header i {
    color: #999;
    transition: transform 0.3s;
}
.hp-faq-item.active .hp-faq-header i {
    transform: rotate(180deg);
}
.hp-faq-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}
.hp-faq-item.active .hp-faq-body {
    padding: 0 20px 20px 20px;
    max-height: 500px;
}

@media (max-width: 768px) {
    .hp-layout {
        flex-direction: column;
    }
    .hp-sidebar {
        width: 100%;
    }
    .hp-content-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
