body {
    margin: 0;
    font-family: Roboto, Arial, sans-serif;
    background: linear-gradient(135deg, #8ec5fc 0%, #e0c3fc 100%);
    color: #1f2a37;
}

.screening-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.logo-wrap {
    text-align: center;
    margin-bottom: 1rem;
}

.logo-img {
    max-width: 140px;
    width: 100%;
    height: auto;
}

.tool-heading {
    text-align: center;
    font-weight: 700;
    margin-bottom: 2rem;
}

.screening-options {
    max-width: 960px;
    margin: 0 auto;
}

.screening-card {
    background: rgba(255, 255, 255, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 14px;
    padding: 1.75rem;
    box-shadow: 0 10px 24px rgba(31, 38, 135, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.screening-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.38);
    box-shadow: 0 14px 30px rgba(31, 38, 135, 0.28);
}

.screening-card h2 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
}

.screening-card p {
    margin-bottom: 1.25rem;
    color: #4b5563;
    line-height: 1.55;
}

.screening-btn {
    display: inline-block;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    background: rgba(29, 78, 216, 0.8);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(29, 78, 216, 0.3);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.screening-btn:hover {
    background: rgba(30, 64, 175, 0.9);
    border-color: rgba(255, 255, 255, 0.65);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(30, 64, 175, 0.45);
    transform: translateY(-1px);
}

.modal-content {
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 16px 35px rgba(31, 38, 135, 0.28);
}

.modal-header,
.modal-footer {
    border-color: rgba(148, 163, 184, 0.35);
}

.consent-content {
    max-height: 65vh;
    overflow-y: auto;
    line-height: 1.55;
}

.consent-list {
    padding-left: 1.2rem;
}

.consent-list li {
    margin-bottom: 0.6rem;
}

@media (max-width: 991.98px) {
    .screening-page {
        align-items: flex-start;
    }

    .tool-heading {
        font-size: 1.6rem;
    }

    .screening-card {
        padding: 1.4rem;
    }
}

@media (max-width: 576px) {
    .screening-page .container {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    .logo-img {
        max-width: 96px;
    }

    .tool-heading {
        font-size: 1.25rem;
        margin-bottom: 1.3rem;
    }

    .screening-card {
        padding: 1rem;
    }

    .screening-btn {
        width: 100%;
        text-align: center;
    }

    .modal-dialog {
        margin: 0.6rem;
    }
}
