.module-detail-page .module-highlights {
    margin-top: 48px;
}

.module-detail-page .module-highlight-card {
    height: 100%;
    padding: 28px 26px;
    background: #fff;
    border: 1px solid #e6edf5;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(35, 69, 106, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.module-detail-page .module-highlight-card:hover {
    transform: translateY(-4px);
    border-color: rgba(63, 123, 181, 0.38);
    box-shadow: 0 16px 38px rgba(35, 69, 106, 0.12);
}

.module-detail-page .module-highlight-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #3f7bb5;
    background: rgba(63, 123, 181, 0.11);
    border-radius: 50%;
    font-size: 24px;
}

.module-detail-page .module-highlight-card h2 {
    margin-top: 19px;
    font-size: 18px;
    line-height: 1.45 !important;
}

.module-detail-page .module-highlight-card p {
    margin: 11px 0 0;
    color: #777;
    font-size: 15px;
    line-height: 1.65;
}

.module-detail-page .module-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 18px;
}

.module-detail-page .module-actions .primary-btn {
    min-width: 170px;
    text-align: center;
}

.module-detail-page .module-secondary-btn {
    color: #3f7bb5;
    background: #fff;
    border: 1px solid #3f7bb5;
}

.module-detail-page .module-secondary-btn:hover {
    color: #fff !important;
    background: #3f7bb5;
}

@media (max-width: 767px) {
    .module-detail-page .module-highlights {
        margin-top: 34px;
    }

    .module-detail-page .module-highlight-card {
        padding: 24px 22px;
    }

    .module-detail-page .module-actions {
        margin-top: 6px;
    }

    .module-detail-page .module-actions .primary-btn {
        width: 100%;
        max-width: 320px;
    }
}
