/* ======== SCREENING PACKAGES ======== */
.screening-packages {
    padding: 60px 0;
    background: #f9fafc;
}

.screening-packages h2 {
    font-size: 34px;
    color: #2B3A55;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Tabs */
.tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 35px;
}

.tab-btn {
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    background: #ffffff;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.3;
    width: 150px;
    text-align: center;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.25s ease;
}

.tab-btn span {
    display: block;
}

.tab-btn:hover {
    background: #e8ebf2;
    transform: translateY(-3px);
}

.tab-btn.active {
    background: #2B3A55; /* header/footer blue */
    color: #fff;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
    transform: translateY(-3px);
}

/* Tab content */
.tab-content {
    display: none;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.tab-content h3 {
	  font-size: 20px;
	  text-align: center;
	  margin-bottom: 20px;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Package columns */
.package-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.column {
    flex: 1 1 calc(25% - 25px); /* 4 columns max */
    min-width: 230px;
    background: #f8f9fc;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

/* Column headings */
.column h4 {
    margin-top: 0;
    font-size: 17px;
    color: #1A2B3C;
    margin-bottom: 10px;
    font-weight: 700;
}

/* Lists: original ticks, no extra bullets, left-aligned */
.column ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 15px;
    font-size: 15px;
    line-height: 1.45;
    color: #333;
}

.column ul li {
    position: relative;
    padding-left: 22px; /* space for tick */
    margin-bottom: 10px;
}

.column ul li::before {
    content: '✔'; /* original tick */
    position: absolute;
    left: 0;
    color: #2B3A55;
    font-weight: bold;
}

/* Book Health Screening */
.hs-decision-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    text-align: center;
    margin: 30px 0;
    border: 1px solid #e0e0e0;
}

.hs-decision-box h3 {
    margin-bottom: 10px;
}

.hs-buttons {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Unified button style */
.hs-btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    background: #2b7cff;    /* same color for both buttons */
    color: #fff;
    transition: all 0.25s ease;
    min-width: 180px;
    text-align: center;
    box-shadow: 0 3px 6px rgba(0,0,0,0.12);
}

/* Hover effect */
.hs-btn:hover {
    background: #1f61cc;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 6px 12px rgba(0,0,0,0.18);
}

/* Informational note */
.hs-note {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    font-style: italic;
}

/* Responsive */
@media (max-width: 1024px) {
    .column {
        flex: 1 1 calc(33.33% - 20px);
    }
}

@media (max-width: 768px) {
    .column {
        flex: 1 1 100%;
    }

    .tab-btn {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .tab-btn {
        width: 100%;
    }
}