/* Package Details CSS */
:root {
    --pd-green: #047857;
    --pd-light-green: #f0fdf4;
    --pd-border: #e0e0e0;
    --pd-text: #333333;
    --pd-text-light: #666666;
}

body {
    background-color: #fafafa;
}

.pd-container {
    max-width: 1200px;
    margin: 30px auto;
    padding: 0 20px;
}

.pd-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pd-green);
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.pd-back-link:hover {
    text-decoration: underline;
}

.pd-layout {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 25px;
    align-items: start;
}

/* Left Column */
.pd-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid var(--pd-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    overflow: hidden;
}

.pd-header-sec {
    padding: 30px;
    border-bottom: 1px solid var(--pd-border);
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    text-align: center;
}
.pd-header-icon {
    width: 100%;
    max-width: 300px;
    flex-shrink: 0;
}
.pd-header-icon img {
    width: 100%;
    height: auto;
}
.pd-header-info h1 {
    color: var(--pd-green);
    font-size: 1.8rem;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.pd-header-info p {
    color: var(--pd-text-light);
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.pd-metrics {
    display: flex;
    gap: 40px;
    justify-content: center;
}
.pd-metric {
    display: flex;
    align-items: center;
    gap: 10px;
}
.pd-metric i {
    font-size: 1.8rem;
    color: var(--pd-green);
}
.pd-metric-text strong {
    display: block;
    font-size: 1rem;
    color: var(--pd-text);
}
.pd-metric-text span {
    font-size: 0.85rem;
    color: var(--pd-text-light);
}

.pd-section {
    padding: 25px 30px;
    border-bottom: 1px solid var(--pd-border);
}
.pd-section:last-child {
    border-bottom: none;
}

.pd-section-title {
    font-size: 1.1rem;
    color: var(--pd-green);
    margin-bottom: 15px;
    font-weight: 600;
}

.pd-about p {
    color: var(--pd-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Tests Table */
.pd-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    border: 1px solid var(--pd-border);
    border-radius: 6px;
    overflow: hidden;
}
.pd-table th {
    background: var(--pd-light-green);
    color: var(--pd-green);
    font-weight: 600;
    text-align: left;
    padding: 12px 15px;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--pd-border);
}
.pd-table td {
    padding: 12px 15px;
    border-bottom: 1px solid var(--pd-border);
    font-size: 0.9rem;
    color: var(--pd-text);
}
.pd-table tr:last-child td {
    border-bottom: none;
}
.pd-table th.center, .pd-table td.center {
    text-align: center;
    width: 50px;
}
.pd-table td.test-name {
    font-weight: 500;
    width: 250px;
}

/* Who Should Take */
.pd-who-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}
.pd-who-item {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--pd-border);
    padding: 10px 15px;
    border-radius: 6px;
    min-width: calc(33.333% - 10px);
    flex: 1;
}
.pd-who-item i {
    color: var(--pd-green);
    font-size: 1.2rem;
}
.pd-who-item span {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--pd-text);
    line-height: 1.2;
}

/* Prerequisites */
.pd-req-grid {
    display: flex;
    justify-content: space-between;
    padding: 20px 30px;
    border-bottom: 1px solid var(--pd-border);
}
.pd-req-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pd-req-item i {
    color: #e53935; /* Red for blood drop */
    font-size: 1.2rem;
    margin-top: 3px;
}
.pd-req-item i.fa-clipboard-list, .pd-req-item i.fa-house-medical {
    color: var(--pd-green);
}
.pd-req-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--pd-text);
}
.pd-req-text span {
    font-size: 0.85rem;
    color: var(--pd-text-light);
}

/* Accreditation Banner */
.pd-accreditation {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: var(--pd-light-green);
    padding: 15px 30px;
    border-radius: 0 0 8px 8px;
}
.pd-accreditation i {
    font-size: 1.5rem;
    color: var(--pd-green);
}
.pd-accreditation-text strong {
    display: block;
    color: var(--pd-text);
    font-size: 0.95rem;
}
.pd-accreditation-text p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--pd-text-light);
}


/* Sidebar */
.pd-sidebar {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Price Box */
.pd-price-box {
    background: white;
    border: 1px solid var(--pd-border);
    border-radius: 8px;
    overflow: hidden;
}
.pd-price-header {
    background: var(--pd-green);
    color: white;
    padding: 12px 20px;
    font-weight: 600;
    font-size: 1rem;
}
.pd-price-body {
    padding: 25px 20px;
}
.pd-price-amount {
    font-size: 2.2rem;
    color: var(--pd-green);
    font-weight: 700;
    margin-bottom: 20px;
}
.pd-features {
    list-style: none;
    margin-bottom: 25px;
}
.pd-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: var(--pd-text);
}
.pd-features li i {
    color: var(--pd-green);
    font-size: 1rem;
}

.pd-btn-solid {
    display: block;
    width: 100%;
    background: var(--pd-green);
    color: white;
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    margin-bottom: 12px;
    transition: 0.3s;
}
.pd-btn-solid:hover {
    background: #036146;
}
.pd-btn-outline {
    display: block;
    width: 100%;
    background: white;
    color: var(--pd-green);
    border: 1px solid var(--pd-green);
    text-align: center;
    padding: 12px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}
.pd-btn-outline:hover {
    background: var(--pd-light-green);
}

/* Help Box */
.pd-help-box {
    background: white;
    border: 1px solid var(--pd-border);
    border-radius: 8px;
    padding: 20px;
}
.pd-help-box h4 {
    font-size: 1.05rem;
    color: var(--pd-text);
    margin-bottom: 5px;
}
.pd-help-box p {
    font-size: 0.85rem;
    color: var(--pd-text-light);
    margin-bottom: 15px;
}
.pd-contact-card {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #f9f9f9;
    border: 1px solid var(--pd-border);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 10px;
    text-decoration: none;
    transition: 0.2s;
}
.pd-contact-card:hover {
    background: var(--pd-light-green);
    border-color: var(--pd-green);
}
.pd-contact-card i {
    font-size: 1.5rem;
    color: var(--pd-green);
}
.pd-contact-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--pd-text);
    font-weight: 600;
}
.pd-contact-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--pd-green);
}

/* Secure Box */
.pd-secure-box {
    background: var(--pd-light-green);
    border: 1px solid var(--pd-border);
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}
.pd-secure-box i {
    font-size: 1.8rem;
    color: var(--pd-green);
}
.pd-secure-text strong {
    display: block;
    font-size: 0.95rem;
    color: var(--pd-text);
    margin-bottom: 3px;
}
.pd-secure-text p {
    margin: 0;
    font-size: 0.8rem;
    color: var(--pd-text-light);
}

/* Responsive */
@media (max-width: 992px) {
    .pd-layout {
        grid-template-columns: 1fr;
    }
    .pd-sidebar {
        position: static;
    }
}
@media (max-width: 768px) {
    .pd-header-sec {
        flex-direction: column;
    }
    .pd-metrics {
        flex-direction: column;
        gap: 15px;
    }
    .pd-who-item {
        min-width: 100%;
    }
    .pd-req-grid {
        flex-direction: column;
        gap: 20px;
    }
}
